/gem5/ext/pybind11/pybind11/ |
H A D | _version.py | 2 __version__ = '.'.join(map(str, version_info))
|
H A D | __init__.py | 14 conda = os.path.exists(os.path.join(sys.prefix, 'conda-meta')) 17 return os.path.join(sys.prefix, 'include', 'site', 21 return os.path.join(sys.prefix, 'Library', 'include') 23 return os.path.join(sys.prefix, 'include')
|
H A D | __main__.py | 22 print(' '.join('-I' + d for d in unique_dirs))
|
/gem5/util/cpt_upgraders/ |
H A D | dvfs-perflevel.py | 8 cpt.set(sec, '_perfLevel', ' '.join('0')) 11 cpt.set(sec, '_perfLevel', ' '.join('0'))
|
H A D | arm-ccregs.py | 25 cpt.set(sec, 'intRegs', ' '.join(intRegs)) 26 cpt.set(sec, 'ccRegs', ' '.join(ccRegs))
|
H A D | remove-arm-cpsr-mode-miscreg.py | 11 cpt.set(sec, 'miscRegs', ' '.join(str(x) for x in mr))
|
H A D | arm-gicv2-banked-regs.py | 62 cpt.set(sec, 'intEnabled', ' '.join(intEnabled)) 63 cpt.set(sec, 'pendingInt', ' '.join(pendingInt)) 64 cpt.set(sec, 'activeInt', ' '.join(activeInt)) 65 cpt.set(sec, 'intPriority',' '.join(intPriority)) 66 cpt.set(sec, 'cpuTarget', ' '.join(cpuTarget)) 79 cpt.set(new_sec, 'intPriority',' '.join(intPriority))
|
H A D | arm-contextidr-el2.py | 11 cpt.set(sec, 'miscRegs', ' '.join(str(x) for x in miscRegs))
|
H A D | arm-miscreg-teehbr.py | 13 cpt.set(sec, 'miscRegs', ' '.join(str(x) for x in mr))
|
/gem5/ext/pybind11/tests/ |
H A D | test_eval.py | 13 filename = os.path.join(os.path.dirname(__file__), "test_eval_call.py")
|
H A D | test_gil_scoped.py | 13 process.join(timeout=10) 46 thread.join() 48 thread.join()
|
/gem5/util/ |
H A D | slicc | 30 from os.path import dirname, join 33 sys.path.insert(1, join(base, "../src/mem")) 34 sys.path.insert(1, join(base, "../src/python")) 35 sys.path.insert(1, join(base, "../ext/ply"))
|
H A D | cscope-index.py | 51 for dirpath,subdirs,files in os.walk(os.path.join(cwd, 'src')): 67 '\n'.join([os.path.join(dirpath, f) for f in okfiles])
|
/gem5/util/statetrace/ |
H A D | SConscript | 35 sources = [os.path.join('base', 'statetrace.cc'), 36 os.path.join('base', 'tracechild.cc'), 37 os.path.join('arch', arch, 'tracechild.cc')]
|
/gem5/src/systemc/tests/systemc/kernel/dynamic_processes/sc_join/test03/ |
H A D | test03.cpp | 59 sc_join join; local 65 join.add_process(sc_spawn( 71 << join.process_count() << " processes" << endl; 72 join.wait();
|
/gem5/tests/ |
H A D | main.py | 14 ext_path = os.path.join(base_dir, os.pardir, 'ext')
|
/gem5/ext/systemc/src/sysc/kernel/ |
H A D | sc_join.h | 22 sc_join.h -- Join Process Synchronization Definition 87 sc_core::sc_join join; \ 91 join.add_process(forkees[i]); \ 92 join.wait_clocked(); \ 101 sc_core::sc_join join; \ 105 join.add_process(forkees[i]); \ 106 join.wait(); \
|
/gem5/src/systemc/tests/ |
H A D | verify.py | 47 config_path = os.path.join(script_dir, 'config.py') 54 tests_rel_path = os.path.join(systemc_rel_path, 'tests') 55 json_rel_path = os.path.join(tests_rel_path, 'tests.json') 80 return os.path.join(self.build_dir, tests_rel_path, self.path) 83 return os.path.join(script_dir, self.path) 86 return os.path.join(self.src_dir(), 'expected_returncode') 89 return os.path.join(self.src_dir(), 'golden') 92 return '.'.join([self.name, self.suffix]) 95 return os.path.join(self.dir(), self.bin()) 98 return os.path.join(sel [all...] |
H A D | SConscript | 45 self.target = os.path.join(self.reldir, name) 52 self.sources.append(os.path.join(self.reldir, source)) 56 self.sources.append(os.path.join(self.reldir, '..', source)) 102 env.Literal(os.path.join('\\$$ORIGIN', relpath))]) 131 with open(os.path.join(dirname, fname)) as content: 156 print(os.path.join(dirname, f))
|
/gem5/ext/systemc/ |
H A D | SConscript | 44 conf_dir = os.path.join(build_root, '.scons_config'), 45 log_file = os.path.join(build_root, 'scons_config.log')) 79 systemc.SConscript(os.path.join(root, 'SConscript.sc'), 81 variant_dir=os.path.join(build_root, build_dir))
|
/gem5/ext/googletest/googlemock/scripts/generator/cpp/ |
H A D | gmock_class.py | 71 modifiers = ' '.join(node.return_type.modifiers) + ' ' 75 return_type += '<' + ', '.join(template_args) + '>' 107 args = ', '.join(param.type.name for param in node.parameters) 151 lines.append('template <' + ', '.join(template_decls) + '>') 152 parent_name += '<' + ', '.join(template_args) + '>' 183 (filename, ', '.join(missing_class_name_list))) 193 '.'.join(map(str, _VERSION))) 223 sys.stdout.write('\n'.join(lines))
|
/gem5/util/pbs/ |
H A D | pbs.py | 96 self.join = False 116 arg += ','.join([ '%s=%s' % i for i in self.env.iteritems() ]) 134 if self.join: 167 self.command = ' '.join(self.cmd + [ self.script ]) 175 cmd = ' '.join(self.cmd + [ '-' ]) 177 self.command = ' '.join(cmd)
|
/gem5/src/systemc/ext/core/ |
H A D | sc_spawn.hh | 181 ::sc_core::sc_join join; \ 183 join.add_process(forkees[i]); \ 184 join.wait(); \ 190 ::sc_core::sc_join join; \ 192 join.add_process(forkees[i]); \ 193 join.wait_clocked(); \
|
/gem5/ext/googletest/googletest/test/ |
H A D | gtest_xml_outfiles_test.py | 68 # We want the trailing '/' that the last "" provides in os.path.join, for 71 self.output_dir_ = os.path.join(gtest_test_utils.GetTempDir(), 80 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_1_TEST + ".xml")) 84 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_2_TEST + ".xml")) 112 output_file1 = os.path.join(self.output_dir_, output_file_name1) 114 output_file2 = os.path.join(self.output_dir_, output_file_name2)
|
/gem5/ext/testlib/ |
H A D | sandbox.py | 123 # Daemon + Join to not lock up main thread if something breaks 131 self.stdout_thread.join() 132 self.stderr_thread.join() 177 # Daemon + Join to not lock up main thread if something breaks 182 self.p.join()
|