HomeSort by relevance Sort by last modified time
    Searched refs:bswap32 (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/wtf/
ByteSwap.h 50 ALWAYS_INLINE uint32_t bswap32(uint32_t x) { return _byteswap_ulong(x); } function in namespace:WTF
56 ALWAYS_INLINE uint32_t bswap32(uint32_t x) { return __builtin_bswap32(x); } function in namespace:WTF
72 ALWAYS_INLINE size_t bswapuintptrt(size_t x) { return bswap32(x); }
ByteOrder.h 56 inline uint32_t ntohl(uint32_t x) { return WTF::bswap32(x); }
57 inline uint32_t htonl(uint32_t x) { return WTF::bswap32(x); }
  /external/qemu/include/android/
trace_common.h 93 #define bswap32(x) ((((x) & 0xff) << 24) | (((x) & 0xff00) << 8) \ macro
113 #define hostToLE32(x) bswap32(x)
116 #define LE32ToHost(x) bswap32(x)
119 #define convert32(x) (x = bswap32(x))
  /external/fio/os/
os-netbsd.h 33 #define fio_swap32(x) bswap32(x)
os-openbsd.h 31 #define fio_swap32(x) bswap32(x)
os-freebsd.h 26 #define fio_swap32(x) bswap32(x)
  /frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h 114 #ifdef bswap32
115 #undef bswap32 macro
128 /// bswap32 - byte swap 32-bit version
130 inline uint32_t bswap32(uint32_t pData) function in namespace:mcld
159 return bswap32(pData);
  /frameworks/compile/mclinker/lib/LD/
ELFReader.cpp 102 st_name = mcld::bswap32(symtab[idx].st_name);
103 st_value = mcld::bswap32(symtab[idx].st_value);
104 st_size = mcld::bswap32(symtab[idx].st_size);
333 shoff = mcld::bswap32(ehdr->e_shoff);
365 sh_size = mcld::bswap32(shdr->sh_size);
366 sh_link = mcld::bswap32(shdr->sh_link);
389 sh_offset = mcld::bswap32(shdr->sh_offset);
390 sh_size = mcld::bswap32(shdr->sh_size);
412 sh_name = mcld::bswap32(shdrTab[idx].sh_name);
413 sh_type = mcld::bswap32(shdrTab[idx].sh_type)
    [all...]
RelocationFactory.cpp 54 tmp_data = mcld::bswap32(tmp_data);
  /external/qemu/hw/pci-host/
pci_host.h 68 val = bswap32(val);
114 val = bswap32(val);
  /frameworks/compile/mclinker/lib/Target/
ELFAttribute.cpp 86 bswap32(subsection_length);
219 bswap32(subsubsection_length);
352 bswap32(subsubsection_length);
358 bswap32(subsection_length);
GNULDBackend.cpp     [all...]
  /external/qemu/audio/
mixeng.c 116 #define ENDIAN_CONVERT(v) bswap32 (v)
137 #define ENDIAN_CONVERT(v) bswap32 (v)
  /external/qemu/include/qemu/
bswap.h 22 static inline uint32_t bswap32(uint32_t x) function
38 static inline uint32_t bswap32(uint32_t x) function
66 *s = bswap32(*s);
128 return bswap32(value) >> (32 - 8 * len);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
compiler.h 249 #define CPU_TO_LE32( x ) bswap32( x )
  /external/clang/test/CodeGen/
builtins.c 117 P(bswap32, (N));
  /external/mesa3d/src/mesa/main/
compiler.h 249 #define CPU_TO_LE32( x ) bswap32( x )
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.cpp 823 pType = mcld::bswap32(r_info >> 32);
846 pType = mcld::bswap32(r_info >> 32);
873 uint64_t r_info = mcld::bswap32(pType);
887 uint64_t r_info = mcld::bswap32(pType);
  /external/qemu/include/exec/
cpu-all.h 54 return bswap32(s);
69 *s = bswap32(*s);
softmmu_template.h 75 # define BSWAP(X) bswap32(X)
  /external/wpa_supplicant_8/src/utils/
common.h 32 #define bswap_32 bswap32
  /external/qemu/hw/timer/
mc146818rtc.c 696 val = bswap32(val);
706 value = bswap32(value);
  /system/keymaster/
ocb.c 108 #define bswap32(x) \ macro
118 out.u32[0] = bswap32(in.u32[1]);
119 out.u32[1] = bswap32(in.u32[0]);
    [all...]
  /external/qemu/
exec.c     [all...]
  /frameworks/compile/mclinker/lib/Object/
ObjectLinker.cpp     [all...]

Completed in 736 milliseconds

1 2