Searched defs:aExponent (Results 1 - 6 of 6) sorted by relevance

/external/compiler-rt/lib/
H A Dmuldf3.c23 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent; local
32 if (aExponent-1U >= maxExponent-1U || bExponent-1U >= maxExponent-1U) {
83 int productExponent = aExponent + bExponent - exponentBias + scale;
H A Dmulsf3.c23 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent; local
32 if (aExponent-1U >= maxExponent-1U || bExponent-1U >= maxExponent-1U) {
83 int productExponent = aExponent + bExponent - exponentBias + scale;
H A Dadddf3.c65 int aExponent = aRep >> significandBits & maxExponent; local
71 if (aExponent == 0) aExponent = normalize(&aSignificand);
88 const unsigned int align = aExponent - bExponent;
109 aExponent -= shift;
121 aExponent += 1;
126 if (aExponent >= maxExponent) return fromRep(infRep | resultSign);
128 if (aExponent <= 0) {
131 const int shift = 1 - aExponent;
134 aExponent
[all...]
H A Daddsf3.c64 int aExponent = aRep >> significandBits & maxExponent; local
70 if (aExponent == 0) aExponent = normalize(&aSignificand);
87 const unsigned int align = aExponent - bExponent;
108 aExponent -= shift;
120 aExponent += 1;
125 if (aExponent >= maxExponent) return fromRep(infRep | resultSign);
127 if (aExponent <= 0) {
130 const int shift = 1 - aExponent;
133 aExponent
[all...]
H A Ddivsf3.c26 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent; local
35 if (aExponent-1U >= maxExponent-1U || bExponent-1U >= maxExponent-1U) {
76 int quotientExponent = aExponent - bExponent + scale;
H A Ddivdf3.c26 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent; local
35 if (aExponent-1U >= maxExponent-1U || bExponent-1U >= maxExponent-1U) {
76 int quotientExponent = aExponent - bExponent + scale;

Completed in 79 milliseconds