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

  /external/chromium_org/third_party/WebKit/Source/wtf/
ByteSwap.h 49 ALWAYS_INLINE uint64_t bswap64(uint64_t x) { return _byteswap_uint64(x); } function in namespace:WTF
55 ALWAYS_INLINE uint64_t bswap64(uint64_t x) { return __builtin_bswap64(x); } function in namespace:WTF
68 ALWAYS_INLINE size_t bswapuintptrt(size_t x) { return bswap64(x); }
  /external/qemu/include/android/
trace_common.h 96 #define bswap64(x) (((x) << 56) | (((x) & 0xff00) << 40) \ macro
114 #define hostToLE64(x) bswap64(x)
117 #define LE64ToHost(x) bswap64(x)
120 #define convert64(x) (x = bswap64(x))
  /external/fio/os/
os-netbsd.h 34 #define fio_swap64(x) bswap64(x)
os-openbsd.h 32 #define fio_swap64(x) bswap64(x)
os-freebsd.h 27 #define fio_swap64(x) bswap64(x)
  /frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h 117 #ifdef bswap64
118 #undef bswap64 macro
139 /// bswap64 - byte swap 64-bit version
141 inline uint64_t bswap64(uint64_t pData) function in namespace:mcld
165 return bswap64(pData);
  /frameworks/compile/mclinker/lib/LD/
RelocationFactory.cpp 60 target_data = mcld::bswap64(target_data);
ELFReader.cpp 628 st_value = mcld::bswap64(symtab[idx].st_value);
629 st_size = mcld::bswap64(symtab[idx].st_size);
854 shoff = mcld::bswap64(ehdr->e_shoff);
886 sh_size = mcld::bswap64(shdr->sh_size);
910 sh_offset = mcld::bswap64(shdr->sh_offset);
911 sh_size = mcld::bswap64(shdr->sh_size);
935 sh_flags = mcld::bswap64(shdrTab[idx].sh_flags);
936 sh_offset = mcld::bswap64(shdrTab[idx].sh_offset);
937 sh_size = mcld::bswap64(shdrTab[idx].sh_size);
940 sh_addralign = mcld::bswap64(shdrTab[idx].sh_addralign)
    [all...]
  /external/qemu/include/qemu/
bswap.h 27 static inline uint64_t bswap64(uint64_t x) function
46 static inline uint64_t bswap64(uint64_t x) function
71 *s = bswap64(*s);
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.cpp 815 pOffset = mcld::bswap64(pRel.r_offset);
816 r_info = mcld::bswap64(pRel.r_info);
841 pOffset = mcld::bswap64(pRel.r_offset);
842 r_info = mcld::bswap64(pRel.r_info);
843 pAddend = mcld::bswap64(pRel.r_addend);
  /external/clang/test/CodeGen/
builtins.c 118 P(bswap64, (N));
  /system/keymaster/
ocb.c 89 /* Compiler-specific intrinsics and fixes: bswap64, ntz */
97 #define bswap64(x) _byteswap_uint64(x) macro
105 #define bswap64(x) __builtin_bswap64(x) /* Assuming GCC 4.3+ */ macro
112 static inline uint64_t bswap64(uint64_t x) { function
293 r.l = bswap64(b.l);
294 r.r = bswap64(b.r);
781 ctx->KtopStr[0] = bswap64(ctx->KtopStr[0]);
782 ctx->KtopStr[1] = bswap64(ctx->KtopStr[1]);
    [all...]
  /external/qemu/include/exec/
cpu-all.h 59 return bswap64(s);
74 *s = bswap64(*s);
softmmu_template.h 73 # define BSWAP(X) bswap64(X)
  /external/wpa_supplicant_8/src/utils/
common.h 33 #define bswap_64 bswap64
  /frameworks/compile/mclinker/lib/Target/
GNULDBackend.cpp     [all...]
  /frameworks/compile/mclinker/lib/Object/
ObjectLinker.cpp     [all...]
  /external/chromium_org/third_party/yasm/source/config/android/
Makefile 731 modules/arch/x86/tests/bswap64.asm \
732 modules/arch/x86/tests/bswap64.hex \
    [all...]
  /external/chromium_org/third_party/yasm/source/config/ios/
Makefile 731 modules/arch/x86/tests/bswap64.asm \
732 modules/arch/x86/tests/bswap64.hex \
    [all...]
  /external/chromium_org/third_party/yasm/source/config/linux/
Makefile 731 modules/arch/x86/tests/bswap64.asm \
732 modules/arch/x86/tests/bswap64.hex \
    [all...]
  /external/chromium_org/third_party/yasm/source/config/mac/
Makefile 731 modules/arch/x86/tests/bswap64.asm \
732 modules/arch/x86/tests/bswap64.hex \
    [all...]
  /external/chromium_org/third_party/yasm/source/config/openbsd/
Makefile 731 modules/arch/x86/tests/bswap64.asm \
732 modules/arch/x86/tests/bswap64.hex \
    [all...]
  /external/chromium_org/third_party/yasm/source/config/win/
Makefile 731 modules/arch/x86/tests/bswap64.asm \
732 modules/arch/x86/tests/bswap64.hex \
    [all...]

Completed in 585 milliseconds