Home
last modified time | relevance | path

Searched defs:ZSTD_COMPRESSBOUND (Results 1 - 1 of 1) sorted by relevance

/kernel/linux/linux-6.6/include/linux/
H A Dzstd_lib.h171 #define ZSTD_COMPRESSBOUND(srcSize) ((srcSize) + ((srcSize)>>8) + (((srcSize) < (128<<10)) ? (((128<<10) - (srcSize)) >> 11) /* margin, from 64 to 0 */ : 0)) /* this formula ensures that bound(A) + bound(B) <= bound(A+B) as long as A and B >= 128 KB */ macro

Completed in 5 milliseconds