Searched defs:VdbeOp (Results 1 – 1 of 1) sorted by relevance
41 struct VdbeOp { struct42 u8 opcode; /* What operation to perform */43 signed char p4type; /* One of the P4_xxx constants for p4 */44 u16 p5; /* Fifth parameter is an unsigned 16-bit integer */45 int p1; /* First operand */46 int p2; /* Second parameter (often the jump destination) */47 int p3; /* The third parameter */48 union p4union { /* fourth parameter */79 typedef struct VdbeOp VdbeOp; argument