gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for fundef:__swap16gen (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/include/sys/endian.h - 9.5KB - 251 lines
53: 
54: #define __swap16gen(x) __statement({                                    \
55:         __uint16_t __swap16gen_x = (x);                                        \
85: /* Note that these macros evaluate their arguments several times. */ 86: #define __swap16gen(x) \ 87: (__uint16_t)(((__uint16_t)(x) & 0xffU) << 8 | ((__uint16_t)(x) & 0xff00U) >> 8)