Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dvdbe.c4720 r.default_rc = ((1 & (oc - OP_SeekLT)) ? -1 : +1); in sqlite3VdbeExec()
4721 assert( oc!=OP_SeekGT || r.default_rc==-1 ); in sqlite3VdbeExec()
4722 assert( oc!=OP_SeekLE || r.default_rc==-1 ); in sqlite3VdbeExec()
4723 assert( oc!=OP_SeekGE || r.default_rc==+1 ); in sqlite3VdbeExec()
4724 assert( oc!=OP_SeekLT || r.default_rc==+1 ); in sqlite3VdbeExec()
4910 r.default_rc = 0; in sqlite3VdbeExec()
5161 r.default_rc = 0; in sqlite3VdbeExec()
5180 pIdxKey->default_rc = 0; in sqlite3VdbeExec()
6374 r.default_rc = 0; in sqlite3VdbeExec()
6558 r.default_rc = -1; in sqlite3VdbeExec()
[all …]
H A Dvdbeaux.c4075 p->default_rc = 0; in sqlite3VdbeRecordUnpack()
4205 rc = pPKey2->default_rc; in vdbeRecordCompareDebug()
4733 || vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, pPKey2->default_rc) in sqlite3VdbeRecordCompareWithSkip()
4737 return pPKey2->default_rc; in sqlite3VdbeRecordCompareWithSkip()
4837 res = pPKey2->default_rc; in vdbeRecordCompareInt()
4898 res = pPKey2->default_rc; in vdbeRecordCompareString()
H A Dbtree.c5813 assert( pIdxKey->default_rc==1 in sqlite3BtreeIndexMoveto()
5814 || pIdxKey->default_rc==0 in sqlite3BtreeIndexMoveto()
5815 || pIdxKey->default_rc==-1 in sqlite3BtreeIndexMoveto()
9116 r.default_rc = 0; in sqlite3BtreeInsert()
H A DsqliteInt.h2553 i8 default_rc; /* Comparison result if keys are equal */ member