Searched full:join (Results 1 - 25 of 231) sorted by relevance

12345678910

/gem5/ext/pybind11/pybind11/
H A D_version.py2 __version__ = '.'.join(map(str, version_info))
H A D__init__.py14 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__.py22 print(' '.join('-I' + d for d in unique_dirs))
/gem5/util/cpt_upgraders/
H A Ddvfs-perflevel.py8 cpt.set(sec, '_perfLevel', ' '.join('0'))
11 cpt.set(sec, '_perfLevel', ' '.join('0'))
H A Darm-ccregs.py25 cpt.set(sec, 'intRegs', ' '.join(intRegs))
26 cpt.set(sec, 'ccRegs', ' '.join(ccRegs))
H A Dremove-arm-cpsr-mode-miscreg.py11 cpt.set(sec, 'miscRegs', ' '.join(str(x) for x in mr))
H A Darm-gicv2-banked-regs.py62 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 Darm-contextidr-el2.py11 cpt.set(sec, 'miscRegs', ' '.join(str(x) for x in miscRegs))
H A Darm-miscreg-teehbr.py13 cpt.set(sec, 'miscRegs', ' '.join(str(x) for x in mr))
/gem5/ext/pybind11/tests/
H A Dtest_eval.py13 filename = os.path.join(os.path.dirname(__file__), "test_eval_call.py")
H A Dtest_gil_scoped.py13 process.join(timeout=10)
46 thread.join()
48 thread.join()
/gem5/util/
H A Dslicc30 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 Dcscope-index.py51 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 DSConscript35 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 Dtest03.cpp59 sc_join join; local
65 join.add_process(sc_spawn(
71 << join.process_count() << " processes" << endl;
72 join.wait();
/gem5/tests/
H A Dmain.py14 ext_path = os.path.join(base_dir, os.pardir, 'ext')
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_join.h22 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 Dverify.py47 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 DSConscript45 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 DSConscript44 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 Dgmock_class.py71 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 Dpbs.py96 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 Dsc_spawn.hh181 ::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 Dgtest_xml_outfiles_test.py68 # 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 Dsandbox.py123 # 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()

Completed in 20 milliseconds

12345678910