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

  /device/google/contexthub/firmware/external/freebsd/inc/sys/
endian.h 40 #define bswap64(x) __bswap64(x) macro
49 #define htobe64(x) bswap64((x))
56 #define be64toh(x) bswap64((x))
66 #define htole64(x) bswap64((x))
73 #define le64toh(x) bswap64((x))
  /frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h 109 #ifdef bswap64
110 #undef bswap64 macro
126 /// bswap64 - byte swap 64-bit version
128 inline uint64_t bswap64(uint64_t pData) { function in namespace:mcld
149 return bswap64(pData);
  /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);
780 ctx->KtopStr[0] = bswap64(ctx->KtopStr[0]);
781 ctx->KtopStr[1] = bswap64(ctx->KtopStr[1]);
    [all...]

Completed in 160 milliseconds