Lines Matching refs:pStart

13794   void *pStart;           /* First byte of available memory space */  member
24229 return SQLITE_WITHIN(p, db->lookaside.pStart, db->lookaside.pEnd);
44565 void *pStart, *pEnd; /* Bounds of global page cache memory */
44618 pcache1.pStart = pBuf;
44718 if( SQLITE_WITHIN(p, pcache1.pStart, pcache1.pEnd) ){
44750 if( p>=pcache1.pStart && p<pcache1.pEnd ){
64704 u8 * const pStart = &aData[pPg->hdrOffset + 8 + pPg->childPtrSize];
64713 if( SQLITE_WITHIN(pCell, pStart, pEnd) ){
100284 Token *pStart, /* The CREATE token that begins this statement */
100362 assert( pStart==0 );
100748 if( pStart ){
124565 WhereTerm *pStart, *pEnd;
124569 pStart = pEnd = 0;
124570 if( pLoop->wsFlags & WHERE_BTM_LIMIT ) pStart = pLoop->aLTerm[j++];
124572 assert( pStart!=0 || pEnd!=0 );
124574 pTerm = pStart;
124575 pStart = pEnd;
124579 if( pStart ){
124596 assert( (pStart->wtFlags & TERM_VNULL)==0 );
124597 testcase( pStart->wtFlags & TERM_VIRTUAL );
124598 pX = pStart->pExpr;
124600 testcase( pStart->leftCursor!=iCur ); /* transitive constraints */
124610 disableTerm(pLevel, pStart);
131671 static void spanSet(ExprSpan *pOut, Token *pStart, Token *pEnd){
131672 pOut->zStart = pStart->z;
137181 void *pStart;
137190 sqlite3_free(db->lookaside.pStart);
137200 pStart = 0;
137203 pStart = sqlite3Malloc( sz*cnt ); /* IMP: R-61949-35727 */
137205 if( pStart ) cnt = sqlite3MallocSize(pStart)/sz;
137207 pStart = pBuf;
137209 db->lookaside.pStart = pStart;
137212 if( pStart ){
137216 p = (LookasideSlot*)pStart;
137226 db->lookaside.pStart = db;
137726 sqlite3_free(db->lookaside.pStart);
142131 const char *pStart = p;
142148 return (int)(p - pStart);
142245 char *pStart,
142254 for(p = (*pp)-2; p>=pStart && *p&0x80; p--);
145263 static void fts3ReversePoslist(char *pStart, char **ppPoslist){
145268 while( p>pStart && (c=*p--)==0 );
145273 while( p>pStart && (*p & 0x80) | c ){
145276 assert( p==pStart || c==0 );
145291 if( p>pStart || (c==0 && *ppPoslist>&p[2]) ){ p = &p[2]; }
172421 u8 *pStart = a;
172443 sessionAppendBlob(pBuf, pStart, (int)(a-pStart), &rc);