Searched defs:external_function (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/mips/
H A Dsimulator-mips.cc936 Redirection(void* external_function, ExternalReference::Type type) argument
937 : external_function_(external_function),
954 void* external_function() { return external_function_; } function in class:v8::internal::Redirection
957 static Redirection* Get(void* external_function, argument
962 if (current->external_function_ == external_function) return current;
964 return new Redirection(external_function, type);
982 void* Simulator::RedirectExternalReference(void* external_function, argument
984 Redirection* redirection = Redirection::Get(external_function, type);
1471 reinterpret_cast<intptr_t>(redirection->external_function());
/external/v8/src/arm/
H A Dsimulator-arm.cc805 Redirection(void* external_function, ExternalReference::Type type) argument
806 : external_function_(external_function),
823 void* external_function() { return external_function_; } function in class:v8::internal::Redirection
826 static Redirection* Get(void* external_function, argument
831 if (current->external_function_ == external_function) return current;
833 return new Redirection(external_function, type);
851 void* Simulator::RedirectExternalReference(void* external_function, argument
853 Redirection* redirection = Redirection::Get(external_function, type);
1779 reinterpret_cast<intptr_t>(redirection->external_function());

Completed in 35 milliseconds