Lines Matching refs:VdbeOp
7696 ** for the VdbeOp definition.
7707 struct VdbeOp {
7738 typedef struct VdbeOp VdbeOp;
7745 VdbeOp *aOp; /* Array of opcodes for sub-program */
7754 ** A smaller version of VdbeOp used for the VdbeAddOpList() function because
7766 ** Allowed values of VdbeOp.p4type
7816 ** of a VdbeOp structure into a negative number so that
8034 SQLITE_PRIVATE VdbeOp *sqlite3VdbeGetOp(Vdbe*, int);
8055 SQLITE_PRIVATE VdbeOp *sqlite3VdbeTakeOpArray(Vdbe*, int*, int*);
11989 typedef struct VdbeOp Op;
55420 VdbeOp *pNew;
55448 VdbeOp *pOp;
55763 SQLITE_PRIVATE VdbeOp *sqlite3VdbeTakeOpArray(Vdbe *p, int *pnOp, int *pnMaxArg){
55764 VdbeOp *aOp = p->aOp;
55792 VdbeOp *pOut = &p->aOp[i+addr];
55968 VdbeOp *pOp = &p->aOp[addr];
56112 ** routine, then a pointer to a dummy VdbeOp will be returned. That opcode
56128 SQLITE_PRIVATE VdbeOp *sqlite3VdbeGetOp(Vdbe *p, int addr){
56131 static const VdbeOp dummy; /* Ignore the MSVC warning about no initializer */
56135 if( p->nOp==0 ) return (VdbeOp*)&dummy;
56141 return (VdbeOp*)&dummy;
56555 VdbeOp *pOp;
56572 VdbeOp *pOp;
82566 VdbeOp *pOp = sqlite3VdbeGetOp(v, i);
83313 VdbeOp *pOp;
100170 VdbeOp *pOp;