Searched defs:Vdbe (Results 1 – 2 of 2) sorted by relevance
233 struct Vdbe { struct235 Vdbe *pPrev,*pNext; /* Linked list of VDBEs with the same Vdbe.db */ argument236 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 …]
32 typedef struct Vdbe Vdbe; typedef