POS_OP             45 lib/lua/lopcodes.h #define POS_A		(POS_OP + SIZE_OP)
POS_OP             80 lib/lua/lopcodes.h #define GET_OPCODE(i)	(cast(OpCode, ((i)>>POS_OP) & MASK1(SIZE_OP,0)))
POS_OP             81 lib/lua/lopcodes.h #define SET_OPCODE(i,o)	((i) = (((i)&MASK0(SIZE_OP,POS_OP)) | \
POS_OP             82 lib/lua/lopcodes.h 		((cast(Instruction, o)<<POS_OP)&MASK1(SIZE_OP,POS_OP))))
POS_OP            104 lib/lua/lopcodes.h #define CREATE_ABC(o,a,b,c)	((cast(Instruction, o)<<POS_OP) \
POS_OP            109 lib/lua/lopcodes.h #define CREATE_ABx(o,a,bc)	((cast(Instruction, o)<<POS_OP) \