Lines Matching refs:U64
73 U64 frameContentSize;
188 U64 const rSize = srcSize + dictSize + minSrcSize; in ZSTD_adjustCParams()
189 if (rSize < ((U64)1 << ZSTD_WINDOWLOG_MAX)) { in ZSTD_adjustCParams()
217 static size_t ZSTD_continueCCtx(ZSTD_CCtx *cctx, ZSTD_parameters params, U64 frameContentSize) in ZSTD_continueCCtx()
242 static size_t ZSTD_resetCCtx_advanced(ZSTD_CCtx *zc, ZSTD_parameters params, U64 frameContentSize, … in ZSTD_resetCCtx_advanced()
894 return (__builtin_ctzll((U64)val) >> 3); in ZSTD_NbCommonBytes()
960 static const U64 prime5bytes = 889523592379ULL;
961 static size_t ZSTD_hash5(U64 u, U32 h) { return (size_t)(((u << (64 - 40)) * prime5bytes) >> (64 - … in ZSTD_hash5()
964 static const U64 prime6bytes = 227718039650203ULL;
965 static size_t ZSTD_hash6(U64 u, U32 h) { return (size_t)(((u << (64 - 48)) * prime6bytes) >> (64 - … in ZSTD_hash6()
968 static const U64 prime7bytes = 58295818150454627ULL;
969 static size_t ZSTD_hash7(U64 u, U32 h) { return (size_t)(((u << (64 - 56)) * prime7bytes) >> (64 - … in ZSTD_hash7()
972 static const U64 prime8bytes = 0xCF1BBCDCB7A56463ULL;
973 static size_t ZSTD_hash8(U64 u, U32 h) { return (size_t)(((u)*prime8bytes) >> (64 - h)); } in ZSTD_hash8()
2431 static size_t ZSTD_writeFrameHeader(void *dst, size_t dstCapacity, ZSTD_parameters params, U64 pled… in ZSTD_writeFrameHeader()
2483 ZSTD_writeLE64(op + pos, (U64)(pledgedSrcSize)); in ZSTD_writeFrameHeader()
2738 …nal(ZSTD_CCtx *cctx, const void *dict, size_t dictSize, ZSTD_parameters params, U64 pledgedSrcSize) in ZSTD_compressBegin_internal()
2967 U64 pledgedSrcSize;
2968 U64 inputProcessed;
3414 U64 const rSize = srcSize + dictSize ? srcSize + dictSize + addedSize : (U64)-1; in ZSTD_getCParams()