HomeSort by relevance Sort by last modified time
    Searched full:fp_return (Results 1 - 5 of 5) sorted by null

  /external/v8/src/
assembler.h 365 typedef void* ExternalReferenceRedirector(void* original, bool fp_return);
487 static void* Redirect(void* address, bool fp_return = false) {
489 void* answer = (*redirector_)(address, fp_return);
493 static void* Redirect(Address address_arg, bool fp_return = false) {
497 (*redirector_)(address, fp_return);
  /external/v8/src/mips/
simulator-mips.cc 525 Redirection(void* external_function, bool fp_return)
528 fp_return_(fp_return),
538 bool fp_return() { return fp_return_; } function in class:assembler::mips::Redirection
540 static Redirection* Get(void* external_function, bool fp_return) {
545 return new Redirection(external_function, fp_return);
568 bool fp_return) {
569 Redirection* redirection = Redirection::Get(external_function, fp_return);
811 if (redirection->fp_return()) {
    [all...]
simulator-mips.h 261 bool fp_return);
  /external/v8/src/arm/
simulator-arm.cc 482 Redirection(void* external_function, bool fp_return)
485 fp_return_(fp_return),
495 bool fp_return() { return fp_return_; } function in class:assembler::arm::Redirection
497 static Redirection* Get(void* external_function, bool fp_return) {
502 return new Redirection(external_function, fp_return);
525 bool fp_return) {
526 Redirection* redirection = Redirection::Get(external_function, fp_return);
    [all...]
simulator-arm.h 239 bool fp_return);

Completed in 150 milliseconds