Lines Matching refs:pOp
746 VdbeOp *pOp; /* Opcode that opens the sorter */ in pushOntoSorter() local
761 pOp = sqlite3VdbeGetOp(v, pSort->addrSortIndex); in pushOntoSorter()
763 pOp->p2 = nKey + nData; in pushOntoSorter()
764 pKI = pOp->p4.pKeyInfo; in pushOntoSorter()
768 pOp->p4.pKeyInfo = sqlite3KeyInfoFromExprList(pParse,pSort->pOrderBy,nOBSat, in pushOntoSorter()
770 pOp = 0; /* Ensure pOp not used after sqltie3VdbeAddOp3() */ in pushOntoSorter()
986 VdbeOp *pOp = sqlite3VdbeGetOp(v, iOpenEphAddr); in fixDistinctOpenEph() local
987 pOp->opcode = OP_Null; in fixDistinctOpenEph()
988 pOp->p1 = 1; in fixDistinctOpenEph()
989 pOp->p2 = iVal; in fixDistinctOpenEph()
1189 VdbeOp *pOp = sqlite3VdbeGetOp(v, pSort->addrSortIndex); in selectInnerLoop() local
1190 pOp->p2 += (pExtra->nExpr - pSort->nDefer); in selectInnerLoop()
1191 pOp->p4.pKeyInfo->nAllField += (pExtra->nExpr - pSort->nDefer); in selectInnerLoop()