HomeSort by relevance Sort by last modified time
    Searched refs:fromRep (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 38 if (aAbs > infRep) return fromRep(toRep(a) | quietBit);
40 if (bAbs > infRep) return fromRep(toRep(b) | quietBit);
44 if (bAbs) return fromRep(aAbs | productSign);
46 else return fromRep(qnanRep);
51 if (aAbs) return fromRep(bAbs | productSign);
53 else return fromRep(qnanRep);
57 if (!aAbs) return fromRep(productSign);
59 if (!bAbs) return fromRep(productSign);
90 if (productExponent >= maxExponent) return fromRep(infRep | productSign);
100 if (shift >= typeWidth) return fromRep(productSign)
    [all...]
mulsf3.c 38 if (aAbs > infRep) return fromRep(toRep(a) | quietBit);
40 if (bAbs > infRep) return fromRep(toRep(b) | quietBit);
44 if (bAbs) return fromRep(aAbs | productSign);
46 else return fromRep(qnanRep);
51 if (aAbs) return fromRep(bAbs | productSign);
53 else return fromRep(qnanRep);
57 if (!aAbs) return fromRep(productSign);
59 if (!bAbs) return fromRep(productSign);
90 if (productExponent >= maxExponent) return fromRep(infRep | productSign);
111 return fromRep(productHi)
    [all...]
divdf3.c 41 if (aAbs > infRep) return fromRep(toRep(a) | quietBit);
43 if (bAbs > infRep) return fromRep(toRep(b) | quietBit);
47 if (bAbs == infRep) return fromRep(qnanRep);
49 else return fromRep(aAbs | quotientSign);
53 if (bAbs == infRep) return fromRep(quotientSign);
57 if (!bAbs) return fromRep(qnanRep);
59 else return fromRep(quotientSign);
62 if (!bAbs) return fromRep(infRep | quotientSign);
163 return fromRep(infRep | quotientSign);
169 return fromRep(quotientSign)
    [all...]
divsf3.c 41 if (aAbs > infRep) return fromRep(toRep(a) | quietBit);
43 if (bAbs > infRep) return fromRep(toRep(b) | quietBit);
47 if (bAbs == infRep) return fromRep(qnanRep);
49 else return fromRep(aAbs | quotientSign);
53 if (bAbs == infRep) return fromRep(quotientSign);
57 if (!bAbs) return fromRep(qnanRep);
59 else return fromRep(quotientSign);
62 if (!bAbs) return fromRep(infRep | quotientSign);
148 return fromRep(infRep | quotientSign);
154 return fromRep(quotientSign)
    [all...]
floatsidf.c 29 return fromRep(0);
51 return fromRep(result | sign);
floatunsidf.c 28 if (a == 0) return fromRep(0);
40 return fromRep(result);
floatunsisf.c 28 if (a == 0) return fromRep(0);
48 return fromRep(result);
subdf3.c 26 return __adddf3(a, fromRep(toRep(b) ^ signBit));
subsf3.c 25 return __addsf3(a, fromRep(toRep(b) ^ signBit));
adddf3.c 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));
102 if (aSignificand == 0) return fromRep(0);
126 if (aExponent >= maxExponent) return fromRep(infRep | resultSign);
151 return fromRep(result);
addsf3.c 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));
101 if (aSignificand == 0) return fromRep(0);
125 if (aExponent >= maxExponent) return fromRep(infRep | resultSign);
150 return fromRep(result);
floatsisf.c 29 return fromRep(0);
57 return fromRep(result | sign);
fp_lib.h 111 static inline fp_t fromRep(rep_t x) {

Completed in 59 milliseconds