Home
last modified time | relevance | path

Searched refs:signBit (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfloatunsisf.c40 if (round > signBit) in __floatunsisf()
42 if (round == signBit) in __floatunsisf()
H A Dfp_lib.h219 #define signBit (REP_C(1) << (significandBits + exponentBits)) macro
220 #define absMask (signBit - 1U)
267 if (((rep & signBit) == 0) || (x != x)) { in __compiler_rt_logbX()
274 return fromRep(infRep | signBit); in __compiler_rt_logbX()
311 const rep_t sign = rep & signBit; in __compiler_rt_scalbnX()
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 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 Dnegdf2.c16 COMPILER_RT_ABI fp_t __negdf2(fp_t a) { return fromRep(toRep(a) ^ signBit); } in __negdf2()
H A Dnegsf2.c16 COMPILER_RT_ABI fp_t __negsf2(fp_t a) { return fromRep(toRep(a) ^ signBit); } in __negsf2()
H A Dsubtf3.c21 return __addtf3(a, fromRep(toRep(b) ^ signBit)); in __subtf3()
H A Dsubdf3.c18 return __adddf3(a, fromRep(toRep(b) ^ signBit)); in __subdf3()
H A Dsubsf3.c18 return __addsf3(a, fromRep(toRep(b) ^ signBit)); in __subsf3()
H A Dfloatditf.c31 sign = signBit; in __floatditf()
H A Dfp_fixuint_impl.inc20 const int sign = aRep & signBit ? -1 : 1;
H A Dfp_fixint_impl.inc22 const fixint_t sign = aRep & signBit ? -1 : 1;
H A Dfp_div_impl.inc39 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAsmBackend.cpp654 uint32_t signBit = (offset & 0x800000) >> 23; in adjustFixupValue() local
656 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit; in adjustFixupValue()
658 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit; in adjustFixupValue()
662 uint32_t FirstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10Bits); in adjustFixupValue()
691 uint32_t signBit = (offset & 0x400000) >> 22; in adjustFixupValue() local
693 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit; in adjustFixupValue()
695 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit; in adjustFixupValue()
699 uint32_t FirstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10HBits); in adjustFixupValue()