HomeSort by relevance Sort by last modified time
    Searched refs:bswap16 (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/
ByteOrder.h 46 inline uint16_t bswap16(uint16_t x) { return ((x & 0xff00) >> 8) | ((x & 0x00ff) << 8); } function in namespace:WTF
60 inline uint16_t ntohs(uint16_t x) { return WTF::bswap16(x); }
61 inline uint16_t htons(uint16_t x) { return WTF::bswap16(x); }
  /external/qemu/
android-trace_common.h 91 #define bswap16(x) ((((x) & 0xff) << 8) | (((x) >> 8) & 0xff)) macro
112 #define hostToLE16(x) bswap16(x)
115 #define LE16ToHost(x) bswap16(x)
118 #define convert16(x) (x = bswap16(x))
bswap.h 52 static inline uint16_t bswap16(uint16_t x) function
71 *s = bswap16(*s);
cpu-all.h 48 return bswap16(s);
63 *s = bswap16(*s);
  /frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h 114 #ifdef bswap16
115 #undef bswap16 macro
124 /// bswap16 - byte swap 16-bit version
126 inline uint16_t bswap16(uint16_t pData) function in namespace:mcld
  /external/qemu/hw/
pci_host.h 56 val = bswap16(val);
99 val = bswap16(val);
mc146818rtc.c 668 val = bswap16(val);
678 value = bswap16(value);
bt-hci.c 423 # define HNDL(raw) bswap16(raw)
    [all...]
  /external/qemu/audio/
mixeng.c 74 #define ENDIAN_CONVERT(v) bswap16 (v)
95 #define ENDIAN_CONVERT(v) bswap16 (v)
audio.c 765 s = bswap16 (s);
    [all...]
  /frameworks/compile/mclinker/lib/LD/
ELFReader.cpp 104 st_shndx = mcld::bswap16(symtab[idx].st_shndx);
300 return (mcld::bswap16(hdr->e_machine) == target().getInfo().machine());
312 type = mcld::bswap16(hdr->e_type);
349 shentsize = mcld::bswap16(ehdr->e_shentsize);
350 shnum = mcld::bswap16(ehdr->e_shnum);
351 shstrtab = mcld::bswap16(ehdr->e_shstrndx);
504 st_shndx = mcld::bswap16(entry->st_shndx);
665 st_shndx = mcld::bswap16(symtab[idx].st_shndx);
856 return (mcld::bswap16(hdr->e_machine) == target().getInfo().machine());
868 type = mcld::bswap16(hdr->e_type)
    [all...]
  /external/clang/test/CodeGen/
builtins.c 116 P(bswap16, (N));
  /frameworks/compile/mclinker/lib/Fragment/
FragmentLinker.cpp 243 tmp_data = mcld::bswap16(pReloc.target());
  /external/wpa_supplicant_8/src/utils/
common.h 31 #define bswap_16 bswap16
  /external/qemu/tcg/i386/
tcg-target.c     [all...]

Completed in 291 milliseconds