Searched refs:implicitBit (Results 1 – 16 of 16) sorted by relevance
66 if (aAbs < implicitBit) scale += normalize(&aSignificand); in __divsf3()67 if (bAbs < implicitBit) scale -= normalize(&bSignificand); in __divsf3()73 aSignificand |= implicitBit; in __divsf3()74 bSignificand |= implicitBit; in __divsf3()135 if (quotient < (implicitBit << 1)) { in __divsf3()
66 if (aAbs < implicitBit) scale += normalize(&aSignificand); in __divdf3()67 if (bAbs < implicitBit) scale -= normalize(&bSignificand); in __divdf3()73 aSignificand |= implicitBit; in __divdf3()74 bSignificand |= implicitBit; in __divdf3()150 if (quotient < (implicitBit << 1)) { in __divdf3()
66 if (aAbs < implicitBit) scale += normalize(&aSignificand); in __divtf3()67 if (bAbs < implicitBit) scale -= normalize(&bSignificand); in __divtf3()73 aSignificand |= implicitBit; in __divtf3()74 bSignificand |= implicitBit; in __divtf3()168 if (quotient < (implicitBit << 1)) { in __divtf3()
59 if (aAbs < implicitBit) scale += normalize(&aSignificand);60 if (bAbs < implicitBit) scale += normalize(&bSignificand);66 aSignificand |= implicitBit;67 bSignificand |= implicitBit;81 if (productHi & implicitBit) productExponent++;
78 aSignificand = (aSignificand | implicitBit) << 3;79 bSignificand = (bSignificand | implicitBit) << 3;99 if (aSignificand < implicitBit << 3) {100 const int shift = rep_clz(aSignificand) - rep_clz(implicitBit << 3);110 if (aSignificand & implicitBit << 4) {
36 result = (rep_t)a << shift ^ implicitBit; in __floatunsisf()39 result = (rep_t)a >> shift ^ implicitBit; in __floatunsisf()
44 result = (rep_t)a << shift ^ implicitBit; in __floatsisf()47 result = (rep_t)a >> shift ^ implicitBit; in __floatsisf()
221 #define implicitBit (REP_C(1) << significandBits) macro222 #define significandMask (implicitBit - 1U)228 #define quietBit (implicitBit >> 1)242 const int shift = rep_clz(*significand) - rep_clz(implicitBit); in normalize()
33 result = (rep_t)a << shift ^ implicitBit; in __floatunsitf()
33 result = (rep_t)a << shift ^ implicitBit; in __floatunditf()
42 result = (rep_t)aAbs << shift ^ implicitBit; in __floatsitf()
35 result = (rep_t)a << shift ^ implicitBit; in __floatunsidf()
42 result = (rep_t)aAbs << shift ^ implicitBit; in __floatditf()
45 result = (rep_t)(unsigned int)a << shift ^ implicitBit; in __floatsidf()
23 const rep_t significand = (aAbs & significandMask) | implicitBit;
25 const rep_t significand = (aAbs & significandMask) | implicitBit;