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

  /art/compiler/optimizing/
code_generator_utils.cc 60 uint64_t abs_nc = tmp - 1 - (tmp % abs_d); local
61 uint64_t quotient1 = exp / abs_nc;
62 uint64_t remainder1 = exp % abs_nc;
75 if (remainder1 >= abs_nc) {
77 remainder1 = remainder1 - abs_nc;
  /art/compiler/dex/quick/x86/
int_x86.cc 563 uint64_t abs_nc = tmp - 1 - tmp % abs_d; local
564 uint64_t quotient1 = exp / abs_nc;
565 uint64_t remainder1 = exp % abs_nc;
578 if (remainder1 >= abs_nc) {
580 remainder1 = remainder1 - abs_nc;
    [all...]

Completed in 237 milliseconds