Lines Matching defs:dictID
95 U32 dictID;
116 dctx->dictID = 0;
195 U32 const dictID = fhd & 3;
198 return ZSTD_frameHeaderSize_prefix + !singleSegment + ZSTD_did_fieldSize[dictID] + ZSTD_fcs_fieldSize[fcsId] + (singleSegment && !fcsId);
241 U32 dictID = 0;
258 dictID = ip[pos];
262 dictID = ZSTD_readLE16(ip + pos);
266 dictID = ZSTD_readLE32(ip + pos);
286 fparamsPtr->dictID = dictID;
379 if (dctx->fParams.dictID && (dctx->dictID != dctx->fParams.dictID))
1881 dictPtr += 8; /* skip header = magic + dictID */
1953 dctx->dictID = ZSTD_readLE32((const char *)dict + 4);
1984 U32 dictID;
1999 dstDCtx->dictID = ddict->dictID;
2023 ddict->dictID = 0;
2032 ddict->dictID = ZSTD_readLE32((const char *)ddict->dictContent + 4);
2102 * Provides the dictID stored within dictionary.
2115 * Provides the dictID of the dictionary loaded into `ddict`.
2126 * Provides the dictID required to decompressed the frame stored within `src`.
2127 * If @return == 0, the dictID could not be decoded.
2130 * - The frame was built with dictID intentionally removed. Whatever dictionary is necessary is a hidden information.
2141 return zfp.dictID;