Home
last modified time | relevance | path

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

/external/compiler-rt/lib/builtins/
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()
77 else if (aInt == bInt) return LE_EQUAL; 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()
[all …]
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()
78 else if (aInt == bInt) return LE_EQUAL; 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()
[all …]
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()
78 else if (aInt == bInt) return LE_EQUAL; 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()
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c170675 int bInt; /* True for rtree_i32 table */
170881 if( pCheck->bInt ? c1.i>c2.i : c1.f>c2.f ){
170891 if( (pCheck->bInt ? c1.i<p1.i : c1.f<p1.f)
170892 || (pCheck->bInt ? c2.i>p2.i : c2.f>p2.f)
171030 check.bInt = (sqlite3_column_type(pStmt, 1)==SQLITE_INTEGER);
/external/sqlite/dist/
Dsqlite3.c170703 int bInt; /* True for rtree_i32 table */
170909 if( pCheck->bInt ? c1.i>c2.i : c1.f>c2.f ){
170919 if( (pCheck->bInt ? c1.i<p1.i : c1.f<p1.f)
170920 || (pCheck->bInt ? c2.i>p2.i : c2.f>p2.f)
171058 check.bInt = (sqlite3_column_type(pStmt, 1)==SQLITE_INTEGER);