Lines Matching refs:pRes

7790   int (*xGeom)(sqlite3_rtree_geometry*, int n, sqlite3_int64 *a, int *pRes),
7792 int (*xGeom)(sqlite3_rtree_geometry*, int n, double *a, int *pRes),
8658 int *pRes
8665 SQLITE_PRIVATE int sqlite3BtreeFirst(BtCursor*, int *pRes);
8666 SQLITE_PRIVATE int sqlite3BtreeLast(BtCursor*, int *pRes);
8667 SQLITE_PRIVATE int sqlite3BtreeNext(BtCursor*, int *pRes);
8669 SQLITE_PRIVATE int sqlite3BtreePrevious(BtCursor*, int *pRes);
39370 ** that is read in *pRes. Return SQLITE_OK if everything worked, or an
39375 static int read32bits(sqlite3_file *fd, i64 offset, u32 *pRes){
39379 *pRes = sqlite3Get4byte(ac);
50229 int *pRes /* Write search results here */
50246 rc = sqlite3BtreeMovetoUnpacked(pCur, pIdxKey, nKey, bias, pRes);
54049 ** on success. Set *pRes to 0 if the cursor actually points to something
54050 ** or set *pRes to 1 if the table is empty.
54052 SQLITE_PRIVATE int sqlite3BtreeFirst(BtCursor *pCur, int *pRes){
54061 *pRes = 1;
54064 *pRes = 0;
54072 ** on success. Set *pRes to 0 if the cursor actually points to something
54073 ** or set *pRes to 1 if the table is empty.
54075 SQLITE_PRIVATE int sqlite3BtreeLast(BtCursor *pCur, int *pRes){
54100 *pRes = 1;
54103 *pRes = 0;
54123 ** An integer is written into *pRes which is the result of
54126 ** *pRes is as follows:
54128 ** *pRes<0 The cursor is left pointing at an entry that
54132 ** *pRes==0 The cursor is left pointing at an entry that
54135 ** *pRes>0 The cursor is left pointing at an entry that
54144 int *pRes /* Write search results here */
54150 assert( pRes );
54159 *pRes = 0;
54163 *pRes = -1;
54176 *pRes = -1;
54279 *pRes = 0;
54305 *pRes = c;
54337 ** successful then set *pRes=0. If the cursor
54339 ** this routine was called, then set *pRes=1.
54341 SQLITE_PRIVATE int sqlite3BtreeNext(BtCursor *pCur, int *pRes){
54351 assert( pRes!=0 );
54353 *pRes = 1;
54358 *pRes = 0;
54381 *pRes = 0;
54386 *pRes = 1;
54393 *pRes = 0;
54395 rc = sqlite3BtreeNext(pCur, pRes);
54401 *pRes = 0;
54412 ** successful then set *pRes=0. If the cursor
54414 ** this routine was called, then set *pRes=1.
54416 SQLITE_PRIVATE int sqlite3BtreePrevious(BtCursor *pCur, int *pRes){
54427 *pRes = 1;
54432 *pRes = 0;
54450 *pRes = 1;
54461 rc = sqlite3BtreePrevious(pCur, pRes);
54466 *pRes = 0;
63081 ** the key string in pUnpacked. Write into *pRes a number
72548 ** Otherwise, return SQLITE_OK and set *pRes to a negative, zero or positive
72564 int *pRes /* OUT: Result of comparison */
72580 *pRes = -1;
72587 *pRes = sqlite3VdbeRecordCompare(nKey1, pKey1, r2);
73195 ** Otherwise, set *pRes to a negative, zero or positive value if the
73202 int *pRes /* OUT: Result of comparison */
73208 vdbeSorterCompare(pCsr, 1, pVal->z, pVal->n, pKey, nKey, pRes);
88631 sqlite3_value *pRes;
88632 pRes = (sqlite3_value *)sqlite3_aggregate_context(context, 0);
88633 if( pRes ){
88634 if( pRes->flags ){
88635 sqlite3_result_value(context, pRes);
88637 sqlite3VdbeMemRelease(pRes);
115421 int *pRes = va_arg(ap, int*);
115431 if( pRes ){
115432 *pRes = (db->flags & aFlagOp[i].mask)!=0;