Lines Matching refs:pRes
7526 int (*xGeom)(sqlite3_rtree_geometry *, int nCoord, double *aCoord, int *pRes),
8328 int *pRes
8335 SQLITE_PRIVATE int sqlite3BtreeFirst(BtCursor*, int *pRes);
8336 SQLITE_PRIVATE int sqlite3BtreeLast(BtCursor*, int *pRes);
8337 SQLITE_PRIVATE int sqlite3BtreeNext(BtCursor*, int *pRes);
8339 SQLITE_PRIVATE int sqlite3BtreePrevious(BtCursor*, int *pRes);
39468 ** that is read in *pRes. Return SQLITE_OK if everything worked, or an
39473 static int read32bits(sqlite3_file *fd, i64 offset, u32 *pRes){
39477 *pRes = sqlite3Get4byte(ac);
50044 int *pRes /* Write search results here */
50061 rc = sqlite3BtreeMovetoUnpacked(pCur, pIdxKey, nKey, bias, pRes);
53777 ** on success. Set *pRes to 0 if the cursor actually points to something
53778 ** or set *pRes to 1 if the table is empty.
53780 SQLITE_PRIVATE int sqlite3BtreeFirst(BtCursor *pCur, int *pRes){
53789 *pRes = 1;
53792 *pRes = 0;
53800 ** on success. Set *pRes to 0 if the cursor actually points to something
53801 ** or set *pRes to 1 if the table is empty.
53803 SQLITE_PRIVATE int sqlite3BtreeLast(BtCursor *pCur, int *pRes){
53828 *pRes = 1;
53831 *pRes = 0;
53851 ** An integer is written into *pRes which is the result of
53854 ** *pRes is as follows:
53856 ** *pRes<0 The cursor is left pointing at an entry that
53860 ** *pRes==0 The cursor is left pointing at an entry that
53863 ** *pRes>0 The cursor is left pointing at an entry that
53872 int *pRes /* Write search results here */
53878 assert( pRes );
53887 *pRes = 0;
53891 *pRes = -1;
53904 *pRes = -1;
54007 *pRes = 0;
54033 *pRes = c;
54065 ** successful then set *pRes=0. If the cursor
54067 ** this routine was called, then set *pRes=1.
54069 SQLITE_PRIVATE int sqlite3BtreeNext(BtCursor *pCur, int *pRes){
54079 assert( pRes!=0 );
54081 *pRes = 1;
54086 *pRes = 0;
54109 *pRes = 0;
54114 *pRes = 1;
54121 *pRes = 0;
54123 rc = sqlite3BtreeNext(pCur, pRes);
54129 *pRes = 0;
54140 ** successful then set *pRes=0. If the cursor
54142 ** this routine was called, then set *pRes=1.
54144 SQLITE_PRIVATE int sqlite3BtreePrevious(BtCursor *pCur, int *pRes){
54155 *pRes = 1;
54160 *pRes = 0;
54178 *pRes = 1;
54189 rc = sqlite3BtreePrevious(pCur, pRes);
54194 *pRes = 0;
62656 ** the key string in pUnpacked. Write into *pRes a number
71965 ** Otherwise, return SQLITE_OK and set *pRes to a negative, zero or positive
71981 int *pRes /* OUT: Result of comparison */
71997 *pRes = -1;
72004 *pRes = sqlite3VdbeRecordCompare(nKey1, pKey1, r2);
72536 ** Otherwise, set *pRes to a negative, zero or positive value if the
72543 int *pRes /* OUT: Result of comparison */
72549 vdbeSorterCompare(pCsr, 1, pVal->z, pVal->n, pKey, nKey, pRes);
87533 sqlite3_value *pRes;
87534 pRes = (sqlite3_value *)sqlite3_aggregate_context(context, 0);
87535 if( pRes ){
87536 if( pRes->flags ){
87537 sqlite3_result_value(context, pRes);
87539 sqlite3VdbeMemRelease(pRes);
113057 int *pRes = va_arg(ap, int*);
113067 if( pRes ){
113068 *pRes = (db->flags & aFlagOp[i].mask)!=0;