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

  /art/compiler/optimizing/
code_generator_utils.cc 56 uint64_t abs_d = (divisor >= 0) ? divisor : -divisor; local
60 uint64_t abs_nc = tmp - 1 - (tmp % abs_d);
63 uint64_t quotient2 = exp / abs_d;
64 uint64_t remainder2 = exp % abs_d;
81 if (remainder2 >= abs_d) {
83 remainder2 = remainder2 - abs_d;
85 delta = abs_d - remainder2;
  /art/compiler/dex/quick/x86/
int_x86.cc 560 uint64_t abs_d = (divisor >= 0) ? divisor : -divisor; local
563 uint64_t abs_nc = tmp - 1 - tmp % abs_d;
566 uint64_t quotient2 = exp / abs_d;
567 uint64_t remainder2 = exp % abs_d;
584 if (remainder2 >= abs_d) {
586 remainder2 = remainder2 - abs_d;
588 delta = abs_d - remainder2;
    [all...]
  /external/v8/src/mips/
assembler-mips.cc 2077 void Assembler::abs_d(FPURegister fd, FPURegister fs) { function in class:v8::Assembler
    [all...]
  /external/v8/src/mips64/
assembler-mips64.cc 2303 void Assembler::abs_d(FPURegister fd, FPURegister fs) { function in class:v8::Assembler
    [all...]

Completed in 1013 milliseconds