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

/external/syslinux/gpxe/src/include/
H A 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)
H A Dbyteswap.h34 #define __bswap_32(x) \ macro
53 #define swap32(x) __bswap_32(x)
56 #define bswap_32(x) __bswap_32(x)
H A Dbig_bswap.h9 #define cpu_to_le32(x) __bswap_32(x)
15 #define le32_to_cpu(x) __bswap_32(x)
/external/vboot_reference/cgpt/
H A 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/blktrace/
H A 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);
H A Dblkparse.c2151 return __bswap_32(bit->magic);
/external/syslinux/com32/include/
H A Dbyteswap.h28 static inline __constfunc uint32_t __bswap_32(uint32_t v) function
42 __bswap_32_macro(x) : __bswap_32(x))
54 v = ((uint64_t)__bswap_32(v) << 32) | __bswap_32(v >> 32);
/external/python/cpython2/Lib/plat-linux2/
H A DIN.py569 def __bswap_32(x): return \
571 def __bswap_32(x): return \
573 def __bswap_32(x): return __bswap_constant_32 (x)
587 def ntohl(x): return __bswap_32 (x)
591 def htonl(x): return __bswap_32 (x)
/external/python/cpython2/Lib/plat-atheos/
H A DIN.py900 def __bswap_32(x): return \
902 def __bswap_32(x): return \
904 def __bswap_32(x): return __bswap_constant_32 (x)
916 def ntohl(x): return __bswap_32 (x)
920 def htonl(x): return __bswap_32 (x)
/external/libtextclassifier/util/hash/
H A Dfarmhash.cc141 #if defined(__BSWAP_RENAME) && !defined(__bswap_32)

Completed in 226 milliseconds