Lines Matching refs:pRes

7287   int (*xGeom)(sqlite3_rtree_geometry *, int nCoord, double *aCoord, int *pRes),
8074 int *pRes
8081 SQLITE_PRIVATE int sqlite3BtreeFirst(BtCursor*, int *pRes);
8082 SQLITE_PRIVATE int sqlite3BtreeLast(BtCursor*, int *pRes);
8083 SQLITE_PRIVATE int sqlite3BtreeNext(BtCursor*, int *pRes);
8085 SQLITE_PRIVATE int sqlite3BtreePrevious(BtCursor*, int *pRes);
38550 ** that is read in *pRes. Return SQLITE_OK if everything worked, or an
38555 static int read32bits(sqlite3_file *fd, i64 offset, u32 *pRes){
38559 *pRes = sqlite3Get4byte(ac);
48913 int *pRes /* Write search results here */
48930 rc = sqlite3BtreeMovetoUnpacked(pCur, pIdxKey, nKey, bias, pRes);
52590 ** on success. Set *pRes to 0 if the cursor actually points to something
52591 ** or set *pRes to 1 if the table is empty.
52593 SQLITE_PRIVATE int sqlite3BtreeFirst(BtCursor *pCur, int *pRes){
52602 *pRes = 1;
52605 *pRes = 0;
52613 ** on success. Set *pRes to 0 if the cursor actually points to something
52614 ** or set *pRes to 1 if the table is empty.
52616 SQLITE_PRIVATE int sqlite3BtreeLast(BtCursor *pCur, int *pRes){
52641 *pRes = 1;
52644 *pRes = 0;
52664 ** An integer is written into *pRes which is the result of
52667 ** *pRes is as follows:
52669 ** *pRes<0 The cursor is left pointing at an entry that
52673 ** *pRes==0 The cursor is left pointing at an entry that
52676 ** *pRes>0 The cursor is left pointing at an entry that
52685 int *pRes /* Write search results here */
52691 assert( pRes );
52700 *pRes = 0;
52704 *pRes = -1;
52717 *pRes = -1;
52816 *pRes = 0;
52842 *pRes = c;
52874 ** successful then set *pRes=0. If the cursor
52876 ** this routine was called, then set *pRes=1.
52878 SQLITE_PRIVATE int sqlite3BtreeNext(BtCursor *pCur, int *pRes){
52888 assert( pRes!=0 );
52890 *pRes = 1;
52895 *pRes = 0;
52912 *pRes = 0;
52917 *pRes = 1;
52924 *pRes = 0;
52926 rc = sqlite3BtreeNext(pCur, pRes);
52932 *pRes = 0;
52943 ** successful then set *pRes=0. If the cursor
52945 ** this routine was called, then set *pRes=1.
52947 SQLITE_PRIVATE int sqlite3BtreePrevious(BtCursor *pCur, int *pRes){
52958 *pRes = 1;
52963 *pRes = 0;
52981 *pRes = 1;
52992 rc = sqlite3BtreePrevious(pCur, pRes);
52997 *pRes = 0;
61425 ** the key string in pUnpacked. Write into *pRes a number
70571 ** Otherwise, return SQLITE_OK and set *pRes to a negative, zero or positive
70587 int *pRes /* OUT: Result of comparison */
70603 *pRes = -1;
70610 *pRes = sqlite3VdbeRecordCompare(nKey1, pKey1, r2);
71142 ** Otherwise, set *pRes to a negative, zero or positive value if the
71149 int *pRes /* OUT: Result of comparison */
71155 vdbeSorterCompare(pCsr, 1, pVal->z, pVal->n, pKey, nKey, pRes);
85416 sqlite3_value *pRes;
85417 pRes = (sqlite3_value *)sqlite3_aggregate_context(context, 0);
85418 if( pRes ){
85419 if( ALWAYS(pRes->flags) ){
85420 sqlite3_result_value(context, pRes);
85422 sqlite3VdbeMemRelease(pRes);
110696 int *pRes = va_arg(ap, int*);
110706 if( pRes ){
110707 *pRes = (db->flags & aFlagOp[i].mask)!=0;