Searched refs:quotientSign (Results 1 - 3 of 3) sorted by relevance

/freebsd-11.0-release/contrib/compiler-rt/lib/builtins/
H A Ddivdf3.c29 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit; local
50 else return fromRep(aAbs | quotientSign);
54 if (bAbs == infRep) return fromRep(quotientSign);
60 else return fromRep(quotientSign);
63 if (!bAbs) return fromRep(infRep | quotientSign);
164 return fromRep(infRep | quotientSign);
170 return fromRep(quotientSign);
182 const double result = fromRep(absResult | quotientSign);
H A Ddivsf3.c29 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit; local
50 else return fromRep(aAbs | quotientSign);
54 if (bAbs == infRep) return fromRep(quotientSign);
60 else return fromRep(quotientSign);
63 if (!bAbs) return fromRep(infRep | quotientSign);
149 return fromRep(infRep | quotientSign);
155 return fromRep(quotientSign);
167 return fromRep(absResult | quotientSign);
H A Ddivtf3.c27 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit; local
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 106 milliseconds