Lines Matching refs:Op
20 static void vdbeFreeOpArray(sqlite3 *, Op *, int);
180 : (sqlite3_int64)(1024/sizeof(Op))); in growOpArray()
190 assert( nOp<=(int)(1024/sizeof(Op)) ); in growOpArray()
192 pNew = sqlite3DbRealloc(p->db, v->aOp, nNew*sizeof(Op)); in growOpArray()
195 v->nOpAlloc = p->szOpAlloc/sizeof(Op); in growOpArray()
213 static void test_addop_breakpoint(int pc, Op *pOp){ in test_addop_breakpoint()
641 static Op *opIterNext(VdbeOpIter *p){ in opIterNext()
643 Op *pRet = 0; in opIterNext()
644 Op *aOp; in opIterNext()
714 Op *pOp; in sqlite3VdbeAssertMayAbort()
812 Op *pOp; in resolveP2Values()
1278 static void vdbeFreeOpArray(sqlite3 *db, Op *aOp, int nOp){ in vdbeFreeOpArray()
1282 Op *pOp = &aOp[nOp-1]; in vdbeFreeOpArray()
1393 Op *pOp, in vdbeChangeP4Full()
1411 Op *pOp; in sqlite3VdbeChangeP4()
1563 static int translateP(char c, const Op *pOp){ in translateP()
1586 const Op *pOp, /* The opcode to be commented */ in sqlite3VdbeDisplayComment()
1749 char *sqlite3VdbeDisplayP4(sqlite3 *db, Op *pOp){ in sqlite3VdbeDisplayP4()
2100 Op **paOp /* OUT: Write the opcode array here */ in sqlite3VdbeNextOpcode()
2107 Op *aOp = 0; /* Opcode array */ in sqlite3VdbeNextOpcode()
2182 Op *pOp = aOp + i; in sqlite3VdbeNextOpcode()
2247 Op *aOp; /* Array of opcodes */ in sqlite3VdbeList()
2248 Op *pOp; /* Current opcode */ in sqlite3VdbeList()
2518 n = ROUND8P(sizeof(Op)*p->nOp); /* Bytes of opcode memory used */ in sqlite3VdbeMakeReady()