Searched defs:___constant_swab16 (Results 1 - 2 of 2) sorted by relevance

/bionic/libc/kernel/common/linux/
H A Dswab.h25 #define ___constant_swab16(x) ((__u16)( (((__u16)(x) & (__u16)0x00ffU) << 8) | (((__u16)(x) & (__u16)0xff00U) >> 8))) macro
51 #define __swab16(x) (__builtin_constant_p((__u16)(x)) ? ___constant_swab16(x) : __fswab16(x))
/bionic/libc/kernel/common/linux/byteorder/
H A Dswab.h26 #define ___constant_swab16(x) ((__u16)( (((__u16)(x) & (__u16)0x00ffU) << 8) | (((__u16)(x) & (__u16)0xff00U) >> 8) )) macro

Completed in 19 milliseconds