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

  /external/compiler-rt/lib/builtins/
divtf3.c 27 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
29 rep_t aSignificand = toRep(a) & significandMask;
30 rep_t bSignificand = toRep(b) & significandMask;
36 const rep_t aAbs = toRep(a) & absMask;
37 const rep_t bAbs = toRep(b) & absMask;
92 correction64 = -((rep_t)recip64 * q63b >> 64);
93 recip64 = (rep_t)recip64 * correction64 >> 63;
94 correction64 = -((rep_t)recip64 * q63b >> 64);
95 recip64 = (rep_t)recip64 * correction64 >> 63;
96 correction64 = -((rep_t)recip64 * q63b >> 64)
    [all...]
floatsisf.c 33 rep_t sign = 0;
41 rep_t result;
46 result = (rep_t)a << shift ^ implicitBit;
49 result = (rep_t)a >> shift ^ implicitBit;
50 rep_t round = (rep_t)a << (typeWidth - shift);
56 result += (rep_t)(exponent + exponentBias) << significandBits;
floatunsisf.c 33 rep_t result;
38 result = (rep_t)a << shift ^ implicitBit;
41 result = (rep_t)a >> shift ^ implicitBit;
42 rep_t round = (rep_t)a << (typeWidth - shift);
48 result += (rep_t)(exponent + exponentBias) << significandBits;
floatunsidf.c 33 rep_t result;
37 result = (rep_t)a << shift ^ implicitBit;
40 result += (rep_t)(exponent + exponentBias) << significandBits;
floatunsitf.c 29 rep_t result;
33 result = (rep_t)a << shift ^ implicitBit;
36 result += (rep_t)(exponent + exponentBias) << significandBits;
floatsidf.c 33 rep_t sign = 0;
41 rep_t result;
47 result = (rep_t)(unsigned int)a << shift ^ implicitBit;
50 result += (rep_t)(exponent + exponentBias) << significandBits;
floatsitf.c 29 rep_t sign = 0;
38 rep_t result;
44 result = (rep_t)aAbs << shift ^ implicitBit;
47 result += (rep_t)(exponent + exponentBias) << significandBits;
fp_lib.h 43 typedef uint32_t rep_t; typedef
49 static inline int rep_clz(rep_t a) {
54 static inline void wideMultiply(rep_t a, rep_t b, rep_t *hi, rep_t *lo) {
63 typedef uint64_t rep_t; typedef
69 static inline int rep_clz(rep_t a) {
86 static inline void wideMultiply(rep_t a, rep_t b, rep_t *hi, rep_t *lo)
107 typedef __uint128_t rep_t; typedef
    [all...]
divdf3.c 29 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
31 rep_t aSignificand = toRep(a) & significandMask;
32 rep_t bSignificand = toRep(b) & significandMask;
38 const rep_t aAbs = toRep(a) & absMask;
39 const rep_t bAbs = toRep(b) & absMask;
135 rep_t quotient, quotientLo;
151 rep_t residual;
176 rep_t absResult = quotient & significandMask;
178 absResult |= (rep_t)writtenExponent << significandBits;
divsf3.c 29 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
31 rep_t aSignificand = toRep(a) & significandMask;
32 rep_t bSignificand = toRep(b) & significandMask;
38 const rep_t aAbs = toRep(a) & absMask;
39 const rep_t bAbs = toRep(b) & absMask;
121 rep_t quotient = (uint64_t)reciprocal*(aSignificand << 1) >> 32;
136 rep_t residual;
161 rep_t absResult = quotient & significandMask;
163 absResult |= (rep_t)writtenExponent << significandBits;
comparetf2.c 55 const rep_t aAbs = aInt & absMask;
56 const rep_t bAbs = bInt & absMask;
93 const rep_t aAbs = aInt & absMask;
94 const rep_t bAbs = bInt & absMask;
110 const rep_t aAbs = toRep(a) & absMask;
111 const rep_t bAbs = toRep(b) & absMask;
comparedf2.c 55 const rep_t aAbs = aInt & absMask;
56 const rep_t bAbs = bInt & absMask;
95 const rep_t aAbs = aInt & absMask;
96 const rep_t bAbs = bInt & absMask;
115 const rep_t aAbs = toRep(a) & absMask;
116 const rep_t bAbs = toRep(b) & absMask;
comparesf2.c 55 const rep_t aAbs = aInt & absMask;
56 const rep_t bAbs = bInt & absMask;
95 const rep_t aAbs = aInt & absMask;
96 const rep_t bAbs = bInt & absMask;
115 const rep_t aAbs = toRep(a) & absMask;
116 const rep_t bAbs = toRep(b) & absMask;

Completed in 42 milliseconds