Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_compare_impl.inc46 const srep_t bInt = toRep(b);
48 const rep_t bAbs = bInt & absMask;
60 if ((aInt & bInt) >= 0) {
61 if (aInt < bInt)
63 else if (aInt == bInt)
72 if (aInt > bInt)
74 else if (aInt == bInt)
90 const srep_t bInt = toRep(b);
92 const rep_t bAbs = bInt & absMask;
98 if ((aInt & bInt) >= 0) {
[all …]
/freebsd/contrib/sqlite3/
H A Dsqlite3.c93168 int bInt, /* True for integrity_check-style search */ argument
93223 if( vdbeSkipField(mask, ii, &p->aMem[ii], &mem, bInt)==0 ){
221932 int bInt; /* True for rtree_i32 table */ member
222137 if( pCheck->bInt ? c1.i>c2.i : c1.f>c2.f ){
222147 if( (pCheck->bInt ? c1.i<p1.i : c1.f<p1.f)
222148 || (pCheck->bInt ? c2.i>p2.i : c2.f>p2.f)
222288 check.bInt = (sqlite3_column_type(pStmt, 1)==SQLITE_INTEGER);