Searched refs:sys (Results 101 - 125 of 445) sorted by relevance

1234567891011>>

/gem5/ext/ply/test/
H A Dlex_hedit.py16 import sys
17 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dlex_state_try.py5 import sys
6 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dyacc_inf.py6 import sys
8 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dyacc_nested.py1 import sys
3 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dcalclex.py4 import sys
6 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dlex_closure.py4 import sys
6 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dlex_object.py4 import sys
6 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dlex_opt_alias.py8 import sys
9 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dlex_optimize.py4 import sys
6 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dlex_optimize2.py4 import sys
6 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dlex_optimize3.py6 import sys
8 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dyacc_badargs.py6 import sys
7 sys.tracebacklimit = 0
8 sys.path.insert(0,"..")
H A Dyacc_badid.py6 import sys
8 if ".." not in sys.path: sys.path.insert(0,"..")
H A Dyacc_badprec.py6 import sys
8 if ".." not in sys.path: sys.path.insert(0,"..")
/gem5/src/cpu/
H A DIntrControl.py35 sys = Param.System(Parent.any, "the system we are part of") variable in class:IntrControl
H A Dintr_control.cc46 : SimObject(p), sys(p->sys)
53 std::vector<ThreadContext *> &tcvec = sys->threadContexts;
62 std::vector<ThreadContext *> &tcvec = sys->threadContexts;
/gem5/tests/gem5/fs/linux/arm/
H A Drun.py44 import sys
61 config = sys.argv[1]
66 sys.path.append(joinpath(gem5_root, 'configs'))
68 sys.path.append(joinpath(tests_root, 'configs'))
/gem5/configs/example/
H A Dsc_main.py30 import sys
40 m5.systemc.sc_main(*sys.argv)
/gem5/src/systemc/tests/
H A Dconfig.py34 import sys
55 sys.exit(int(result.code))
/gem5/src/python/
H A Dimporter.py59 import sys
62 mod = sys.modules[fullname]
65 sys.modules[fullname] = mod
85 del sys.modules[fullname]
93 import sys
96 sys.meta_path.append(importer)
/gem5/tests/
H A Drun.py44 import sys
63 sys.exit(2)
154 (category, mode, name, isa, opsys, config) = sys.argv[1].split('/')[-6:]
198 sys.path = [ os.path.dirname(abs_path), ] + sys.path
201 sys.argv = [ config, ]
203 sys.argv = argv
207 sys.path.append(joinpath(tests_root, 'configs'))
221 sys.path.append(joinpath(tests_root, category, mode, name))
227 def initCPUs(sys)
[all...]
/gem5/util/plot_dram/
H A Ddram_lat_mem_rd_plot.py48 import sys
56 if len(sys.argv) != 2:
57 print "Usage: ", sys.argv[0], "<simout directory>"
61 stats = open(sys.argv[1] + '/stats.txt', 'r')
63 print "Failed to open ", sys.argv[1] + '/stats.txt', " for reading"
67 simout = open(sys.argv[1] + '/simout', 'r')
69 print "Failed to open ", sys.argv[1] + '/simout', " for reading"
/gem5/util/
H A Don-chip-network-power-area.py29 import string, sys, subprocess, os
55 sys.path.append("build/ext/dsent")
64 sys.exit(1)
68 sys.exit(1)
72 sys.exit(1)
199 if len(sys.argv) != 5:
200 print("Usage: ", sys.argv[0], " <gem5 root directory> " \
209 ext_links) = parseConfig("%s/%s/config.ini" % (sys.argv[1], sys.argv[2]))
211 parseStats("%s/%s/stats.txt" % (sys
[all...]
/gem5/ext/ply/example/BASIC/
H A Dbasiclog.py4 import sys
5 sys.path.insert(0,"../..")
7 if sys.version_info[0] >= 3:
25 if len(sys.argv) == 2:
26 data = open(sys.argv[1]).read()
/gem5/src/dev/arm/
H A Da9scu.cc70 if (sys->numContexts() > 4) {
72 if (sys->numContexts() > 15)
73 fatal("Too many CPUs (%d) for A9SCU!\n", sys->numContexts());
76 smp_bits = (1 << sys->numContexts()) - 1;
77 core_cnt = sys->numContexts() - 1;

Completed in 10 milliseconds

1234567891011>>