SWAP
#define SWAP(a, b, t) ((t) = (a), (a) = (b), (b) = (t))
SWAP = GENMASK(2, 0),
#define SWAP(A) ((A>>8) | ((A&0xff) <<8))