Lines Matching defs:U64
306 typedef uint64_t U64;
316 typedef unsigned long long U64;
321 typedef U64 reg_t; /* 64-bits in x32 mode */
579 _BitScanForward64(&r, (U64)val);
584 return (unsigned)__builtin_ctzll((U64)val) >> 3;
586 const U64 m = 0x0101010101010101ULL;
588 return (unsigned)(((U64)((val & (m - 1)) * m)) >> 56);
609 return (unsigned)__builtin_clzll((U64)val) >> 3;
624 U64 const mask = 0x0101010101010101ULL;
625 U64 const t = (((val >> 8) - mask) | val) & mask;
764 LZ4_FORCE_INLINE U32 LZ4_hash5(U64 sequence, tableType_t const tableType)
768 const U64 prime5bytes = 889523592379ULL;
771 const U64 prime8bytes = 11400714785074694791ULL;