Home
last modified time | relevance | path

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

/illumos-gate/usr/src/boot/sys/sys/
H A Dendian.h61 #define bswap64(x) __bswap64(x) macro
70 #define htobe64(x) bswap64((x))
77 #define be64toh(x) bswap64((x))
87 #define htole64(x) bswap64((x))
94 #define le64toh(x) bswap64((x))
/illumos-gate/usr/src/tools/smatch/src/validation/
H A Dbuiltin-bswap-constant.c13 unsigned long long bswap64(void);
14 unsigned long long bswap64(void) in bswap64() function
/illumos-gate/usr/src/tools/smatch/src/compat/
H A Dbswap.h45 #define bswap64(x) __builtin_bswap64(x) macro
48 static inline uint64_t bswap64(uint64_t x) in bswap64() function
/illumos-gate/usr/src/tools/smatch/src/
H A Dbuiltin.c217 case 64: expr->value = bswap64(val); break; in expand_bswap()