Lines Matching refs:pBase
59362 sqlite3_pcache_page *pBase;
59370 pBase = sqlite3PcacheFetch(pPager->pPCache, pgno, 3);
59371 if( pBase==0 ){
59373 rc = sqlite3PcacheFetchStress(pPager->pPCache, pgno, &pBase);
59375 if( pBase==0 ){
59380 pPg = *ppPage = sqlite3PcacheFetchFinish(pPager->pPCache, pgno, pBase);
141218 SrcItem *pBase, /* The base SrcItem. Looking at pBase[1] and following */
141223 pBase++;
141224 if( pBase->fg.isUsing==0 ) continue;
141225 if( NEVER(pBase->u3.pUsing==0) ) continue;
141226 if( sqlite3IdListIndex(pBase->u3.pUsing, zName)>=0 ) return 1;
152559 static void transferJoinMarkings(Expr *pDerived, Expr *pBase){
152560 if( pDerived && ExprHasProperty(pBase, EP_OuterON|EP_InnerON) ){
152561 pDerived->flags |= pBase->flags & (EP_OuterON|EP_InnerON);
152562 pDerived->w.iJoin = pBase->w.iJoin;
161589 Token *pBase
161594 if( pBase ){
161595 pWin->zBase = sqlite3DbStrNDup(pParse->db, pBase->z, pBase->n);
196551 JsonNode *pBase = pRoot;
196555 while( j<=pBase->n ){
196556 if( (pBase[j].jnFlags & JNODE_REMOVE)==0 ) i++;
196557 j += jsonNodeSize(&pBase[j]);
196559 if( (pBase->jnFlags & JNODE_APPEND)==0 ) break;
196560 assert( pBase->eU==2 );
196561 iBase += pBase->u.iAppend;
196562 pBase = &pParse->aNode[iBase];