Searched refs:bAbs (Results 1 - 8 of 8) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dcomparetf2.c50 const rep_t bAbs = bInt & absMask; local
53 if (aAbs > infRep || bAbs > infRep)
57 if ((aAbs | bAbs) == 0)
103 const rep_t bAbs = bInt & absMask; local
105 if (aAbs > infRep || bAbs > infRep)
107 if ((aAbs | bAbs) == 0)
130 const rep_t bAbs = toRep(b) & absMask; local
131 return aAbs > infRep || bAbs > infRep;
H A Dcomparedf2.c49 const rep_t bAbs = bInt & absMask; local
52 if (aAbs > infRep || bAbs > infRep)
56 if ((aAbs | bAbs) == 0)
104 const rep_t bAbs = bInt & absMask; local
106 if (aAbs > infRep || bAbs > infRep)
108 if ((aAbs | bAbs) == 0)
132 const rep_t bAbs = toRep(b) & absMask; local
133 return aAbs > infRep || bAbs > infRep;
H A Dcomparesf2.c49 const rep_t bAbs = bInt & absMask; local
52 if (aAbs > infRep || bAbs > infRep)
56 if ((aAbs | bAbs) == 0)
104 const rep_t bAbs = bInt & absMask; local
106 if (aAbs > infRep || bAbs > infRep)
108 if ((aAbs | bAbs) == 0)
132 const rep_t bAbs = toRep(b) & absMask; local
133 return aAbs > infRep || bAbs > infRep;
H A Ddivsf3.c36 const rep_t bAbs = toRep(b) & absMask; local
42 if (bAbs > infRep)
47 if (bAbs == infRep)
55 if (bAbs == infRep)
60 if (!bAbs)
67 if (!bAbs)
75 if (bAbs < implicitBit)
H A Dfp_mul_impl.inc30 const rep_t bAbs = toRep(b) & absMask;
36 if (bAbs > infRep)
41 if (bAbs)
48 if (bAbs == infRep) {
51 return fromRep(bAbs | productSign);
61 if (!bAbs)
69 if (bAbs < implicitBit)
H A Ddivdf3.c36 const rep_t bAbs = toRep(b) & absMask; local
42 if (bAbs > infRep)
47 if (bAbs == infRep)
55 if (bAbs == infRep)
60 if (!bAbs)
67 if (!bAbs)
75 if (bAbs < implicitBit)
H A Ddivtf3.c37 const rep_t bAbs = toRep(b) & absMask; local
43 if (bAbs > infRep)
48 if (bAbs == infRep)
56 if (bAbs == infRep)
61 if (!bAbs)
68 if (!bAbs)
76 if (bAbs < implicitBit)
H A Dfp_add_impl.inc21 const rep_t bAbs = bRep & absMask;
25 bAbs - REP_C(1) >= infRep - REP_C(1)) {
30 if (bAbs > infRep)
43 if (bAbs == infRep)
49 if (!bAbs)
56 if (!bAbs)
61 if (bAbs > aAbs) {

Completed in 166 milliseconds