Lines Matching refs:zd
3949 ZSTDv06_DCtx* zd; member
3970 zbd->zd = ZSTDv06_createDCtx(); in ZBUFFv06_createDCtx()
3978 ZSTDv06_freeDCtx(zbd->zd); in ZBUFFv06_freeDCtx()
3992 return ZSTDv06_decompressBegin_usingDict(zbd->zd, dict, dictSize); in ZBUFFv06_decompressInitDictionary()
4048 …{ size_t const h1Size = ZSTDv06_nextSrcSizeToDecompress(zbd->zd); /* == ZSTDv06_frameHeaderSize… in ZBUFFv06_decompressContinue()
4049 … size_t const h1Result = ZSTDv06_decompressContinue(zbd->zd, NULL, 0, zbd->headerBuffer, h1Size); in ZBUFFv06_decompressContinue()
4052 size_t const h2Size = ZSTDv06_nextSrcSizeToDecompress(zbd->zd); in ZBUFFv06_decompressContinue()
4053 …size_t const h2Result = ZSTDv06_decompressContinue(zbd->zd, NULL, 0, zbd->headerBuffer+h1Size, h2S… in ZBUFFv06_decompressContinue()
4076 { size_t const neededInSize = ZSTDv06_nextSrcSizeToDecompress(zbd->zd); in ZBUFFv06_decompressContinue()
4083 size_t const decodedSize = ZSTDv06_decompressContinue(zbd->zd, in ZBUFFv06_decompressContinue()
4098 { size_t const neededInSize = ZSTDv06_nextSrcSizeToDecompress(zbd->zd); in ZBUFFv06_decompressContinue()
4108 { size_t const decodedSize = ZSTDv06_decompressContinue(zbd->zd, in ZBUFFv06_decompressContinue()
4141 { size_t nextSrcSizeHint = ZSTDv06_nextSrcSizeToDecompress(zbd->zd); in ZBUFFv06_decompressContinue()