HomeSort by: relevance | last modified time | path
    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