Home
last modified time | relevance | path

Searched refs:bAbs (Results 1 – 9 of 9) sorted by relevance

/external/compiler-rt/lib/builtins/
Dcomparedf2.c56 const rep_t bAbs = bInt & absMask; in __ledf2() local
59 if (aAbs > infRep || bAbs > infRep) return LE_UNORDERED; in __ledf2()
62 if ((aAbs | bAbs) == 0) return LE_EQUAL; in __ledf2()
101 const rep_t bAbs = bInt & absMask; in __gedf2() local
103 if (aAbs > infRep || bAbs > infRep) return GE_UNORDERED; in __gedf2()
104 if ((aAbs | bAbs) == 0) return GE_EQUAL; in __gedf2()
121 const rep_t bAbs = toRep(b) & absMask; in ARM_EABI_FNALIAS() local
122 return aAbs > infRep || bAbs > infRep; in ARM_EABI_FNALIAS()
Dcomparesf2.c56 const rep_t bAbs = bInt & absMask; in __lesf2() local
59 if (aAbs > infRep || bAbs > infRep) return LE_UNORDERED; in __lesf2()
62 if ((aAbs | bAbs) == 0) return LE_EQUAL; in __lesf2()
101 const rep_t bAbs = bInt & absMask; in __gesf2() local
103 if (aAbs > infRep || bAbs > infRep) return GE_UNORDERED; in __gesf2()
104 if ((aAbs | bAbs) == 0) return GE_EQUAL; in __gesf2()
121 const rep_t bAbs = toRep(b) & absMask; in ARM_EABI_FNALIAS() local
122 return aAbs > infRep || bAbs > infRep; in ARM_EABI_FNALIAS()
Dcomparetf2.c56 const rep_t bAbs = bInt & absMask; in __letf2() local
59 if (aAbs > infRep || bAbs > infRep) return LE_UNORDERED; in __letf2()
62 if ((aAbs | bAbs) == 0) return LE_EQUAL; in __letf2()
99 const rep_t bAbs = bInt & absMask; in __getf2() local
101 if (aAbs > infRep || bAbs > infRep) return GE_UNORDERED; in __getf2()
102 if ((aAbs | bAbs) == 0) return GE_EQUAL; in __getf2()
116 const rep_t bAbs = toRep(b) & absMask; in __unordtf2() local
117 return aAbs > infRep || bAbs > infRep; in __unordtf2()
Ddivsf3.c39 const rep_t bAbs = toRep(b) & absMask; in ARM_EABI_FNALIAS() local
44 if (bAbs > infRep) return fromRep(toRep(b) | quietBit); in ARM_EABI_FNALIAS()
48 if (bAbs == infRep) return fromRep(qnanRep); in ARM_EABI_FNALIAS()
54 if (bAbs == infRep) return fromRep(quotientSign); in ARM_EABI_FNALIAS()
58 if (!bAbs) return fromRep(qnanRep); in ARM_EABI_FNALIAS()
63 if (!bAbs) return fromRep(infRep | quotientSign); in ARM_EABI_FNALIAS()
69 if (bAbs < implicitBit) scale -= normalize(&bSignificand); in ARM_EABI_FNALIAS()
Ddivdf3.c39 const rep_t bAbs = toRep(b) & absMask; in ARM_EABI_FNALIAS() local
44 if (bAbs > infRep) return fromRep(toRep(b) | quietBit); in ARM_EABI_FNALIAS()
48 if (bAbs == infRep) return fromRep(qnanRep); in ARM_EABI_FNALIAS()
54 if (bAbs == infRep) return fromRep(quotientSign); in ARM_EABI_FNALIAS()
58 if (!bAbs) return fromRep(qnanRep); in ARM_EABI_FNALIAS()
63 if (!bAbs) return fromRep(infRep | quotientSign); in ARM_EABI_FNALIAS()
69 if (bAbs < implicitBit) scale -= normalize(&bSignificand); in ARM_EABI_FNALIAS()
Ddivtf3.c37 const rep_t bAbs = toRep(b) & absMask; in __divtf3() local
42 if (bAbs > infRep) return fromRep(toRep(b) | quietBit); in __divtf3()
46 if (bAbs == infRep) return fromRep(qnanRep); in __divtf3()
52 if (bAbs == infRep) return fromRep(quotientSign); in __divtf3()
56 if (!bAbs) return fromRep(qnanRep); in __divtf3()
61 if (!bAbs) return fromRep(infRep | quotientSign); in __divtf3()
67 if (bAbs < implicitBit) scale -= normalize(&bSignificand); in __divtf3()
Dfp_add_impl.inc21 const rep_t bAbs = bRep & absMask;
25 bAbs - REP_C(1) >= infRep - REP_C(1)) {
29 if (bAbs > infRep) return fromRep(toRep(b) | quietBit);
39 if (bAbs == infRep) return b;
44 if (!bAbs) return fromRep(toRep(a) & toRep(b));
49 if (!bAbs) return a;
53 if (bAbs > aAbs) {
Dfp_mul_impl.inc30 const rep_t bAbs = toRep(b) & absMask;
35 if (bAbs > infRep) return fromRep(toRep(b) | quietBit);
39 if (bAbs) return fromRep(aAbs | productSign);
44 if (bAbs == infRep) {
46 if (aAbs) return fromRep(bAbs | productSign);
54 if (!bAbs) return fromRep(productSign);
60 if (bAbs < implicitBit) scale += normalize(&bSignificand);
/external/boringssl/src/ssl/test/runner/ed25519/internal/edwards25519/
Dedwards25519.go952 bAbs := b - (((-bNegative) & b) << 1)
956 PreComputedGroupElementCMove(t, &base[pos][i], equal(bAbs, i+1))