Home
last modified time | relevance | path

Searched refs:bswap32 (Results 1 – 7 of 7) sorted by relevance

/device/google/contexthub/firmware/external/freebsd/inc/sys/
Dendian.h39 #define bswap32(x) __bswap32(x) macro
48 #define htobe32(x) bswap32((x))
55 #define be32toh(x) bswap32((x))
65 #define htole32(x) bswap32((x))
72 #define le32toh(x) bswap32((x))
/device/linaro/bootloader/edk2/StdLib/Include/sys/
Dbswap.h18 uint32_t bswap32(uint32_t) __attribute__((__const__));
21 uint32_t bswap32(uint32_t) __RENAME(__bswap32) __attribute__((__const__));
34 #define __BYTE_SWAP_U32_VARIABLE bswap32
66 #define bswap32(x) \ macro
Dendian.h133 #define ntohl(x) bswap32((uint32_t)(x))
135 #define htonl(x) bswap32((uint32_t)(x))
154 #define htole32(x) bswap32((uint32_t)(x))
161 #define HTOLE32(x) (x) = bswap32((uint32_t)(x))
167 #define htobe32(x) bswap32((uint32_t)(x))
174 #define HTOBE32(x) (x) = bswap32((uint32_t)(x))
/device/linaro/bootloader/edk2/StdLib/LibC/Main/
Dbswap32.c16 #undef bswap32
19 bswap32(UINT32 x) in bswap32() function
DByteSwap.c20 #undef bswap32
52 uint32_t bswap32(uint32_t Value) in bswap32() function
Dbswap64.c40 th = bswap32((u_int32_t)(x & 0x00000000ffffffffULL)); in bswap64()
41 tl = bswap32((u_int32_t)((x >> 32) & 0x00000000ffffffffULL)); in bswap64()
/device/google/contexthub/util/nanoapp_sign/
Dnanoapp_sign.c31 inline uint32_t bswap32 (uint32_t x) { in bswap32() function
38 #define htobe32(x) bswap32((x))
40 #define be32toh(x) bswap32((x))