Searched defs:simulator (Results 1 - 9 of 9) sorted by relevance

/external/vixl/examples/
H A Dcheck-bounds.cc62 void run_function(Simulator *simulator, Instruction * function, argument
64 simulator->set_xreg(0, value);
65 simulator->set_xreg(1, low);
66 simulator->set_xreg(2, high);
68 simulator->RunFrom(function);
70 simulator->xreg(0) ? "is" : "is not",
73 simulator->ResetState();
77 // Create and initialize the assembler and the simulator.
81 Simulator simulator(&decoder);
91 run_function(&simulator, functio
[all...]
/external/autotest/client/site_tests/p2p_ShareFiles/
H A Dp2p_ShareFiles.py53 from lansim import simulator, host namespace
62 self._sim = simulator.Simulator(self._p2p.tap)
/external/autotest/client/deps/lansim/src/py/
H A Dhost.py67 def simulator(self): member in class:SimpleHost
270 self._sim = host.simulator
H A Dsimulator_unittest.py13 from lansim import simulator namespace
90 self._sim = simulator.Simulator(self._tap)
107 # Schedule the callback far in time, run the simulator for a short time
150 self._sim = simulator.SimulatorThread(self._tap, timeout=20)
175 """Test that the simulator properly handles a ARP request/response."""
235 """Main thread can wait until a condition is met on the simulator."""
/external/autotest/client/site_tests/p2p_ConsumeFiles/
H A Dp2p_ConsumeFiles.py102 """Stops the simulator and logs any exception generated there."""
111 from lansim import simulator, host namespace
116 self._sim = simulator.SimulatorThread(self._tap)
118 # This first block creates the fake host on the simulator. For clarity
/external/autotest/client/site_tests/p2p_ServeFiles/
H A Dp2p_ServeFiles.py50 """Stops the simulator and logs any exception generated there."""
97 from lansim import simulator, host namespace
111 self._sim = simulator.SimulatorThread(self._p2p.tap)
/external/v8/src/profiler/
H A Dtick-sample.cc174 Simulator *simulator = isolate->thread_local_top()->simulator_; local
175 // Check if there is active simulator.
176 if (simulator == NULL) return false;
178 if (!simulator->has_bad_pc()) {
179 state->pc = reinterpret_cast<Address>(simulator->get_pc());
181 state->sp = reinterpret_cast<Address>(simulator->get_register(Simulator::sp));
182 state->fp = reinterpret_cast<Address>(simulator->get_register(
185 state->pc = reinterpret_cast<Address>(simulator->pc());
186 state->sp = reinterpret_cast<Address>(simulator->sp());
187 state->fp = reinterpret_cast<Address>(simulator
[all...]
/external/v8/test/cctest/compiler/
H A Dcall-tester.h8 #include "src/simulator.h"
179 Simulator* simulator = Simulator::current(isolate_); local
180 return static_cast<uintptr_t>(simulator->CallInt64(f, args));
229 Simulator* simulator = Simulator::current(isolate_); local
230 return static_cast<uintptr_t>(simulator->Call(f, 5, p1, p2, p3, p4, p5));
274 Simulator* simulator = Simulator::current(isolate_); local
275 return static_cast<uintptr_t>(simulator->Call(f, 5, p1, p2, p3, p4, p5));
/external/valgrind/callgrind/
H A Dsim.c101 /* Cache simulator Options */
148 } simulator; variable in typeref:struct:__anon19887
1068 IrRes = (*simulator.I1_Read)(CLG_(bb_base) + ii->instr_offset, ii->instr_size);
1093 Ir1Res = (*simulator.I1_Read)(CLG_(bb_base) + ii1->instr_offset, ii1->instr_size);
1095 Ir2Res = (*simulator.I1_Read)(CLG_(bb_base) + ii2->instr_offset, ii2->instr_size);
1126 Ir1Res = (*simulator.I1_Read)(CLG_(bb_base) + ii1->instr_offset, ii1->instr_size);
1128 Ir2Res = (*simulator.I1_Read)(CLG_(bb_base) + ii2->instr_offset, ii2->instr_size);
1130 Ir3Res = (*simulator.I1_Read)(CLG_(bb_base) + ii3->instr_offset, ii3->instr_size);
1165 IrRes = (*simulator.I1_Read)(CLG_(bb_base) + ii->instr_offset, ii->instr_size);
1166 DrRes = (*simulator
[all...]

Completed in 238 milliseconds