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

/external/compiler-rt/lib/
H A Dnegdf2.c20 return fromRep(toRep(a) ^ signBit);
H A Dnegsf2.c21 return fromRep(toRep(a) ^ signBit);
H A Dfloatsisf.c34 sign = signBit;
50 if (round > signBit) result++;
51 if (round == signBit) result += result & 1;
H A Dfloatunsisf.c42 if (round > signBit) result++;
43 if (round == signBit) result += result & 1;
H A Dsubdf3.c26 return __adddf3(a, fromRep(toRep(b) ^ signBit));
H A Dsubsf3.c25 return __addsf3(a, fromRep(toRep(b) ^ signBit));
H A Dfixdfsi.c28 const int sign = aRep & signBit ? -1 : 1;
H A Dfixsfsi.c26 const int sign = aRep & signBit ? -1 : 1;
H A Dfloatsidf.c34 sign = signBit;
H A Dmuldf3.c25 const rep_t productSign = (toRep(a) ^ toRep(b)) & signBit;
119 if (productLo > signBit) productHi++;
120 if (productLo == signBit) productHi += productHi & 1;
H A Dmulsf3.c25 const rep_t productSign = (toRep(a) ^ toRep(b)) & signBit;
109 if (productLo > signBit) productHi++;
110 if (productLo == signBit) productHi += productHi & 1;
H A Dadddf3.c38 if ((toRep(a) ^ toRep(b)) == signBit) return fromRep(qnanRep);
76 const rep_t resultSign = aRep & signBit;
77 const bool subtraction = (aRep ^ bRep) & signBit;
H A Daddsf3.c37 if ((toRep(a) ^ toRep(b)) == signBit) return fromRep(qnanRep);
75 const rep_t resultSign = aRep & signBit;
76 const bool subtraction = (aRep ^ bRep) & signBit;
H A Dfp_lib.h98 #define signBit (REP_C(1) << (significandBits + exponentBits)) macro
99 #define absMask (signBit - 1U)
H A Ddivdf3.c28 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
H A Ddivsf3.c28 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
/external/clang/test/CodeGen/
H A Dstruct-init.c30 const uint32x2_t signBit = { (uint2) 0x80000000 }; local
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAsmBackend.cpp410 uint32_t signBit = (offset & 0x800000) >> 23; local
412 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
414 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
419 uint32_t firstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10Bits);
441 uint32_t signBit = (offset & 0x400000) >> 22; local
443 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
445 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
450 uint32_t firstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10HBits);

Completed in 147 milliseconds