Searched refs:frameContentSize (Results 1 - 3 of 3) sorted by relevance

/linux-master/lib/zstd/decompress/
H A Dzstd_decompress.c441 zfhPtr->frameContentSize = MEM_readLE32((const char *)src + ZSTD_FRAMEIDSIZE);
462 U64 frameContentSize = ZSTD_CONTENTSIZE_UNKNOWN; local
488 case 0 : if (singleSegment) frameContentSize = ip[pos]; break;
489 case 1 : frameContentSize = MEM_readLE16(ip+pos)+256; break;
490 case 2 : frameContentSize = MEM_readLE32(ip+pos); break;
491 case 3 : frameContentSize = MEM_readLE64(ip+pos); break;
493 if (singleSegment) windowSize = frameContentSize;
496 zfhPtr->frameContentSize = frameContentSize;
529 return zfh.frameContentSize;
1773 ZSTD_decodingBufferSize_min(unsigned long long windowSize, unsigned long long frameContentSize) argument
[all...]
/linux-master/include/linux/
H A Dzstd_lib.h2476 unsigned long long frameContentSize; /* if == ZSTD_CONTENTSIZE_UNKNOWN, it means this field is not available. 0 means "empty" */ member in struct:__anon110
2477 unsigned long long windowSize; /* can be very large, up to <= frameContentSize */
2479 ZSTD_frameType_e frameType; /* if == ZSTD_skippableFrame, frameContentSize is the size of skippable content */
2495 ZSTDLIB_STATIC_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 */
/linux-master/drivers/base/firmware_loader/
H A Dmain.c326 params.frameContentSize == ZSTD_CONTENTSIZE_UNKNOWN) {
330 out_size = params.frameContentSize;

Completed in 137 milliseconds