HomeSort by relevance Sort by last modified time
    Searched defs:external_function (Results 1 - 2 of 2) sorted by null

  /external/v8/src/mips/
simulator-mips.cc 799 Redirection(void* external_function, ExternalReference::Type type)
800 : external_function_(external_function),
817 void* external_function() { return external_function_; } function in class:v8::internal::Redirection
820 static Redirection* Get(void* external_function,
825 if (current->external_function_ == external_function) return current;
827 return new Redirection(external_function, type);
845 void* Simulator::RedirectExternalReference(void* external_function,
847 Redirection* redirection = Redirection::Get(external_function, type);
    [all...]
  /external/v8/src/arm/
simulator-arm.cc 795 Redirection(void* external_function, ExternalReference::Type type)
796 : external_function_(external_function),
813 void* external_function() { return external_function_; } function in class:v8::internal::Redirection
816 static Redirection* Get(void* external_function,
821 if (current->external_function_ == external_function) return current;
823 return new Redirection(external_function, type);
841 void* Simulator::RedirectExternalReference(void* external_function,
843 Redirection* redirection = Redirection::Get(external_function, type);
    [all...]

Completed in 373 milliseconds