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

/art/compiler/dex/quick/x86/
H A Dint_x86.cc537 * nc = exp + exp % d - 1, where d >= 2 and exp = 2^31 for int or 2^63 for long
538 * nc = -exp + (exp + 1) % d, where d >= 2 and exp = 2^31 for int or 2^63 for long
553 const uint64_t exp = (is_long) ? 0x8000000000000000ULL : 0x80000000U; local
557 uint64_t tmp = exp + ((is_long) ? static_cast<uint64_t>(divisor) >> 63 :
560 uint64_t quotient1 = exp / abs_nc;
561 uint64_t remainder1 = exp
[all...]

Completed in 87 milliseconds