OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:absResult
(Results
1 - 3
of
3
) sorted by relevancy
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/
divsf3.c
159
rep_t
absResult
= quotient & significandMask;
161
absResult
|= (rep_t)writtenExponent << significandBits;
163
absResult
+= round;
165
return fromRep(
absResult
| quotientSign);
divdf3.c
174
rep_t
absResult
= quotient & significandMask;
176
absResult
|= (rep_t)writtenExponent << significandBits;
178
absResult
+= round;
180
const double result = fromRep(
absResult
| quotientSign);
divtf3.c
192
rep_t
absResult
= quotient & significandMask;
194
absResult
|= (rep_t)writtenExponent << significandBits;
196
absResult
+= round;
198
const long double result = fromRep(
absResult
| quotientSign);
Completed in 179 milliseconds
Indexes created Sat Sep 20 22:09:52 GMT 2025