Searched refs:exp (Results 1 - 5 of 5) 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/runtime/base/
H A Dmacros.h25 #define TEMP_FAILURE_RETRY(exp) ({ \
26 decltype(exp) _rc; \
28 _rc = (exp); \
/art/cmdline/
H A Dcmdline_parser_test.cc49 FloatingPoint exp(expected);
53 return exp.AlmostEquals(act);
/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...]
/art/runtime/interpreter/
H A Dunstarted_runtime.cc895 result->SetD(exp(value.GetD()));

Completed in 506 milliseconds