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

/external/vixl/examples/aarch64/
H A Dcheck-bounds.cc61 void run_function(Simulator* simulator, argument
66 simulator->WriteXRegister(0, value);
67 simulator->WriteXRegister(1, low);
68 simulator->WriteXRegister(2, high);
70 simulator->RunFrom(function);
73 simulator->ReadXRegister(0) ? "is" : "is not",
77 simulator->ResetState();
83 Simulator simulator(&decoder);
93 run_function(&simulator, function, 546, 50, 1000);
94 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/pdfium/testing/
H A Dfake_file_access.cpp19 explicit FileAccessWrapper(FakeFileAccess* simulator) argument
20 : simulator_(simulator) {
40 explicit FileAvailImpl(FakeFileAccess* simulator) : simulator_(simulator) { argument
58 explicit DownloadHintsImpl(FakeFileAccess* simulator) argument
59 : simulator_(simulator) {
/external/v8/src/profiler/
H A Dtick-sample.cc11 #include "src/simulator.h"
87 // from the simulator, otherwise returns false.
93 Simulator* simulator = isolate->thread_local_top()->simulator_; local
94 // Check if there is active simulator.
95 if (simulator == NULL) return false;
97 if (!simulator->has_bad_pc()) {
98 state->pc = reinterpret_cast<Address>(simulator->get_pc());
100 state->sp = reinterpret_cast<Address>(simulator->get_register(Simulator::sp));
102 reinterpret_cast<Address>(simulator->get_register(Simulator::r11));
104 state->pc = reinterpret_cast<Address>(simulator
[all...]
/external/vixl/src/aarch64/
H A Dsimulator-aarch64.h37 #include "simulator-constants-aarch64.h"
797 // Run the simulator.
807 // int32_t res = simulator.RunFrom<int32_t, int32_t>(GenerateCode(),
819 static R Wrapper(Simulator* simulator, argument
828 (simulator->WriteCPURegister(abi.GetNextParameterGenericOperand<P>()
832 simulator->RunFrom(code);
833 return simulator->ReadGenericOperand<R>(abi.GetReturnGenericOperand<R>());
840 static void Wrapper(Simulator* simulator, argument
849 (simulator->WriteCPURegister(abi.GetNextParameterGenericOperand<P>()
853 simulator
[all...]
/external/valgrind/callgrind/
H A Dsim.c101 /* Cache simulator Options */
148 } simulator; variable in typeref:struct:__anon28845
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...]
/external/v8/src/arm/
H A Dsimulator-arm.cc12 #include "src/arm/simulator-arm.h"
21 // Only build the simulator if not compiling for real ARM hardware.
35 // The ArmDebugger class is used by the simulator while debugging simulated ARM
665 // Set up simulator support first. Some of this information is needed to
709 // access violation if the simulator ever tries to execute it.
722 // the simulator. The external reference will be a function compiled for the
724 // execute it with the simulator. We do that by redirecting the external
726 // the simulator. We write the original destination of the jump just at a known
727 // offset from the svc instruction so the simulator knows what to call.
820 Simulator* sim = isolate_data->simulator();
4009 AddSaturate(Simulator* simulator, int Vd, int Vm, int Vn) argument
4021 SubSaturate(Simulator* simulator, int Vd, int Vm, int Vn) argument
[all...]

Completed in 286 milliseconds