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

  /external/clang/test/CodeGen/
struct-init.c 30 const uint32x2_t signBit = { (uint2) 0x80000000 };
  /art/test/564-checker-bitcount/src/
Main.java 82 int signBit = Byte.SIZE - 1;
98 (i < signBit) ? 1 : 1 + signExtensionSize);
107 int signBit = Short.SIZE - 1;
125 (i < signBit) ? 1 : 1 + signExtensionSize);
  /external/deqp/framework/common/
tcuFloat.hpp 109 inline int signBit (void) const { return (int)(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((StorageType(other.signBit())) << (StorageType(ExponentBits+MantissaBits))); // \note Not sign, but sign bit.
tcuTexture.cpp 479 const deUint32 signBit = 1u << (bits-1);
481 src |= ~((src & signBit) - 1);
    [all...]
  /external/compiler-rt/lib/builtins/
fp_lib.h 223 #define signBit (REP_C(1) << (significandBits + exponentBits))
224 #define absMask (signBit - 1U)
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAsmBackend.cpp 501 uint32_t signBit = (offset & 0x800000) >> 23;
503 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
505 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
509 uint32_t FirstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10Bits);
532 uint32_t signBit = (offset & 0x400000) >> 22;
534 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
536 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
540 uint32_t FirstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10HBits);
    [all...]

Completed in 442 milliseconds