Lines Matching refs:_dst
37 #define BSWAP16(_src, _dst, _tmp) \
38 l.extbz _dst, _src; \
39 l.slli _dst, _dst, 8; \
42 l.or _dst, _dst, _tmp
44 #define BSWAP32(_src, _dst, _tmp) \
47 l.slri _dst, _tmp, 8 /* dst = 0x00ff00ff */ ;\
49 l.and _dst, _dst, _src /* dst = 0x00bb00dd */ ;\
51 l.ror _dst, _dst, 8 /* dst = 0xdd00bb00 */ ;\
52 l.or _dst, _dst, _tmp /* dst = 0xddccbbaa */ ;\