Home
last modified time | relevance | path

Searched refs:signbit (Results 1 – 2 of 2) sorted by relevance

/art/dex2oat/linker/arm/
Drelative_patcher_thumb2.cc69 uint32_t signbit = (displacement >> 31) & 0x1; in PatchCall() local
74 uint32_t j1 = i1 ^ (signbit ^ 1); in PatchCall()
75 uint32_t j2 = i2 ^ (signbit ^ 1); in PatchCall()
76 uint32_t value = (signbit << 26) | (j1 << 13) | (j2 << 11) | (imm10 << 16) | imm11; in PatchCall()
/art/compiler/optimizing/
Dnodes.h3056 return IsArithmeticZero() && !std::signbit(value_); in IsArithmeticPositiveZero()
3059 return IsArithmeticZero() && std::signbit(value_); in IsArithmeticNegativeZero()
3113 return IsArithmeticZero() && !std::signbit(value_); in IsArithmeticPositiveZero()
3116 return IsArithmeticZero() && std::signbit(value_); in IsArithmeticNegativeZero()