Home
last modified time | relevance | path

Searched refs:bInt (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/compiler-rt/lib/builtins/
H A Dcomparetf2.c54 const srep_t bInt = toRep(b); in __letf2() local
56 const rep_t bAbs = bInt & absMask; in __letf2()
66 if ((aInt & bInt) >= 0) { in __letf2()
67 if (aInt < bInt) return LE_LESS; in __letf2()
68 else if (aInt == bInt) return LE_EQUAL; in __letf2()
76 if (aInt > bInt) return LE_LESS; in __letf2()
97 const srep_t bInt = toRep(b); in __getf2() local
99 const rep_t bAbs = bInt & absMask; in __getf2()
103 if ((aInt & bInt) >= 0) { in __getf2()
104 if (aInt < bInt) return GE_LESS; in __getf2()
[all …]
H A Dcomparedf2.c54 const srep_t bInt = toRep(b); in __ledf2() local
56 const rep_t bAbs = bInt & absMask; in __ledf2()
66 if ((aInt & bInt) >= 0) { in __ledf2()
67 if (aInt < bInt) return LE_LESS; in __ledf2()
68 else if (aInt == bInt) return LE_EQUAL; in __ledf2()
77 if (aInt > bInt) return LE_LESS; in __ledf2()
99 const srep_t bInt = toRep(b); in __gedf2() local
101 const rep_t bAbs = bInt & absMask; in __gedf2()
105 if ((aInt & bInt) >= 0) { in __gedf2()
106 if (aInt < bInt) return GE_LESS; in __gedf2()
[all …]
H A Dcomparesf2.c54 const srep_t bInt = toRep(b); in __lesf2() local
56 const rep_t bAbs = bInt & absMask; in __lesf2()
66 if ((aInt & bInt) >= 0) { in __lesf2()
67 if (aInt < bInt) return LE_LESS; in __lesf2()
68 else if (aInt == bInt) return LE_EQUAL; in __lesf2()
77 if (aInt > bInt) return LE_LESS; in __lesf2()
99 const srep_t bInt = toRep(b); in __gesf2() local
101 const rep_t bAbs = bInt & absMask; in __gesf2()
105 if ((aInt & bInt) >= 0) { in __gesf2()
106 if (aInt < bInt) return GE_LESS; in __gesf2()
[all …]
/freebsd-12.1/contrib/sqlite3/
H A Dsqlite3.c191079 int bInt; /* True for rtree_i32 table */
191284 if( pCheck->bInt ? c1.i>c2.i : c1.f>c2.f ){
191294 if( (pCheck->bInt ? c1.i<p1.i : c1.f<p1.f)
191295 || (pCheck->bInt ? c2.i>p2.i : c2.f>p2.f)
191444 check.bInt = (sqlite3_column_type(pStmt, 1)==SQLITE_INTEGER);