HomeSort by: relevance | last modified time | path
    Searched defs:bswap_32 (Results 1 - 11 of 11) sorted by relevancy

  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
byteswap_.h 28 #define bswap_32(x) ((((x) & 0x000000FF) << 24) | \ macro
  /src/external/gpl2/gettext/include/
byteswap.h 31 #define bswap_32(x) ((((x) & 0x000000FF) << 24) | \ macro
48 #define bswap_32(x) (x) macro
  /src/external/gpl3/binutils/dist/libctf/
swap.h 43 bswap_32 (uint32_t v) function
85 case 4: x = bswap_32 (x); break; \
  /src/external/gpl3/binutils.old/dist/libctf/
swap.h 43 bswap_32 (uint32_t v) function
85 case 4: x = bswap_32 (x); break; \
  /src/external/gpl3/gdb.old/dist/libctf/
swap.h 43 bswap_32 (uint32_t v) function
85 case 4: x = bswap_32 (x); break; \
  /src/external/gpl3/gdb/dist/libctf/
swap.h 43 bswap_32 (uint32_t v) function
85 case 4: x = bswap_32 (x); break; \
  /src/external/gpl2/lvm2/dist/include/
xlate.h 27 # define bswap_32(x) bswap32(x) macro
33 # define bswap_32(x) (((x) & 0x000000ffU) << 24 | \ macro
52 # define xlate32_be(x) bswap_32(x)
56 # define xlate32(x) bswap_32(x)
  /src/external/gpl2/lvm2/dist/lib/mm/
xlate.h 27 # define bswap_32(x) bswap32(x) macro
33 # define bswap_32(x) (((x) & 0x000000ffU) << 24 | \ macro
52 # define xlate32_be(x) bswap_32(x)
56 # define xlate32(x) bswap_32(x)
  /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
endian.h 94 #define bswap_32(x) BSWAP_32(x) macro
120 #ifndef bswap_32
121 #define bswap_32(x) \ macro
126 #endif /* !bswap_32 */
162 #define htole32(x) bswap_32(x)
164 #define le32toh(x) bswap_32(x)
168 #define htobe32(x) bswap_32(x)
170 #define be32toh(x) bswap_32(x)
  /src/external/mpl/bind/dist/lib/isc/include/isc/
endian.h 72 #define bswap_32(x) BSWAP_32(x) macro
98 #ifndef bswap_32
99 #define bswap_32(x) \ macro
104 #endif /* !bswap_32 */
140 #define htole32(x) bswap_32(x)
142 #define le32toh(x) bswap_32(x)
146 #define htobe32(x) bswap_32(x)
148 #define be32toh(x) bswap_32(x)
  /src/external/bsd/wpa/dist/src/utils/
common.h 28 #define bswap_32 swap32 macro
32 #define bswap_32 bswap32 macro
49 static inline unsigned int bswap_32(unsigned int v) function
66 #define bswap_32 CPU_swap_u32 macro
185 #define be_to_host32(n) bswap_32((__force u32) (be32) (n))
186 #define host_to_be32(n) ((__force be32) bswap_32((n)))
196 #define le_to_host32(n) bswap_32(n)
197 #define host_to_le32(n) bswap_32(n)
416 #ifndef bswap_32
417 #define bswap_32(a) ((((u32) (a) << 24) & 0xff000000) | macro
    [all...]

Completed in 16 milliseconds