OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:absResult
(Results
1 - 4
of
4
) sorted by null
/external/compiler-rt/lib/
truncdfsf2.c
104
dst_rep_t
absResult
;
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
= (dst_rep_t)dstInfExp << dstSigBits
[
all
...]
extendsfdf2.c
98
dst_rep_t
absResult
;
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
= 0
[
all
...]
divdf3.c
175
rep_t
absResult
= quotient & significandMask;
177
absResult
|= (rep_t)writtenExponent << significandBits;
179
absResult
+= round;
181
const double result = fromRep(
absResult
| quotientSign);
divsf3.c
160
rep_t
absResult
= quotient & significandMask;
162
absResult
|= (rep_t)writtenExponent << significandBits;
164
absResult
+= round;
166
return fromRep(
absResult
| quotientSign);
Completed in 35 milliseconds