HomeSort by: relevance | last modified time | path
    Searched defs:bSignificand (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
divsf3.c 30 rep_t bSignificand = toRep(b) & significandMask;
67 if (bAbs < implicitBit) scale -= normalize(&bSignificand);
74 bSignificand |= implicitBit;
81 uint32_t q31b = bSignificand << 8;
136 residual = (aSignificand << 24) - quotient * bSignificand;
140 residual = (aSignificand << 23) - quotient * bSignificand;
157 const bool round = (residual << 1) > bSignificand;
divdf3.c 30 rep_t bSignificand = toRep(b) & significandMask;
67 if (bAbs < implicitBit) scale -= normalize(&bSignificand);
74 bSignificand |= implicitBit;
81 const uint32_t q31b = bSignificand >> 21;
107 const uint32_t q63blo = bSignificand << 11;
151 residual = (aSignificand << 53) - quotient * bSignificand;
155 residual = (aSignificand << 52) - quotient * bSignificand;
172 const bool round = (residual << 1) > bSignificand;
divtf3.c 30 rep_t bSignificand = toRep(b) & significandMask;
67 if (bAbs < implicitBit) scale -= normalize(&bSignificand);
74 bSignificand |= implicitBit;
81 const uint64_t q63b = bSignificand >> 49;
111 const uint64_t q127blo = bSignificand << 15;
169 wideMultiply(quotient, bSignificand, &dummy, &qb);
174 wideMultiply(quotient, bSignificand, &dummy, &qb);
190 const bool round = (residual << 1) >= bSignificand;

Completed in 40 milliseconds