Home
last modified time | relevance | path

Searched refs:bswap32 (Results 1 – 23 of 23) sorted by relevance

/external/qemu/include/android/
Dtrace_common.h93 #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/chromium_org/third_party/WebKit/Source/wtf/
DByteSwap.h50 ALWAYS_INLINE uint32_t bswap32(uint32_t x) { return _byteswap_ulong(x); } in bswap32() function
56 ALWAYS_INLINE uint32_t bswap32(uint32_t x) { return __builtin_bswap32(x); } in bswap32() function
72 ALWAYS_INLINE size_t bswapuintptrt(size_t x) { return bswap32(x); } in bswapuintptrt()
DByteOrder.h56 inline uint32_t ntohl(uint32_t x) { return WTF::bswap32(x); } in ntohl()
57 inline uint32_t htonl(uint32_t x) { return WTF::bswap32(x); } in htonl()
/external/llvm/test/CodeGen/Mips/
Dbswap.ll5 define i32 @bswap32(i32 %x) nounwind readnone {
7 ; MIPS32-LABEL: bswap32:
11 ; MIPS64-LABEL: bswap32:
15 ; MIPS16-LABEL: bswap32:
94 ; Don't bother with a MIPS16 version. It's just bswap32 repeated four times and
/external/qemu/include/qemu/
Dbswap.h22 static inline uint32_t bswap32(uint32_t x) in bswap32() function
38 static inline uint32_t bswap32(uint32_t x) in bswap32() function
66 *s = bswap32(*s); in bswap32s()
128 return bswap32(value) >> (32 - 8 * len); in qemu_bswap_len()
/external/qemu/hw/pci-host/
Dpci_host.h68 val = bswap32(val); in pci_host_data_writel()
114 val = bswap32(val); in pci_host_data_readl()
/external/qemu/audio/
Dmixeng.c116 #define ENDIAN_CONVERT(v) bswap32 (v)
137 #define ENDIAN_CONVERT(v) bswap32 (v)
Daudio.c782 s = bswap32 (s); in audio_pcm_info_clear_buf()
/external/fio/os/
Dos-openbsd.h31 #define fio_swap32(x) bswap32(x)
Dos-netbsd.h33 #define fio_swap32(x) bswap32(x)
Dos-freebsd.h26 #define fio_swap32(x) bswap32(x)
/external/clang/test/CodeGen/
Dbuiltins.c117 P(bswap32, (N)); in main()
/external/mesa3d/src/mesa/main/
Dcompiler.h249 #define CPU_TO_LE32( x ) bswap32( x )
/external/chromium_org/third_party/mesa/src/src/mesa/main/
Dcompiler.h249 #define CPU_TO_LE32( x ) bswap32( x )
/external/qemu/include/exec/
Dcpu-all.h54 return bswap32(s); in tswap32()
69 *s = bswap32(*s); in tswap32s()
Dsoftmmu_template.h75 # define BSWAP(X) bswap32(X)
/external/qemu/hw/timer/
Dmc146818rtc.c696 val = bswap32(val); in cmos_mm_readl()
706 value = bswap32(value); in cmos_mm_writel()
/external/libexif/m4m/
Dgp-byteorder.m4112 AC_HAVE_SYMBOL(bswap32,machine/endian.h,
122 #define swap32(x) bswap32(x)
/external/libmtp/m4/
Dbyteorder.m4110 AC_HAVE_SYMBOL(bswap32,machine/endian.h,
120 #define swap32(x) bswap32(x)
/external/wpa_supplicant_8/src/utils/
Dcommon.h32 #define bswap_32 bswap32
/external/qemu/
Dexec.c2226 val = bswap32(val); in ldl_phys_internal()
2230 val = bswap32(val); in ldl_phys_internal()
2502 val = bswap32(val); in stl_phys_internal()
2506 val = bswap32(val); in stl_phys_internal()
/external/qemu/target-i386/
Dops_sse.h2223 d->L(i) = rk.L(i) ^ bswap32(AES_Td0[st.B(aes_ishifts[4*i+0])] ^ in glue()
2248 d->L(i) = rk.L(i) ^ bswap32(AES_Te0[st.B(aes_shifts[4*i+0])] ^ in glue()
2273 d->L(i) = bswap32(AES_Td0[AES_Te4[tmp.B(4*i+0)] & 0xff] ^ in glue()
/external/qemu/tcg/i386/
Dtcg-target.c1804 OP_32_64(bswap32): in tcg_out_op()