Searched refs:iOp (Results 1 – 8 of 8) sorted by relevance
| /sqlite-3.40.0/ext/recover/ |
| H A D | test_recover.c | 125 int iOp = 0; in testRecoverCmd() local 127 if( Tcl_GetIndexFromObj(interp, objv[2], aOp, "option", 0, &iOp) ){ in testRecoverCmd() 130 switch( iOp ){ in testRecoverCmd()
|
| /sqlite-3.40.0/src/ |
| H A D | vdbeInt.h | 375 int iOp; /* Instruction number of OP_Function */ member
|
| H A D | window.c | 1721 int iOp = sqlite3VdbeCurrentAddr(v); in windowAggStep() local 1729 for(iEnd=sqlite3VdbeCurrentAddr(v); iOp<iEnd; iOp++){ in windowAggStep() 1730 VdbeOp *pOp = sqlite3VdbeGetOp(v, iOp); in windowAggStep()
|
| H A D | vdbeapi.c | 1025 if( pAuxData->iAuxArg==iArg && (pAuxData->iAuxOp==pCtx->iOp || iArg<0) ){ in sqlite3_get_auxdata() 1060 if( pAuxData->iAuxArg==iArg && (pAuxData->iAuxOp==pCtx->iOp || iArg<0) ){ in sqlite3_set_auxdata() 1067 pAuxData->iAuxOp = pCtx->iOp; in sqlite3_set_auxdata()
|
| H A D | vdbeaux.c | 387 pCtx->iOp = sqlite3VdbeCurrentAddr(v); in sqlite3VdbeAddFunctionCall() 3536 void sqlite3VdbeDeleteAuxData(sqlite3 *db, AuxData **pp, int iOp, int mask){ in sqlite3VdbeDeleteAuxData() argument 3539 if( (iOp<0) in sqlite3VdbeDeleteAuxData() 3540 || (pAux->iAuxOp==iOp in sqlite3VdbeDeleteAuxData() 5196 pOp = pCtx->pVdbe->aOp + pCtx->iOp; in sqlite3NotPureFunc()
|
| H A D | shell.c.in | 3056 int iOp; /* Index of operation in p->aiIndent[] */ local 3078 for(iOp=0; SQLITE_ROW==sqlite3_step(pSql); iOp++){ 3089 int p2op = (p2 + (iOp-iAddr)); 3092 if( iOp>=nAlloc ){ 3093 if( iOp==0 ){ 3113 abYield[iOp] = str_in_array(zOp, azYield); 3114 p->aiIndent[iOp] = 0; 3115 p->nIndent = iOp+1; 3118 for(i=p2op; i<iOp; i++) p->aiIndent[i] += 2; 3123 for(i=p2op; i<iOp; i++) p->aiIndent[i] += 2;
|
| H A D | func.c | 30 pOp = &context->pVdbe->aOp[context->iOp-1]; in sqlite3GetFuncCollSeq()
|
| H A D | vdbe.c | 7471 pCtx->iOp = (int)(pOp - aOp); in sqlite3VdbeExec() 8432 sqlite3VdbeDeleteAuxData(db, &p->pAuxData, pCtx->iOp, pOp->p1); in sqlite3VdbeExec()
|