Searched refs:signBit (Results 1 - 25 of 26) sorted by relevance

12

/external/compiler-rt/lib/builtins/
H A Dnegdf2.c21 return fromRep(toRep(a) ^ signBit);
H A Dnegsf2.c21 return fromRep(toRep(a) ^ signBit);
H A Dsubdf3.c23 return __adddf3(a, fromRep(toRep(b) ^ signBit));
H A Dsubsf3.c23 return __addsf3(a, fromRep(toRep(b) ^ signBit));
H A Dfloatsisf.c35 sign = signBit;
51 if (round > signBit) result++;
52 if (round == signBit) result += result & 1;
H A Dsubtf3.c24 return __addtf3(a, fromRep(toRep(b) ^ signBit));
H A Dfloatunsisf.c43 if (round > signBit) result++;
44 if (round == signBit) result += result & 1;
H A Dfloatditf.c32 sign = signBit;
H A Dfloatsidf.c35 sign = signBit;
H A Dfloatsitf.c32 sign = signBit;
H A Dfp_fixint_impl.inc23 const fixint_t sign = aRep & signBit ? -1 : 1;
H A Dfp_fixuint_impl.inc21 const int sign = aRep & signBit ? -1 : 1;
H A Dfp_add_impl.inc33 if ((toRep(a) ^ toRep(b)) == signBit) return fromRep(qnanRep);
71 const rep_t resultSign = aRep & signBit;
72 const bool subtraction = (aRep ^ bRep) & signBit;
H A Ddivdf3.c29 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
H A Ddivsf3.c29 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
H A Dfp_mul_impl.inc20 const rep_t productSign = (toRep(a) ^ toRep(b)) & signBit;
113 if (productLo > signBit) productHi++;
114 if (productLo == signBit) productHi += productHi & 1;
H A Ddivtf3.c27 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
H A Dfp_lib.h223 #define signBit (REP_C(1) << (significandBits + exponentBits)) macro
224 #define absMask (signBit - 1U)
/external/clang/test/CodeGen/
H A Dstruct-init.c30 const uint32x2_t signBit = { (uint2) 0x80000000 }; local
/external/deqp/framework/common/
H A DtcuFloat.hpp109 inline int signBit (void) const { return (int)(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((StorageType(other.signBit())) << (StorageType(ExponentBits+MantissaBits))); // \note Not sign, but sign bit.
H A DtcuTexture.cpp465 const deUint32 signBit = 1u << (bits-1); local
467 src |= ~((src & signBit) - 1);
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAsmBackend.cpp518 uint32_t signBit = (offset & 0x800000) >> 23; local
520 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
522 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
526 uint32_t FirstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10Bits);
554 uint32_t signBit = (offset & 0x400000) >> 22; local
556 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
558 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
562 uint32_t FirstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10HBits);
/external/deqp/external/vulkancts/modules/vulkan/texture/
H A DvktSampleVerifierUtil.cpp611 const deUint64 signBit = 1ull << (bits-1);
613 src |= ~((src & signBit) - 1);
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
H A DvktSpvAsmGraphicsShaderTestUtil.cpp2149 if (returnedFloat.isInf() && originalFloat.signBit() == returnedFloat.signBit())
/external/deqp/external/vulkancts/modules/vulkan/ycbcr/
H A DvktYCbCrUtil.cpp806 const deUint32 signBit = 1u << (bits-1); local
808 src |= ~((src & signBit) - 1);

Completed in 369 milliseconds

12