HomeSort by relevance Sort by last modified time
    Searched refs:signBit (Results 1 - 17 of 17) sorted by null

  /external/compiler-rt/lib/builtins/
negdf2.c 21 return fromRep(toRep(a) ^ signBit);
negsf2.c 21 return fromRep(toRep(a) ^ signBit);
subdf3.c 23 return __adddf3(a, fromRep(toRep(b) ^ signBit));
subsf3.c 23 return __addsf3(a, fromRep(toRep(b) ^ signBit));
floatsisf.c 35 sign = signBit;
51 if (round > signBit) result++;
52 if (round == signBit) result += result & 1;
subtf3.c 24 return __addtf3(a, fromRep(toRep(b) ^ signBit));
floatunsisf.c 43 if (round > signBit) result++;
44 if (round == signBit) result += result & 1;
fixdfsi.c 29 const int sign = aRep & signBit ? -1 : 1;
fixsfsi.c 26 const int sign = aRep & signBit ? -1 : 1;
floatsidf.c 35 sign = signBit;
divdf3.c 29 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
divsf3.c 29 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
divtf3.c 27 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
fp_lib.h 223 #define signBit (REP_C(1) << (significandBits + exponentBits))
224 #define absMask (signBit - 1U)
  /external/clang/test/CodeGen/
struct-init.c 30 const uint32x2_t signBit = { (uint2) 0x80000000 };
  /external/deqp/framework/common/
tcuFloat.hpp 109 inline int signBit (void) const { return (m_value >> (ExponentBits+MantissaBits)) & 1; }
113 inline int sign (void) const { return signBit() ? -1 : 1; }
229 const StorageType signBit = sign < 0 ? 1 : 0;
236 return Float(StorageType((signBit << (ExponentBits+MantissaBits)) | (exponentBits << MantissaBits) | (mantissaBits)));
267 const StorageType s = StorageType(other.signBit()) << (ExponentBits+MantissaBits); // \note Not sign, but sign bit.
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAsmBackend.cpp 491 uint32_t signBit = (offset & 0x800000) >> 23;
493 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
495 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
499 uint32_t FirstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10Bits);
521 uint32_t signBit = (offset & 0x400000) >> 22;
523 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
525 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
529 uint32_t FirstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10HBits);
    [all...]

Completed in 242 milliseconds