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

  /external/compiler-rt/lib/builtins/
divdf3.c 27 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent;
36 if (aExponent-1U >= maxExponent-1U || bExponent-1U >= maxExponent-1U) {
77 int quotientExponent = aExponent - bExponent + scale;
divsf3.c 27 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent;
36 if (aExponent-1U >= maxExponent-1U || bExponent-1U >= maxExponent-1U) {
77 int quotientExponent = aExponent - bExponent + scale;
divtf3.c 25 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent;
34 if (aExponent-1U >= maxExponent-1U || bExponent-1U >= maxExponent-1U) {
75 int quotientExponent = aExponent - bExponent + scale;

Completed in 77 milliseconds