HomeSort by relevance Sort by last modified time
    Searched refs:toRep (Results 1 - 15 of 15) sorted by null

  /external/compiler-rt/lib/
negdf2.c 20 return fromRep(toRep(a) ^ signBit);
negsf2.c 21 return fromRep(toRep(a) ^ signBit);
muldf3.c 23 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent;
24 const unsigned int bExponent = toRep(b) >> significandBits & maxExponent;
25 const rep_t productSign = (toRep(a) ^ toRep(b)) & signBit;
27 rep_t aSignificand = toRep(a) & significandMask;
28 rep_t bSignificand = toRep(b) & significandMask;
34 const rep_t aAbs = toRep(a) & absMask;
35 const rep_t bAbs = toRep(b) & absMask;
38 if (aAbs > infRep) return fromRep(toRep(a) | quietBit);
40 if (bAbs > infRep) return fromRep(toRep(b) | quietBit)
    [all...]
mulsf3.c 23 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent;
24 const unsigned int bExponent = toRep(b) >> significandBits & maxExponent;
25 const rep_t productSign = (toRep(a) ^ toRep(b)) & signBit;
27 rep_t aSignificand = toRep(a) & significandMask;
28 rep_t bSignificand = toRep(b) & significandMask;
34 const rep_t aAbs = toRep(a) & absMask;
35 const rep_t bAbs = toRep(b) & absMask;
38 if (aAbs > infRep) return fromRep(toRep(a) | quietBit);
40 if (bAbs > infRep) return fromRep(toRep(b) | quietBit)
    [all...]
divdf3.c 26 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent;
27 const unsigned int bExponent = toRep(b) >> significandBits & maxExponent;
28 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
30 rep_t aSignificand = toRep(a) & significandMask;
31 rep_t bSignificand = toRep(b) & significandMask;
37 const rep_t aAbs = toRep(a) & absMask;
38 const rep_t bAbs = toRep(b) & absMask;
41 if (aAbs > infRep) return fromRep(toRep(a) | quietBit);
43 if (bAbs > infRep) return fromRep(toRep(b) | quietBit)
    [all...]
divsf3.c 26 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent;
27 const unsigned int bExponent = toRep(b) >> significandBits & maxExponent;
28 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
30 rep_t aSignificand = toRep(a) & significandMask;
31 rep_t bSignificand = toRep(b) & significandMask;
37 const rep_t aAbs = toRep(a) & absMask;
38 const rep_t bAbs = toRep(b) & absMask;
41 if (aAbs > infRep) return fromRep(toRep(a) | quietBit);
43 if (bAbs > infRep) return fromRep(toRep(b) | quietBit)
    [all...]
comparedf2.c 52 const srep_t aInt = toRep(a);
53 const srep_t bInt = toRep(b);
91 const srep_t aInt = toRep(a);
92 const srep_t bInt = toRep(b);
112 const rep_t aAbs = toRep(a) & absMask;
113 const rep_t bAbs = toRep(b) & absMask;
comparesf2.c 52 const srep_t aInt = toRep(a);
53 const srep_t bInt = toRep(b);
91 const srep_t aInt = toRep(a);
92 const srep_t bInt = toRep(b);
112 const rep_t aAbs = toRep(a) & absMask;
113 const rep_t bAbs = toRep(b) & absMask;
adddf3.c 23 rep_t aRep = toRep(a);
24 rep_t bRep = toRep(b);
32 if (aAbs > infRep) return fromRep(toRep(a) | quietBit);
34 if (bAbs > infRep) return fromRep(toRep(b) | quietBit);
38 if ((toRep(a) ^ toRep(b)) == signBit) return fromRep(qnanRep);
49 if (!bAbs) return fromRep(toRep(a) & toRep(b));
addsf3.c 22 rep_t aRep = toRep(a);
23 rep_t bRep = toRep(b);
31 if (aAbs > infRep) return fromRep(toRep(a) | quietBit);
33 if (bAbs > infRep) return fromRep(toRep(b) | quietBit);
37 if ((toRep(a) ^ toRep(b)) == signBit) return fromRep(qnanRep);
48 if (!bAbs) return fromRep(toRep(a) & toRep(b));
subdf3.c 26 return __adddf3(a, fromRep(toRep(b) ^ signBit));
subsf3.c 25 return __addsf3(a, fromRep(toRep(b) ^ signBit));
fixdfsi.c 26 const rep_t aRep = toRep(a);
fixsfsi.c 24 const rep_t aRep = toRep(a);
fp_lib.h 106 static inline rep_t toRep(fp_t x) {

Completed in 52 milliseconds