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

  /external/compiler-rt/lib/builtins/
divdf3.c 32 rep_t bSignificand = toRep(b) & significandMask;
69 if (bAbs < implicitBit) scale -= normalize(&bSignificand);
76 bSignificand |= implicitBit;
83 const uint32_t q31b = bSignificand >> 21;
109 const uint32_t q63blo = bSignificand << 11;
153 residual = (aSignificand << 53) - quotient * bSignificand;
157 residual = (aSignificand << 52) - quotient * bSignificand;
174 const bool round = (residual << 1) > bSignificand;
divsf3.c 32 rep_t bSignificand = toRep(b) & significandMask;
69 if (bAbs < implicitBit) scale -= normalize(&bSignificand);
76 bSignificand |= implicitBit;
83 uint32_t q31b = bSignificand << 8;
138 residual = (aSignificand << 24) - quotient * bSignificand;
142 residual = (aSignificand << 23) - quotient * bSignificand;
159 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 155 milliseconds