Home
last modified time | relevance | path

Searched refs:__bswap_32 (Results 1 – 10 of 10) sorted by relevance

/external/vboot_reference/cgpt/
Dcgpt_endian.h26 # define htobe32(x) __bswap_32 (x)
28 # define be32toh(x) __bswap_32 (x)
42 # define htole32(x) __bswap_32 (x)
44 # define le32toh(x) __bswap_32 (x)
/external/syslinux/gpxe/src/include/
Dlittle_bswap.h6 #define ntohl(x) __bswap_32(x)
7 #define htonl(x) __bswap_32(x)
14 #define cpu_to_be32(x) __bswap_32(x)
20 #define be32_to_cpu(x) __bswap_32(x)
Dbyteswap.h34 #define __bswap_32(x) \ macro
53 #define swap32(x) __bswap_32(x)
56 #define bswap_32(x) __bswap_32(x)
Dbig_bswap.h9 #define cpu_to_le32(x) __bswap_32(x)
15 #define le32_to_cpu(x) __bswap_32(x)
/external/blktrace/
Dblktrace.h68 #define __bswap_32 bswap_32 macro
73 #define be32_to_cpu(x) __bswap_32(x)
76 #define cpu_to_be32(x) __bswap_32(x)
132 magic = __bswap_32(magic); in check_data_endianness()
Dblkparse.c2151 return __bswap_32(bit->magic); in get_magic()
/external/syslinux/com32/include/
Dbyteswap.h28 static inline __constfunc uint32_t __bswap_32(uint32_t v) in __bswap_32() function
42 __bswap_32_macro(x) : __bswap_32(x))
54 v = ((uint64_t)__bswap_32(v) << 32) | __bswap_32(v >> 32); in __bswap_64()
/external/python/cpython2/Lib/plat-linux2/
DIN.py569 def __bswap_32(x): return \ function
571 def __bswap_32(x): return \ function
573 def __bswap_32(x): return __bswap_constant_32 (x) function
587 def ntohl(x): return __bswap_32 (x)
591 def htonl(x): return __bswap_32 (x)
/external/python/cpython2/Lib/plat-atheos/
DIN.py900 def __bswap_32(x): return \ function
902 def __bswap_32(x): return \ function
904 def __bswap_32(x): return __bswap_constant_32 (x) function
916 def ntohl(x): return __bswap_32 (x)
920 def htonl(x): return __bswap_32 (x)
/external/libtextclassifier/util/hash/
Dfarmhash.cc141 #if defined(__BSWAP_RENAME) && !defined(__bswap_32)