Lines Matching defs:iOp
23493 int iOp; /* Instruction number of OP_Function */
85301 pCtx->iOp = sqlite3VdbeCurrentAddr(v);
88494 ** If parameter iOp is less than zero, then invoke the destructor for
88498 ** Or, if iOp is greater than or equal to zero, then the destructor is
88500 ** function invoked by the OP_Function opcode at instruction iOp of
88509 SQLITE_PRIVATE void sqlite3VdbeDeleteAuxData(sqlite3 *db, AuxData **pp, int iOp, int mask){
88512 if( (iOp<0)
88513 || (pAux->iAuxOp==iOp
90220 pOp = pCtx->pVdbe->aOp + pCtx->iOp;
91541 if( pAuxData->iAuxArg==iArg && (pAuxData->iAuxOp==pCtx->iOp || iArg<0) ){
91580 if( pAuxData->iAuxArg==iArg && (pAuxData->iAuxOp==pCtx->iOp || iArg<0) ){
91587 pAuxData->iAuxOp = pCtx->iOp;
92869 int iOp;
92870 for(iOp=0; iOp<nOp; iOp++){
92871 Op *pOp = &aOp[iOp];
92876 res += aOp[iOp].nCycle;
100787 pCtx->iOp = (int)(pOp - aOp);
101799 sqlite3VdbeDeleteAuxData(db, &p->pAuxData, pCtx->iOp, pOp->p1);
128678 pOp = &context->pVdbe->aOp[context->iOp-1];
171071 int iOp = sqlite3VdbeCurrentAddr(v);
171079 for(iEnd=sqlite3VdbeCurrentAddr(v); iOp<iEnd; iOp++){
171080 VdbeOp *pOp = sqlite3VdbeGetOp(v, iOp);