Lines Matching refs:pStart

9399   u8 bMalloced;           /* True if pStart obtained from sqlite3_malloc() */
9404 void *pStart; /* First byte of available memory space */
18532 return p && p>=db->lookaside.pStart && p<db->lookaside.pEnd;
35951 ** szSlot, nSlot, pStart, pEnd, nReserve, and isInit values are all
35959 void *pStart, *pEnd; /* Bounds of pagecache malloc range */
36029 pcache1.pStart = pBuf;
36088 if( p>=pcache1.pStart && p<pcache1.pEnd ){
36116 if( p>=pcache1.pStart && p<pcache1.pEnd ){
36949 if( pcache1.pStart==0 ){
81586 Token *pStart, /* The CREATE token that begins this statement */
81609 assert( pStart==0 || pEnd!=0 ); /* pEnd must be non-NULL if pStart is */
81977 if( pStart ){
104245 WhereTerm *pStart, *pEnd;
104248 pStart = findTerm(pWC, iCur, -1, notReady, WO_GT|WO_GE, 0);
104251 pTerm = pStart;
104252 pStart = pEnd;
104255 if( pStart ){
104272 testcase( pStart->wtFlags & TERM_VIRTUAL ); /* EV: R-30575-11662 */
104273 pX = pStart->pExpr;
104275 assert( pStart->leftCursor==iCur );
104281 disableTerm(pLevel, pStart);
104304 if( pStart==0 && pEnd==0 ){
105602 ** range of text beginning with pStart and going to the end of pEnd.
105604 static void spanSet(ExprSpan *pOut, Token *pStart, Token *pEnd){
105605 pOut->zStart = pStart->z;
109660 if( db->lookaside.pStart ) db->lookaside.bEnabled = 1;
110603 ** The cnt parameter is the number of slots. If pStart is NULL the
110605 ** If pStart is not NULL then it is sz*cnt bytes of memory to use for
110609 void *pStart;
110618 sqlite3_free(db->lookaside.pStart);
110627 pStart = 0;
110631 pStart = sqlite3Malloc( sz*cnt ); /* IMP: R-61949-35727 */
110635 pStart = pBuf;
110637 db->lookaside.pStart = pStart;
110640 if( pStart ){
110644 p = (LookasideSlot*)pStart;
110956 sqlite3_free(db->lookaside.pStart);
114649 ** Argument pStart points to the first byte of the doclist that the
114654 char *pStart,
114663 for(p = (*pp)-2; p>=pStart && *p&0x80; p--);
117083 static void fts3ReversePoslist(char *pStart, char **ppPoslist){
117087 while( p>pStart && (c=*p--)==0 );
117088 while( p>pStart && (*p & 0x80) | c ){
117091 if( p>pStart ){ p = &p[2]; }