HomeSort by relevance Sort by last modified time
    Searched defs:bswap32 (Results 1 - 5 of 5) sorted by null

  /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); }
  /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);
  /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/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))
  /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...]

Completed in 158 milliseconds