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

  /external/compiler-rt/lib/builtins/
divdf3.c 31 rep_t aSignificand = toRep(a) & significandMask;
68 if (aAbs < implicitBit) scale += normalize(&aSignificand);
75 aSignificand |= implicitBit;
136 wideMultiply(aSignificand << 2, reciprocal, &quotient, &quotientLo);
153 residual = (aSignificand << 53) - quotient * bSignificand;
157 residual = (aSignificand << 52) - quotient * bSignificand;
divsf3.c 31 rep_t aSignificand = toRep(a) & significandMask;
68 if (aAbs < implicitBit) scale += normalize(&aSignificand);
75 aSignificand |= implicitBit;
121 rep_t quotient = (uint64_t)reciprocal*(aSignificand << 1) >> 32;
138 residual = (aSignificand << 24) - quotient * bSignificand;
142 residual = (aSignificand << 23) - quotient * bSignificand;
divtf3.c 29 rep_t aSignificand = toRep(a) & significandMask;
66 if (aAbs < implicitBit) scale += normalize(&aSignificand);
73 aSignificand |= implicitBit;
150 wideMultiply(aSignificand << 2, reciprocal, &quotient, &quotientLo);
170 residual = (aSignificand << 113) - qb;
175 residual = (aSignificand << 112) - qb;

Completed in 238 milliseconds