Searched refs:LZ4F_compressBound (Results 1 - 5 of 5) sorted by relevance

/fuchsia/zircon/system/ulib/blobfs/include/blobfs/
H A Dlz4.h42 return LZ4F_compressBound(blob_size, nullptr);
/fuchsia/zircon/third_party/ulib/lz4/include/lz4/
H A Dlz4frame.h182 size_t LZ4F_compressBound(size_t srcSize, const LZ4F_preferences_t* prefsPtr);
183 /* LZ4F_compressBound() :
194 * You can get the minimum value of dstMaxSize by using LZ4F_compressBound().
/fuchsia/zircon/third_party/ulib/lz4/
H A Dlz4frame.c269 streamSize = LZ4F_compressBound(srcSize, &prefs);
473 /* LZ4F_compressBound() : gives the size of Dst buffer given a srcSize to handle worst case situations.
477 size_t LZ4F_compressBound(size_t srcSize, const LZ4F_preferences_t* preferencesPtr) function
557 * You can get the minimum value of dstMaxSize by using LZ4F_compressBound()
576 if (dstMaxSize < LZ4F_compressBound(srcSize, &(cctxPtr->prefs))) return (size_t)-LZ4F_ERROR_dstMaxSize_tooSmall;
/fuchsia/zircon/system/host/fvm/container/
H A Dsparse.cpp24 Reset(LZ4F_compressBound(max_len, &lz4_prefs));
/fuchsia/zircon/system/host/zbi/
H A Dzbi.cpp466 auto buffer = GetBuffer(LZ4F_compressBound(input.iov_len, &prefs_));
476 auto buffer = GetBuffer(LZ4F_compressBound(0, &prefs_));

Completed in 39 milliseconds