Home
last modified time | relevance | path

Searched refs:aExponent (Results 1 – 5 of 5) sorted by relevance

/external/compiler-rt/lib/builtins/
Dfp_add_impl.inc60 int aExponent = aRep >> significandBits & maxExponent;
66 if (aExponent == 0) aExponent = normalize(&aSignificand);
83 const unsigned int align = aExponent - bExponent;
102 aExponent -= shift;
113 aExponent += 1;
118 if (aExponent >= maxExponent) return fromRep(infRep | resultSign);
120 if (aExponent <= 0) {
123 const int shift = 1 - aExponent;
126 aExponent = 0;
136 result |= (rep_t)aExponent << significandBits;
Ddivsf3.c27 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent; in ARM_EABI_FNALIAS() local
36 if (aExponent-1U >= maxExponent-1U || bExponent-1U >= maxExponent-1U) { in ARM_EABI_FNALIAS()
77 int quotientExponent = aExponent - bExponent + scale; in ARM_EABI_FNALIAS()
Ddivdf3.c27 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent; in ARM_EABI_FNALIAS() local
36 if (aExponent-1U >= maxExponent-1U || bExponent-1U >= maxExponent-1U) { in ARM_EABI_FNALIAS()
77 int quotientExponent = aExponent - bExponent + scale; in ARM_EABI_FNALIAS()
Ddivtf3.c25 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent; in __divtf3() local
34 if (aExponent-1U >= maxExponent-1U || bExponent-1U >= maxExponent-1U) { in __divtf3()
75 int quotientExponent = aExponent - bExponent + scale; in __divtf3()
Dfp_mul_impl.inc18 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent;
27 if (aExponent-1U >= maxExponent-1U || bExponent-1U >= maxExponent-1U) {
78 int productExponent = aExponent + bExponent - exponentBias + scale;