Lines Matching defs:pBase
61066 sqlite3_pcache_page *pBase;
61074 pBase = sqlite3PcacheFetch(pPager->pPCache, pgno, 3);
61075 if( pBase==0 ){
61077 rc = sqlite3PcacheFetchStress(pPager->pPCache, pgno, &pBase);
61079 if( pBase==0 ){
61084 pPg = *ppPage = sqlite3PcacheFetchFinish(pPager->pPCache, pgno, pBase);
143925 ** Check the N SrcItem objects to the right of pBase. (N might be zero!)
143929 ** If N is zero, or none of the N SrcItem objects to the right of pBase
143935 SrcItem *pBase, /* The base SrcItem. Looking at pBase[1] and following */
143940 pBase++;
143941 if( pBase->fg.isUsing==0 ) continue;
143942 if( NEVER(pBase->u3.pUsing==0) ) continue;
143943 if( sqlite3IdListIndex(pBase->u3.pUsing, zName)>=0 ) return 1;
155155 ** If the pBase expression originated in the ON or USING clause of
155158 static void transferJoinMarkings(Expr *pDerived, Expr *pBase){
155159 if( pDerived && ExprHasProperty(pBase, EP_OuterON|EP_InnerON) ){
155160 pDerived->flags |= pBase->flags & (EP_OuterON|EP_InnerON);
155161 pDerived->w.iJoin = pBase->w.iJoin;
164371 ** pWin. Also, if parameter pBase is not NULL, set pWin->zBase to the
164379 Token *pBase
164384 if( pBase ){
164385 pWin->zBase = sqlite3DbStrNDup(pParse->db, pBase->z, pBase->n);
164395 ** Window *pWin has just been created from a WINDOW clause. Tokne pBase
199418 JsonNode *pBase = pRoot;
199422 while( j<=pBase->n ){
199423 if( (pBase[j].jnFlags & JNODE_REMOVE)==0 ) i++;
199424 j += jsonNodeSize(&pBase[j]);
199426 if( (pBase->jnFlags & JNODE_APPEND)==0 ) break;
199427 assert( pBase->eU==2 );
199428 iBase += pBase->u.iAppend;
199429 pBase = &pParse->aNode[iBase];