Home
last modified time | relevance | path

Searched refs:bswap16 (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/boot/sys/sys/
H A Dendian.h59 #define bswap16(x) __bswap16(x) macro
68 #define htobe16(x) bswap16((x))
75 #define be16toh(x) bswap16((x))
85 #define htole16(x) bswap16((x))
92 #define le16toh(x) bswap16((x))
/illumos-gate/usr/src/tools/smatch/src/validation/
H A Dbuiltin-bswap-constant.c1 unsigned short bswap16(void);
2 unsigned short bswap16(void) in bswap16() function
/illumos-gate/usr/src/tools/smatch/src/compat/
H A Dbswap.h25 #define bswap16(x) __builtin_bswap16(x) macro
28 static inline uint16_t bswap16(uint16_t x) in bswap16() function
/illumos-gate/usr/src/tools/smatch/src/
H A Dbuiltin.c215 case 16: expr->value = bswap16(val); break; in expand_bswap()