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

/art/compiler/optimizing/
H A Dcode_generator_utils.cc37 * nc = exp + exp % d - 1, where d >= 2 and exp = 2^31 for int or 2^63 for long
38 * nc = -exp + (exp + 1) % d, where d >= 2 and exp = 2^31 for int or 2^63 for long
53 const uint64_t exp = is_long ? (UINT64_C(1) << 63) : (UINT32_C(1) << 31); local
59 uint64_t tmp = exp + sign_bit;
61 uint64_t quotient1 = exp / abs_nc;
62 uint64_t remainder1 = exp
[all...]
/art/compiler/dex/quick/x86/
H A Dint_x86.cc541 * nc = exp + exp % d - 1, where d >= 2 and exp = 2^31 for int or 2^63 for long
542 * nc = -exp + (exp + 1) % d, where d >= 2 and exp = 2^31 for int or 2^63 for long
557 const uint64_t exp = (is_long) ? 0x8000000000000000ULL : 0x80000000U; local
561 uint64_t tmp = exp + ((is_long) ? static_cast<uint64_t>(divisor) >> 63 :
564 uint64_t quotient1 = exp / abs_nc;
565 uint64_t remainder1 = exp
[all...]

Completed in 221 milliseconds