Home
last modified time | relevance | path

Searched refs:xxhState (Results 1 – 4 of 4) sorted by relevance

/linux-6.1.9/lib/zstd/decompress/
Dzstd_decompress_internal.h129 struct xxh64_state xxhState; member
Dzstd_decompress.c620 if (dctx->validateChecksum) xxh64_reset(&dctx->xxhState, 0); in ZSTD_decodeFrameHeader()
842 xxh64_update(&dctx->xxhState, op, decodedSize); in ZSTD_decompressFrame()
858 U32 const checkCalc = (U32)xxh64_digest(&dctx->xxhState); in ZSTD_decompressFrame()
1141 if (dctx->validateChecksum) xxh64_update(&dctx->xxhState, dst, rSize); in ZSTD_decompressContinue()
1174 U32 const h32 = (U32)xxh64_digest(&dctx->xxhState); in ZSTD_decompressContinue()
/linux-6.1.9/lib/zstd/compress/
Dzstd_compress.c1649 xxh64_reset(&zc->xxhState, 0); in ZSTD_resetCCtx_internal()
2803 xxh64_update(&cctx->xxhState, src, srcSize); in ZSTD_compress_frameChunk()
3439 U32 const checksum = (U32) xxh64_digest(&cctx->xxhState); in ZSTD_writeEpilogue()
4813 xxh64_update(&cctx->xxhState, src, srcSize); in ZSTD_compressSequences()
4825 U32 const checksum = (U32) xxh64_digest(&cctx->xxhState); in ZSTD_compressSequences()
Dzstd_compress_internal.h283 struct xxh64_state xxhState; member