Searched refs:global (Results 1 - 25 of 35) sorted by relevance

12

/gem5/ext/pybind11/tests/
H A Dtest_eval.cpp17 auto global = py::dict(py::module::import("__main__").attr("__dict__")); local
19 m.def("test_eval_statements", [global]() {
29 global, local
38 )", global, local
45 m.def("test_eval", [global]() {
48 auto x = py::eval("x", global, local);
63 m.def("test_eval_file", [global](py::str filename) {
70 auto result = py::eval_file(filename, global, local);
/gem5/ext/pybind11/include/pybind11/
H A Deval.h30 object eval(str expr, object global = globals(), object local = object()) {
32 local = global;
46 PyObject *result = PyRun_String(buffer.c_str(), start, global.ptr(), local.ptr());
53 object eval(const char (&s)[N], object global = globals(), object local = object()) {
57 return eval<mode>(expr, global, local);
60 inline void exec(str expr, object global = globals(), object local = object()) {
61 eval<eval_statements>(expr, global, local);
65 void exec(const char (&s)[N], object global = globals(), object local = object()) {
66 eval<eval_statements>(s, global, local);
70 object eval_file(str fname, object global
[all...]
/gem5/ext/systemc/src/sysc/qt/md/
H A Dsparc.s20 .global _qt_blocki
21 .global _qt_block
22 .global _qt_abort
23 .global _qt_start
24 .global _qt_vstart
/gem5/src/arch/x86/
H A Dpagetable.cc52 user(true), uncacheable(0), global(false), patBit(0),
60 user(true), uncacheable(uncacheable), global(false), patBit(0),
73 SERIALIZE_SCALAR(global);
88 UNSERIALIZE_SCALAR(global);
H A Dpagetable_walker.cc354 entry.global = pte.g;
375 entry.global = pte.g;
415 entry.global = pte.g;
436 entry.global = pte.g;
466 entry.global = pte.g;
504 entry.global = pte.g;
H A Dpagetable.hh87 bool global; member in struct:X86ISA::TlbEntry
/gem5/tests/test-progs/asmtest/src/riscv/env/ps/
H A Driscv_test.h163 .align 6; .global tohost; tohost: .dword 0; \
164 .align 6; .global fromhost; fromhost: .dword 0; \
166 .align 4; .global begin_signature; begin_signature:
168 #define RVTEST_DATA_END .align 4; .global end_signature; end_signature:
/gem5/src/sim/
H A Deventq_impl.hh42 EventQueue::schedule(Event *event, Tick when, bool global) argument
52 // b. a thread schedules global events on the asyncq, whether or not
54 // a total order amongst the global events. See global_event.{cc,hh}
56 if (inParallelMode && (this != curEventQueue() || global)) {
H A Dstat_control.cc210 static Global global; local
/gem5/src/systemc/tests/systemc/compliance_1666/test205/
H A Dtest205.cpp8 // 5) wait( int ) for SC_THREAD, primitives and global
10 void global() function
40 global();
/gem5/src/arch/arm/
H A Dpagetable.hh128 bool global; member in struct:ArmISA::TlbEntry
156 longDescFormat(false), isHyp(false), global(false), valid(true),
171 longDescFormat(false), isHyp(false), global(false), valid(false),
212 match = global || (asn == asid);
291 isHyp, pfn << N, size, ap, ns, nstid, global, el);
305 SERIALIZE_SCALAR(global); variable
335 UNSERIALIZE_SCALAR(global); variable
H A Dtable_walker.hh80 virtual bool global(WalkerState *currState) const = 0;
168 /** Is the translation global (no asid used)? */
169 bool global(WalkerState *currState) const function in class:ArmISA::TableWalker::L1Descriptor
311 /** Is the translation global (no asid used)? */
312 bool global(WalkerState *currState) const function in class:ArmISA::TableWalker::L2Descriptor
550 /** Is the translation global (no asid used)? */
551 bool global(WalkerState *currState) const function
559 return true; // By default translations are treated as global
/gem5/ext/mcpat/cacti/
H A Dwire.cc68 // the following values are for peripheral global technology
70 Component Wire::global; member in class:Wire
149 delay = global.delay * wire_length;
150 power.readOp.dynamic = global.power.readOp.dynamic * wire_length;
151 power.readOp.leakage = global.power.readOp.leakage * wire_length;
152 power.readOp.gate_leakage = global.power.readOp.gate_leakage * wire_length;
153 repeater_spacing = global.area.w;
154 repeater_size = global.area.h;
640 global.delay = del;
641 global
[all...]
H A Dwire.h87 static Component global; member in class:Wire
/gem5/tests/test-progs/asmtest/src/riscv/env/p/
H A Driscv_test.h208 .align 6; .global tohost; tohost: .dword 0; \
209 .align 6; .global fromhost; fromhost: .dword 0; \
211 .align 4; .global begin_signature; begin_signature:
213 #define RVTEST_DATA_END .align 4; .global end_signature; end_signature:
/gem5/tests/test-progs/asmtest/src/riscv/env/v/
H A Driscv_test.h18 .global userstart; \
/gem5/tests/test-progs/asmtest/src/riscv/isa/rv64si/
H A Dsbreak.S34 .global stvec_handler
H A Dscall.S61 .global stvec_handler
H A Ddirty.S77 .global mtvec_handler
H A Dma_fetch.S114 .global stvec_handler
/gem5/system/alpha/console/
H A Dpaljtoslave.S47 .global palJToSlave
H A Dpaljtokern.S58 .global palJToKern
/gem5/util/m5/
H A Dm5op_sparc.S45 .global func; \
/gem5/tests/test-progs/asmtest/src/riscv/isa/rv64mi/
H A Daccess.S46 .global mtvec_handler
H A Dma_addr.S96 .global mtvec_handler

Completed in 30 milliseconds

12