Home
last modified time | relevance | path

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

/device/google/contexthub/firmware/external/freebsd/inc/sys/
Dendian.h38 #define bswap16(x) __bswap16(x) macro
47 #define htobe16(x) bswap16((x))
54 #define be16toh(x) bswap16((x))
64 #define htole16(x) bswap16((x))
71 #define le16toh(x) bswap16((x))
/device/linaro/bootloader/edk2/StdLib/Include/sys/
Dbswap.h17 uint16_t bswap16(uint16_t) __attribute__((__const__));
20 uint16_t bswap16(uint16_t) __RENAME(__bswap16) __attribute__((__const__));
38 #define __BYTE_SWAP_U16_VARIABLE bswap16
70 #define bswap16(x) \ macro
Dendian.h134 #define ntohs(x) bswap16((uint16_t)(x))
136 #define htons(x) bswap16((uint16_t)(x))
153 #define htole16(x) bswap16((uint16_t)(x))
160 #define HTOLE16(x) (x) = bswap16((uint16_t)(x))
166 #define htobe16(x) bswap16((uint16_t)(x))
173 #define HTOBE16(x) (x) = bswap16((uint16_t)(x))
/device/linaro/bootloader/edk2/StdLib/LibC/Main/
Dbswap16.c16 #undef bswap16
19 bswap16(UINT16 x) in bswap16() function
DByteSwap.c19 #undef bswap16
35 uint16_t bswap16(uint16_t Value) in bswap16() function