Searched defs:VdbeOp (Results 1 – 1 of 1) sorted by relevance
16439 struct VdbeOp { struct16440 u8 opcode; /* What operation to perform */16441 signed char p4type; /* One of the P4_xxx constants for p4 */16442 u16 p5; /* Fifth parameter is an unsigned 16-bit integer */16443 int p1; /* First operand */16444 int p2; /* Second parameter (often the jump destination) */16445 int p3; /* The third parameter */16446 union p4union { /* fourth parameter */16477 typedef struct VdbeOp VdbeOp; argument