SIZE_C             39 lib/lua/lopcodes.h #define SIZE_Bx		(SIZE_C + SIZE_B)
SIZE_C             47 lib/lua/lopcodes.h #define POS_B		(POS_C + SIZE_C)
SIZE_C             67 lib/lua/lopcodes.h #define MAXARG_C        ((1<<SIZE_C)-1)
SIZE_C             92 lib/lua/lopcodes.h #define GETARG_C(i)	(cast(int, ((i)>>POS_C) & MASK1(SIZE_C,0)))
SIZE_C             93 lib/lua/lopcodes.h #define SETARG_C(i,b)	((i) = (((i)&MASK0(SIZE_C,POS_C)) | \
SIZE_C             94 lib/lua/lopcodes.h 		((cast(Instruction, b)<<POS_C)&MASK1(SIZE_C,POS_C))))