OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RunFrom
(Results
1 - 25
of
28
) sorted by null
1
2
/art/runtime/simulator/
code_simulator.h
31
virtual void
RunFrom
(intptr_t code_buffer) = 0;
code_simulator_arm64.cc
48
void CodeSimulatorArm64::
RunFrom
(intptr_t code_buffer) {
50
simulator_->
RunFrom
(reinterpret_cast<const vixl::Instruction*>(code_buffer));
code_simulator_arm64.h
36
void
RunFrom
(intptr_t code_buffer) OVERRIDE;
/external/vixl/examples/
abs.cc
63
simulator.
RunFrom
(masm.GetLabelAddress<Instruction*>(&abs));
getting-started.cc
57
simulator.
RunFrom
(masm.GetLabelAddress<Instruction*>(&demo_function));
literal.cc
72
simulator.
RunFrom
(masm.GetLabelAddress<Instruction*>(&start));
80
simulator.
RunFrom
(reinterpret_cast<Instruction*>(code));
add3-double.cc
68
simulator.
RunFrom
(masm.GetLabelAddress<Instruction*>(&add3_double));
debugger.cc
67
debugger.
RunFrom
(masm.GetLabelAddress<Instruction*>(&start));
factorial.cc
73
simulator.
RunFrom
(masm.GetLabelAddress<Instruction*>(&factorial));
add4-double.cc
78
simulator.
RunFrom
(masm.GetLabelAddress<Instruction*>(&add4_double));
check-bounds.cc
68
simulator->
RunFrom
(function);
crc-checksums.cc
88
simulator.
RunFrom
(masm.GetLabelAddress<Instruction*>(&func));
factorial-rec.cc
75
simulator.
RunFrom
(masm.GetLabelAddress<Instruction*>(&factorial_rec));
sum-array.cc
81
simulator.
RunFrom
(masm.GetLabelAddress<Instruction*>(&sum_array));
swap-int32.cc
87
simulator.
RunFrom
(masm.GetLabelAddress<Instruction*>(&swap_int32));
swap4.cc
78
simulator.
RunFrom
(masm.GetLabelAddress<Instruction*>(&swap4));
non-const-visitor.cc
54
simulator.
RunFrom
(start_instr);
add2-vectors.cc
144
simulator.
RunFrom
(masm.GetLabelAddress<Instruction*>(&add2_vectors));
neon-matrix-multiply.cc
141
simulator.
RunFrom
(masm.GetLabelAddress<Instruction*>(&neon_matrix_multiply));
/art/compiler/optimizing/
codegen_test.cc
145
simulator->
RunFrom
(reinterpret_cast<intptr_t>(f));
151
simulator->
RunFrom
(reinterpret_cast<intptr_t>(f));
157
simulator->
RunFrom
(reinterpret_cast<intptr_t>(f));
[
all
...]
/external/vixl/test/examples/
test-examples.cc
145
simulator.
RunFrom
(masm.GetLabelAddress<Instruction*>(&test)); \
/external/v8/src/arm64/
simulator-arm64.h
289
void
RunFrom
(Instruction* start);
simulator-arm64.cc
450
void Simulator::
RunFrom
(Instruction* start) {
[
all
...]
/external/vixl/src/vixl/a64/
simulator-a64.h
695
void
RunFrom
(const Instruction* first);
[
all
...]
simulator-a64.cc
145
void Simulator::
RunFrom
(const Instruction* first) {
[
all
...]
Completed in 167 milliseconds
1
2