Searched refs:xxhState (Results 1 - 6 of 6) sorted by relevance
/kernel/linux/linux-6.6/lib/zstd/decompress/ |
H A D | zstd_decompress_internal.h | 145 struct xxh64_state xxhState; member
|
H A D | zstd_decompress.c | 666 if (dctx->validateChecksum) xxh64_reset(&dctx->xxhState, 0); in ZSTD_decodeFrameHeader() 907 xxh64_update(&dctx->xxhState, op, decodedSize); in ZSTD_decompressFrame() 923 U32 const checkCalc = (U32)xxh64_digest(&dctx->xxhState); in ZSTD_decompressFrame() 1206 if (dctx->validateChecksum) xxh64_update(&dctx->xxhState, dst, rSize); in ZSTD_decompressContinue() 1239 U32 const h32 = (U32)xxh64_digest(&dctx->xxhState); in ZSTD_decompressContinue()
|
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | decompress.c | 93 struct xxh64_state xxhState; member 382 xxh64_reset(&dctx->xxhState, 0); in ZSTD_decodeFrameHeader() 1614 xxh64_update(&dctx->xxhState, op, decodedSize); in ZSTD_decompressFrame() 1623 U32 const checkCalc = (U32)xxh64_digest(&dctx->xxhState); in ZSTD_decompressFrame() 1820 xxh64_update(&dctx->xxhState, dst, rSize); in ZSTD_decompressContinue() 1838 U32 const h32 = (U32)xxh64_digest(&dctx->xxhState); in ZSTD_decompressContinue()
|
H A D | compress.c | 74 struct xxh64_state xxhState; member 234 xxh64_reset(&cctx->xxhState, 0); in ZSTD_continueCCtx() 280 xxh64_reset(&zc->xxhState, 0); in ZSTD_resetCCtx_advanced() 2365 xxh64_update(&cctx->xxhState, src, srcSize); in ZSTD_compress_generic() 2795 U32 const checksum = (U32)xxh64_digest(&cctx->xxhState); in ZSTD_writeEpilogue()
|
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A D | zstd_compress_internal.h | 373 struct xxh64_state xxhState; member
|
H A D | zstd_compress.c | 1850 xxh64_reset(&zc->xxhState, 0); in ZSTD_resetCCtx_internal() 3857 xxh64_update(&cctx->xxhState, src, srcSize); in ZSTD_compress_frameChunk() 4523 U32 const checksum = (U32) xxh64_digest(&cctx->xxhState); in ZSTD_writeEpilogue() 5933 xxh64_update(&cctx->xxhState, src, srcSize); in ZSTD_compressSequences() 5945 U32 const checksum = (U32) xxh64_digest(&cctx->xxhState); in ZSTD_compressSequences()
|
Completed in 29 milliseconds