Lines Matching defs:dictID
68 U32 dictID;
226 cctx->dictID = 0;
326 zc->dictID = 0;
378 dstCCtx->dictID = srcCCtx->dictID;
2431 static size_t ZSTD_writeFrameHeader(void *dst, size_t dstCapacity, ZSTD_parameters params, U64 pledgedSrcSize, U32 dictID)
2434 U32 const dictIDSizeCode = (dictID > 0) + (dictID >= 256) + (dictID >= 65536); /* 0-3 */
2456 op[pos] = (BYTE)(dictID);
2460 ZSTD_writeLE16(op + pos, (U16)dictID);
2464 ZSTD_writeLE32(op + pos, dictID);
2499 fhSize = ZSTD_writeFrameHeader(dst, dstCapacity, cctx->params, cctx->frameContentSize, cctx->dictID);
2634 cctx->dictID = cctx->params.fParams.noDictIDFlag ? 0 : ZSTD_readLE32(dictPtr);