Searched refs:CMD_BITS_MASK (Results 1 – 1 of 1) sorted by relevance
7 #define CMD_BITS_MASK 0x03 macro8 #define COMPOSIT(x, s) (((x) & CMD_BITS_MASK) << (s))32 #define DECODE_CMD_AA(x) (((x) >> 6) & CMD_BITS_MASK)33 #define DECODE_CMD_BB(x) (((x) >> 4) & CMD_BITS_MASK)34 #define DECODE_CMD_CC(x) (((x) >> 2) & CMD_BITS_MASK)35 #define DECODE_CMD_DD(x) ((x) & CMD_BITS_MASK)