HomeSort by: relevance | last modified time | path
    Searched defs:quotientSign (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
divsf3.c 27 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
48 else return fromRep(aAbs | quotientSign);
52 if (bAbs == infRep) return fromRep(quotientSign);
58 else return fromRep(quotientSign);
61 if (!bAbs) return fromRep(infRep | quotientSign);
147 return fromRep(infRep | quotientSign);
153 return fromRep(quotientSign);
165 return fromRep(absResult | quotientSign);
divdf3.c 27 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
48 else return fromRep(aAbs | quotientSign);
52 if (bAbs == infRep) return fromRep(quotientSign);
58 else return fromRep(quotientSign);
61 if (!bAbs) return fromRep(infRep | quotientSign);
162 return fromRep(infRep | quotientSign);
168 return fromRep(quotientSign);
180 const double result = fromRep(absResult | quotientSign);
divtf3.c 27 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
48 else return fromRep(aAbs | quotientSign);
52 if (bAbs == infRep) return fromRep(quotientSign);
58 else return fromRep(quotientSign);
61 if (!bAbs) return fromRep(infRep | quotientSign);
182 return fromRep(infRep | quotientSign);
187 return fromRep(quotientSign);
198 const long double result = fromRep(absResult | quotientSign);

Completed in 11 milliseconds