Searched refs:absResult (Results 1 - 5 of 5) sorted by last modified time

/external/compiler-rt/lib/builtins/
H A Ddivdf3.c176 rep_t absResult = quotient & significandMask; local
178 absResult |= (rep_t)writtenExponent << significandBits;
180 absResult += round;
182 const double result = fromRep(absResult | quotientSign);
H A Ddivsf3.c161 rep_t absResult = quotient & significandMask; local
163 absResult |= (rep_t)writtenExponent << significandBits;
165 absResult += round;
167 return fromRep(absResult | quotientSign);
H A Ddivtf3.c192 rep_t absResult = quotient & significandMask; local
194 absResult |= (rep_t)writtenExponent << significandBits;
196 absResult += round;
198 const long double result = fromRep(absResult | quotientSign);
H A Dfp_extend_impl.inc67 dst_rep_t absResult;
75 absResult = (dst_rep_t)aAbs << (dstSigBits - srcSigBits);
76 absResult += (dst_rep_t)(dstExpBias - srcExpBias) << dstSigBits;
84 absResult = (dst_rep_t)dstInfExp << dstSigBits;
85 absResult |= (dst_rep_t)(aAbs & srcQNaN) << (dstSigBits - srcSigBits);
86 absResult |= (dst_rep_t)(aAbs & srcNaNCode) << (dstSigBits - srcSigBits);
94 absResult = (dst_rep_t)aAbs << (dstSigBits - srcSigBits + scale);
95 absResult ^= dstMinNormal;
97 absResult |= (dst_rep_t)resultExponent << dstSigBits;
102 absResult
[all...]
H A Dfp_trunc_impl.inc77 dst_rep_t absResult;
83 absResult = aAbs >> (srcSigBits - dstSigBits);
84 absResult -= (dst_rep_t)(srcExpBias - dstExpBias) << dstSigBits;
89 absResult++;
92 absResult += absResult & 1;
98 absResult = (dst_rep_t)dstInfExp << dstSigBits;
99 absResult |= dstQNaN;
100 absResult |= ((aAbs & srcNaNCode) >> (srcSigBits - dstSigBits)) & dstNaNCode;
104 absResult
[all...]

Completed in 148 milliseconds