Home
last modified time | relevance | path

Searched defs:Vdbe (Results 1 – 2 of 2) sorted by relevance

/titanic_44/usr/src/lib/libsqlite/src/
H A DvdbeInt.h233 struct Vdbe { struct
235 Vdbe *pPrev,*pNext; /* Linked list of VDBEs with the same Vdbe.db */ argument
236 FILE *trace; /* Write an execution trace here, if not NULL */
237 int nOp; /* Number of instructions in the program */
238 int nOpAlloc; /* Number of slots allocated for aOp[] */
239 Op *aOp; /* Space to hold the virtual machine's program */
240 int nLabel; /* Number of labels used */
241 int nLabelAlloc; /* Number of slots allocated in aLabel[] */
242 int *aLabel; /* Space to hold the labels */
243 Mem *aStack; /* The operand stack, except string values */
[all …]
H A Dvdbe.h32 typedef struct Vdbe Vdbe; typedef