Searched defs:signBit (Results 1 - 4 of 4) sorted by path

/external/clang/test/CodeGen/
H A Dstruct-init.c30 const uint32x2_t signBit = { (uint2) 0x80000000 }; local
/external/compiler-rt/lib/builtins/
H A Dfp_lib.h223 #define signBit (REP_C(1) << (significandBits + exponentBits)) macro
224 #define absMask (signBit - 1U)
/external/deqp/framework/common/
H A DtcuFloat.hpp109 inline int signBit (void) const { return (m_value >> (ExponentBits+MantissaBits)) & 1; } function in class:tcu::Float
113 inline int sign (void) const { return signBit() ? -1 : 1; }
229 const StorageType signBit = sign < 0 ? 1 : 0; local
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/
H A DARMAsmBackend.cpp491 uint32_t signBit = (offset & 0x800000) >> 23; local
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; local
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);

Completed in 257 milliseconds