• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/sys/contrib/openzfs/module/zstd/lib/

Lines Matching defs:frameContentSize

5097     unsigned long long frameContentSize; /* if == ZSTD_CONTENTSIZE_UNKNOWN, it means this field is not available. 0 means "empty" */
5098 unsigned long long windowSize; /* can be very large, up to <= frameContentSize */
5100 ZSTD_frameType_e frameType; /* if == ZSTD_skippableFrame, frameContentSize is the size of skippable content */
5116 ZSTDLIB_API size_t ZSTD_decodingBufferSize_min(unsigned long long windowSize, unsigned long long frameContentSize); /**< when frame content size is not known, pass in frameContentSize == ZSTD_CONTENTSIZE_UNKNOWN */
23594 struct ZSTDv06_frameParams_s { unsigned long long frameContentSize; unsigned windowLog; };
23788 unsigned long long frameContentSize;
23918 return fParams.frameContentSize;
23926 return fParams.frameContentSize;
24766 zfhPtr->frameContentSize = MEM_readLE32((const char *)src + ZSTD_FRAMEIDSIZE);
24787 U64 frameContentSize = ZSTD_CONTENTSIZE_UNKNOWN;
24809 case 0 : if (singleSegment) frameContentSize = ip[pos]; break;
24810 case 1 : frameContentSize = MEM_readLE16(ip+pos)+256; break;
24811 case 2 : frameContentSize = MEM_readLE32(ip+pos); break;
24812 case 3 : frameContentSize = MEM_readLE64(ip+pos); break;
24814 if (singleSegment) windowSize = frameContentSize;
24817 zfhPtr->frameContentSize = frameContentSize;
24857 return zfh.frameContentSize;
25026 frameSizeInfo.decompressedBound = (zfh.frameContentSize != ZSTD_CONTENTSIZE_UNKNOWN)
25027 ? zfh.frameContentSize
25180 if (dctx->fParams.frameContentSize != ZSTD_CONTENTSIZE_UNKNOWN) {
25181 RETURN_ERROR_IF((U64)(op-ostart) != dctx->fParams.frameContentSize,
25497 dctx->fParams.frameContentSize != ZSTD_CONTENTSIZE_UNKNOWN
25498 && dctx->decodedSize != dctx->fParams.frameContentSize,
25990 size_t ZSTD_decodingBufferSize_min(unsigned long long windowSize, unsigned long long frameContentSize)
25994 unsigned long long const neededSize = MIN(frameContentSize, neededRBSize);
26184 if (zds->fParams.frameContentSize != ZSTD_CONTENTSIZE_UNKNOWN
26186 && (U64)(size_t)(oend-op) >= zds->fParams.frameContentSize) {
26204 && zds->fParams.frameContentSize != ZSTD_CONTENTSIZE_UNKNOWN
26205 && (U64)(size_t)(oend-op) < zds->fParams.frameContentSize) {
26233 ? ZSTD_decodingBufferSize_min(zds->fParams.windowSize, zds->fParams.frameContentSize)
26318 if ( (zds->outBuffSize < zds->fParams.frameContentSize)