Searched refs:xxh64_update (Results 1 - 10 of 10) sorted by relevance
/kernel/linux/linux-5.10/include/linux/ |
H A D | xxhash.h | 215 * xxh64_update() - hash the data given and update the xxh64 state 220 * After calling xxh64_reset() call xxh64_update() as many times as necessary. 224 int xxh64_update(struct xxh64_state *state, const void *input, size_t length);
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | xxhash.h | 215 * xxh64_update() - hash the data given and update the xxh64 state 220 * After calling xxh64_reset() call xxh64_update() as many times as necessary. 224 int xxh64_update(struct xxh64_state *state, const void *input, size_t length);
|
/kernel/linux/linux-5.10/crypto/ |
H A D | xxhash_generic.c | 46 xxh64_update(&dctx->xxhstate, data, length); in xxhash64_update()
|
/kernel/linux/linux-6.6/crypto/ |
H A D | xxhash_generic.c | 46 xxh64_update(&dctx->xxhstate, data, length); in xxhash64_update()
|
/kernel/linux/linux-5.10/lib/ |
H A D | xxhash.c | 377 int xxh64_update(struct xxh64_state *state, const void *input, const size_t len) in xxh64_update() function 442 EXPORT_SYMBOL(xxh64_update); variable
|
/kernel/linux/linux-6.6/lib/ |
H A D | xxhash.c | 377 int xxh64_update(struct xxh64_state *state, const void *input, const size_t len) in xxh64_update() function 442 EXPORT_SYMBOL(xxh64_update); variable
|
/kernel/linux/linux-6.6/lib/zstd/decompress/ |
H A D | zstd_decompress.c | 61 #include <linux/xxhash.h> /* xxh64_reset, xxh64_update, xxh64_digest, XXH64 */ 907 xxh64_update(&dctx->xxhState, op, decodedSize); in ZSTD_decompressFrame() 1206 if (dctx->validateChecksum) xxh64_update(&dctx->xxhState, dst, rSize); in ZSTD_decompressContinue()
|
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | decompress.c | 1614 xxh64_update(&dctx->xxhState, op, decodedSize); in ZSTD_decompressFrame() 1820 xxh64_update(&dctx->xxhState, dst, rSize); in ZSTD_decompressContinue()
|
H A D | compress.c | 2365 xxh64_update(&cctx->xxhState, src, srcSize); in ZSTD_compress_generic()
|
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A D | zstd_compress.c | 3857 xxh64_update(&cctx->xxhState, src, srcSize); in ZSTD_compress_frameChunk() 5933 xxh64_update(&cctx->xxhState, src, srcSize); in ZSTD_compressSequences()
|
Completed in 28 milliseconds