Searched refs:signbit (Results 1 – 2 of 2) sorted by relevance
69 uint32_t signbit = (displacement >> 31) & 0x1; in PatchCall() local74 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()
3056 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()