HomeSort by relevance Sort by last modified time
    Searched defs:bswap64 (Results 1 - 5 of 5) 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); }
  /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);
  /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);
  /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))
  /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...]

Completed in 323 milliseconds