Home | History | Annotate | Download | only in orig

Lines Matching defs:VdbeOp

9122 ** for the VdbeOp definition.
9132 struct VdbeOp {
9166 typedef struct VdbeOp VdbeOp;
9173 VdbeOp *aOp; /* Array of opcodes for sub-program */
9183 ** A smaller version of VdbeOp used for the VdbeAddOpList() function because
9195 ** Allowed values of VdbeOp.p4type
9241 ** of a VdbeOp structure into a negative number so that
9474 SQLITE_PRIVATE VdbeOp *sqlite3VdbeGetOp(Vdbe*, int);
9495 SQLITE_PRIVATE VdbeOp *sqlite3VdbeTakeOpArray(Vdbe*, int*, int*);
13892 typedef struct VdbeOp Op;
62311 VdbeOp *pNew;
62367 VdbeOp *pOp;
62755 SQLITE_PRIVATE VdbeOp *sqlite3VdbeTakeOpArray(Vdbe *p, int *pnOp, int *pnMaxArg){
62756 VdbeOp *aOp = p->aOp;
62784 VdbeOp *pOut = &p->aOp[i+addr];
62961 VdbeOp *pOp = &p->aOp[addr];
63109 ** routine, then a pointer to a dummy VdbeOp will be returned. That opcode
63117 SQLITE_PRIVATE VdbeOp *sqlite3VdbeGetOp(Vdbe *p, int addr){
63120 static VdbeOp dummy; /* Ignore the MSVC warning about no initializer */
63127 return (VdbeOp*)&dummy;
63700 const VdbeOp *pOp = &p->aOp[0];
63716 VdbeOp *pOp;
68797 VdbeOp *pCaller;
81766 VdbeOp *pOp;
94949 VdbeOp *pOp = sqlite3VdbeGetOp(v, i);
95655 VdbeOp *pOp;
101933 VdbeOp *pOp; /* Opcode that opens the sorter */
102125 VdbeOp *pOp; /* No longer required OpenEphemeral instr. */
117346 VdbeOp *pOp;