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

  /external/chromium_org/third_party/WebKit/Source/wtf/
ByteSwap.h 51 ALWAYS_INLINE uint16_t bswap16(uint16_t x) { return _byteswap_ushort(x); } function in namespace:WTF
59 ALWAYS_INLINE uint16_t bswap16(uint16_t x) { return __builtin_bswap16(x); } function in namespace:WTF
61 inline uint16_t bswap16(uint16_t x) { return ((x & 0xff00) >> 8) | ((x & 0x00ff) << 8); } function in namespace:WTF
ByteOrder.h 54 inline uint16_t ntohs(uint16_t x) { return WTF::bswap16(x); }
55 inline uint16_t htons(uint16_t x) { return WTF::bswap16(x); }
  /external/qemu/include/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))
  /external/fio/os/
os-netbsd.h 32 #define fio_swap16(x) bswap16(x)
os-openbsd.h 30 #define fio_swap16(x) bswap16(x)
os-freebsd.h 25 #define fio_swap16(x) bswap16(x)
  /frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h 111 #ifdef bswap16
112 #undef bswap16 macro
121 /// bswap16 - byte swap 16-bit version
123 inline uint16_t bswap16(uint16_t pData) function in namespace:mcld
  /external/qemu/hw/pci-host/
pci_host.h 56 val = bswap16(val);
99 val = bswap16(val);
  /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 105 st_shndx = mcld::bswap16(symtab[idx].st_shndx);
285 return (mcld::bswap16(hdr->e_machine) == target().getInfo().machine());
297 type = mcld::bswap16(hdr->e_type);
334 shentsize = mcld::bswap16(ehdr->e_shentsize);
335 shnum = mcld::bswap16(ehdr->e_shnum);
336 shstrtab = mcld::bswap16(ehdr->e_shstrndx);
478 st_shndx = mcld::bswap16(entry->st_shndx);
630 st_shndx = mcld::bswap16(symtab[idx].st_shndx);
806 return (mcld::bswap16(hdr->e_machine) == target().getInfo().machine());
818 type = mcld::bswap16(hdr->e_type)
    [all...]
  /external/qemu/include/qemu/
bswap.h 17 static inline uint16_t bswap16(uint16_t x) function
32 static inline uint16_t bswap16(uint16_t x) function
61 *s = bswap16(*s);
  /external/clang/test/CodeGen/
builtins.c 116 P(bswap16, (N));
  /external/qemu/include/exec/
cpu-all.h 49 return bswap16(s);
64 *s = bswap16(*s);
softmmu_template.h 77 # define BSWAP(X) bswap16(X)
  /external/wpa_supplicant_8/src/utils/
common.h 31 #define bswap_16 bswap16
  /external/qemu/hw/timer/
mc146818rtc.c 674 val = bswap16(val);
684 value = bswap16(value);
  /external/qemu/
exec.c     [all...]
  /frameworks/compile/mclinker/lib/Object/
ObjectLinker.cpp     [all...]
  /external/qemu/tcg/i386/
tcg-target.c     [all...]

Completed in 880 milliseconds