Lines Matching refs:pStart
10958 void *pStart; /* First byte of available memory space */ member
20963 return p>=db->lookaside.pStart && p<db->lookaside.pEnd;
40054 void *pStart, *pEnd; /* Bounds of pagecache malloc range */
40098 pcache1.pStart = pBuf;
40161 if( p>=pcache1.pStart && p<pcache1.pEnd ){
40191 if( p>=pcache1.pStart && p<pcache1.pEnd ){
40937 if( pcache1.pStart==0 ){
59307 u8 * const pStart = &aData[pPg->hdrOffset + 8 + pPg->childPtrSize];
59315 if( pCell>=pStart && pCell<pEnd ){
93641 Token *pStart, /* The CREATE token that begins this statement */
93717 assert( pStart==0 );
94046 if( pStart ){
119563 WhereTerm *pStart, *pEnd;
119567 pStart = pEnd = 0;
119568 if( pLoop->wsFlags & WHERE_BTM_LIMIT ) pStart = pLoop->aLTerm[j++];
119570 assert( pStart!=0 || pEnd!=0 );
119572 pTerm = pStart;
119573 pStart = pEnd;
119576 if( pStart ){
119593 assert( (pStart->wtFlags & TERM_VNULL)==0 );
119594 testcase( pStart->wtFlags & TERM_VIRTUAL );
119595 pX = pStart->pExpr;
119597 testcase( pStart->leftCursor!=iCur ); /* transitive constraints */
119607 disableTerm(pLevel, pStart);
123319 static void spanSet(ExprSpan *pOut, Token *pStart, Token *pEnd){
123320 pOut->zStart = pStart->z;
127499 if( db->lookaside.pStart ) db->lookaside.bEnabled = 1;
128636 void *pStart;
128645 sqlite3_free(db->lookaside.pStart);
128655 pStart = 0;
128658 pStart = sqlite3Malloc( sz*cnt ); /* IMP: R-61949-35727 */
128660 if( pStart ) cnt = sqlite3MallocSize(pStart)/sz;
128662 pStart = pBuf;
128664 db->lookaside.pStart = pStart;
128667 if( pStart ){
128671 p = (LookasideSlot*)pStart;
128681 db->lookaside.pStart = db;
129139 sqlite3_free(db->lookaside.pStart);
133346 const char *pStart = p;
133363 return (int)(p - pStart);
133460 char *pStart,
133469 for(p = (*pp)-2; p>=pStart && *p&0x80; p--);
136462 static void fts3ReversePoslist(char *pStart, char **ppPoslist){
136467 while( p>pStart && (c=*p--)==0 );
136472 while( p>pStart && (*p & 0x80) | c ){
136475 assert( p==pStart || c==0 );
136490 if( p>pStart || (c==0 && *ppPoslist>&p[2]) ){ p = &p[2]; }