Searched refs:absResult (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.2-release/contrib/compiler-rt/lib/
H A Dtruncdfsf2.c104 dst_rep_t absResult; local
110 absResult = aAbs >> (srcSigBits - dstSigBits);
111 absResult -= (dst_rep_t)(srcExpBias - dstExpBias) << dstSigBits;
117 absResult++;
121 absResult += absResult & 1;
128 absResult = (dst_rep_t)dstInfExp << dstSigBits;
129 absResult |= dstQNaN;
130 absResult |= aAbs & dstNaNCode;
135 absResult
[all...]
H A Dextendsfdf2.c98 dst_rep_t absResult; local
104 absResult = (dst_rep_t)aAbs << (dstSigBits - srcSigBits);
105 absResult += (dst_rep_t)(dstExpBias - srcExpBias) << dstSigBits;
113 absResult = (dst_rep_t)dstInfExp << dstSigBits;
114 absResult |= (dst_rep_t)(aAbs & srcQNaN) << (dstSigBits - srcSigBits);
115 absResult |= aAbs & srcNaNCode;
123 absResult = (dst_rep_t)aAbs << (dstSigBits - srcSigBits + scale);
124 absResult ^= dstMinNormal;
126 absResult |= (dst_rep_t)resultExponent << dstSigBits;
131 absResult
[all...]
H A Ddivdf3.c175 rep_t absResult = quotient & significandMask; local
177 absResult |= (rep_t)writtenExponent << significandBits;
179 absResult += round;
181 const double result = fromRep(absResult | quotientSign);
H A Ddivsf3.c160 rep_t absResult = quotient & significandMask; local
162 absResult |= (rep_t)writtenExponent << significandBits;
164 absResult += round;
166 return fromRep(absResult | quotientSign);

Completed in 43 milliseconds