Home
last modified time | relevance | path

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

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