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

  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
byteswap_.h 23 #define bswap_16(x) ((((x) & 0x00FF) << 8) | \ macro
  /src/external/gpl2/gettext/include/
byteswap.h 26 #define bswap_16(x) ((((x) & 0x00FF) << 8) | \ macro
47 #define bswap_16(x) (x) macro
  /src/external/gpl3/binutils/dist/libctf/
swap.h 35 bswap_16 (uint16_t v) function
84 case 2: x = bswap_16 (x); break; \
  /src/external/gpl3/binutils.old/dist/libctf/
swap.h 35 bswap_16 (uint16_t v) function
84 case 2: x = bswap_16 (x); break; \
  /src/external/gpl3/gdb.old/dist/libctf/
swap.h 35 bswap_16 (uint16_t v) function
84 case 2: x = bswap_16 (x); break; \
  /src/external/gpl3/gdb/dist/libctf/
swap.h 35 bswap_16 (uint16_t v) function
84 case 2: x = bswap_16 (x); break; \
  /src/external/gpl2/lvm2/dist/include/
xlate.h 26 # define bswap_16(x) bswap16(x) macro
31 # define bswap_16(x) (((x) & 0x00ffU) << 8 | \ macro
51 # define xlate16_be(x) bswap_16(x)
55 # define xlate16(x) bswap_16(x)
  /src/external/gpl2/lvm2/dist/lib/mm/
xlate.h 26 # define bswap_16(x) bswap16(x) macro
31 # define bswap_16(x) (((x) & 0x00ffU) << 8 | \ macro
51 # define xlate16_be(x) bswap_16(x)
55 # define xlate16(x) bswap_16(x)
  /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
endian.h 93 #define bswap_16(x) BSWAP_16(x) macro
114 #ifndef bswap_16
115 #define bswap_16(x) \ macro
118 #endif /* !bswap_16 */
144 #define htole16(x) bswap_16(x)
146 #define le16toh(x) bswap_16(x)
150 #define htobe16(x) bswap_16(x)
152 #define be16toh(x) bswap_16(x)
  /src/external/mpl/bind/dist/lib/isc/include/isc/
endian.h 69 #define bswap_16(x) BSWAP_16(x) macro
90 #ifndef bswap_16
91 #define bswap_16(x) \ macro
94 #endif /* !bswap_16 */
120 #define htole16(x) bswap_16(x)
122 #define le16toh(x) bswap_16(x)
126 #define htobe16(x) bswap_16(x)
128 #define be16toh(x) bswap_16(x)
  /src/external/bsd/wpa/dist/src/utils/
common.h 27 #define bswap_16 swap16 macro
31 #define bswap_16 bswap16 macro
44 static inline unsigned short bswap_16(unsigned short v) function
65 #define bswap_16 CPU_swap_u16 macro
181 #define be_to_host16(n) bswap_16((__force u16) (be16) (n))
182 #define host_to_be16(n) ((__force be16) bswap_16((n)))
192 #define le_to_host16(n) bswap_16(n)
193 #define host_to_le16(n) bswap_16(n)
412 #ifndef bswap_16
413 #define bswap_16(a) ((((u16) (a) << 8) & 0xff00) | (((u16) (a) >> 8) & 0xff) macro
    [all...]

Completed in 29 milliseconds