Home | History | Annotate | Download | only in orig

Lines Matching defs:pY

23544       Expr *pY = pExpr->x.pList->a[0].pExpr;
23548 sqlite3TreeViewExpr(pView, pY, 1);
67702 ** "PX@PY" -> "r[X..X+Y-1]" or "r[x]" if y is 0 or 1
67703 ** "PX@PY+1" -> "r[X..X+Y]" or "r[x]" if y is 0
67704 ** "PY..PY" -> "r[X..Y]" or "r[x]" if y<=x
123186 const WhereLoop *pY /* Compare against this WhereLoop */
123189 if( pX->nLTerm-pX->nSkip >= pY->nLTerm-pY->nSkip ){
123192 if( pY->nSkip > pX->nSkip ) return 0;
123193 if( pX->rRun >= pY->rRun ){
123194 if( pX->rRun > pY->rRun ) return 0; /* X costs more than Y */
123195 if( pX->nOut > pY->nOut ) return 0; /* X costs more than Y */
123199 for(j=pY->nLTerm-1; j>=0; j--){
123200 if( pY->aLTerm[j]==pX->aLTerm[i] ) break;
126119 static void binaryToUnaryIfNull(Parse *pParse, Expr *pY, Expr *pA, int op){
126121 if( pY && pA && pY->op==TK_NULL ){