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

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfloatsisf.c31 sign = signBit;
47 if (round > signBit)
49 if (round == signBit)
H A Dnegdf2.c16 COMPILER_RT_ABI fp_t __negdf2(fp_t a) { return fromRep(toRep(a) ^ signBit); }
H A Dnegsf2.c16 COMPILER_RT_ABI fp_t __negsf2(fp_t a) { return fromRep(toRep(a) ^ signBit); }
H A Dsubdf3.c18 return __adddf3(a, fromRep(toRep(b) ^ signBit));
H A Dsubsf3.c18 return __addsf3(a, fromRep(toRep(b) ^ signBit));
H A Dsubtf3.c21 return __addtf3(a, fromRep(toRep(b) ^ signBit));
H A Dfloatunsisf.c40 if (round > signBit)
42 if (round == signBit)
H A Dfloatditf.c31 sign = signBit;
H A Dfloatsidf.c31 sign = signBit;
H A Dfloatsitf.c31 sign = signBit;
H A Dfp_fixint_impl.inc22 const fixint_t sign = aRep & signBit ? -1 : 1;
H A Dfp_fixuint_impl.inc20 const int sign = aRep & signBit ? -1 : 1;
H A Dfp_add_impl.inc35 if ((toRep(a) ^ toRep(b)) == signBit)
82 const rep_t resultSign = aRep & signBit;
83 const bool subtraction = (aRep ^ bRep) & signBit;
H A Dfp_lib.h210 #define signBit (REP_C(1) << (significandBits + exponentBits)) macro
211 #define absMask (signBit - 1U)
274 if (((rep & signBit) == 0) || (x != x)) {
281 return fromRep(infRep | signBit);
H A Ddivsf3.c25 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
H A Dfp_mul_impl.inc19 const rep_t productSign = (toRep(a) ^ toRep(b)) & signBit;
123 if (productLo > signBit)
125 if (productLo == signBit)
H A Ddivdf3.c25 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
H A Ddivtf3.c26 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAsmBackend.cpp608 uint32_t signBit = (offset & 0x800000) >> 23; local
610 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
612 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
616 uint32_t FirstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10Bits);
644 uint32_t signBit = (offset & 0x400000) >> 22; local
646 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
648 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
652 uint32_t FirstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10HBits);

Completed in 72 milliseconds