Lines Matching refs:U32

65 	U32 rep[ZSTD_REP_NUM];
82 U32 litEntropy;
83 U32 fseEntropy;
86 U32 dictID;
168 U32 const magic = ZSTD_readLE32(buffer); in ZSTD_isFrame()
186 U32 const dictID = fhd & 3; in ZSTD_frameHeaderSize()
187 U32 const singleSegment = (fhd >> 5) & 1; in ZSTD_frameHeaderSize()
188 U32 const fcsId = fhd >> 6; in ZSTD_frameHeaderSize()
226 U32 const dictIDSizeCode = fhdByte & 3; in ZSTD_getFrameParams()
227 U32 const checksumFlag = (fhdByte >> 2) & 1; in ZSTD_getFrameParams()
228 U32 const singleSegment = (fhdByte >> 5) & 1; in ZSTD_getFrameParams()
229 U32 const fcsID = fhdByte >> 6; in ZSTD_getFrameParams()
230 U32 const windowSizeMax = 1U << ZSTD_WINDOWLOG_MAX; in ZSTD_getFrameParams()
231 U32 windowSize = 0; in ZSTD_getFrameParams()
232 U32 dictID = 0; in ZSTD_getFrameParams()
238 U32 const windowLog = (wlByte >> 3) + ZSTD_WINDOWLOG_ABSOLUTEMIN; in ZSTD_getFrameParams()
272 windowSize = (U32)frameContentSize; in ZSTD_getFrameParams()
315 const U32 magicNumber = ZSTD_readLE32(src); in ZSTD_findDecompressedSize()
379 U32 lastBlock;
380 U32 origSize;
390 U32 const cBlockHeader = ZSTD_readLE24(src); in ZSTD_getcBlockSize()
391 U32 const cSize = cBlockHeader >> 3; in ZSTD_getcBlockSize()
442 U32 singleStream = 0; in ZSTD_decodeLiteralsBlock()
443 U32 const lhlCode = (istart[0] >> 2) & 3; in ZSTD_decodeLiteralsBlock()
444 U32 const lhc = ZSTD_readLE32(istart); in ZSTD_decodeLiteralsBlock()
495 U32 const lhlCode = ((istart[0]) >> 2) & 3; in ZSTD_decodeLiteralsBlock()
529 U32 const lhlCode = ((istart[0]) >> 2) & 3; in ZSTD_decodeLiteralsBlock()
564 U32 alignedBy4;
743 …DTableSpace, const FSE_DTable **DTablePtr, symbolEncodingType_e type, U32 max, U32 maxLog, const v… in ZSTD_buildSeqTable()
744 …size_t srcSize, const FSE_decode_t4 *defaultTable, U32 flagRepeatTable, void *workspace, size_t wo… in ZSTD_buildSeqTable()
763 U32 tableLog; in ZSTD_buildSeqTable()
765 size_t const spaceUsed32 = ALIGN(sizeof(S16) * (MaxSeq + 1), sizeof(U32)) >> 2; in ZSTD_buildSeqTable()
769 workspace = (U32 *)workspace + spaceUsed32; in ZSTD_buildSeqTable()
926 U32 const llCode = FSE_peekSymbol(&seqState->stateLL); in ZSTD_decodeSequence()
927 U32 const mlCode = FSE_peekSymbol(&seqState->stateML); in ZSTD_decodeSequence()
928 U32 const ofCode = FSE_peekSymbol(&seqState->stateOffb); /* <= maxOff, by table construction */ in ZSTD_decodeSequence()
930 U32 const llBits = LL_bits[llCode]; in ZSTD_decodeSequence()
931 U32 const mlBits = ML_bits[mlCode]; in ZSTD_decodeSequence()
932 U32 const ofBits = ofCode; in ZSTD_decodeSequence()
933 U32 const totalBits = llBits + mlBits + ofBits; in ZSTD_decodeSequence()
935 …static const U32 LL_base[MaxLL + 1] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, … in ZSTD_decodeSequence()
938 …static const U32 ML_base[MaxML + 1] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, … in ZSTD_decodeSequence()
942 …static const U32 OF_base[MaxOff + 1] = {0, 1, 1, 5, 0xD, 0x1D, 0x3D, 0x7D, … in ZSTD_decodeSequence()
1042 U32 i; in ZSTD_execSequence()
1054 static const U32 dec32table[] = {0, 1, 2, 1, 4, 4, 4, 4}; /* added */ in ZSTD_execSequence()
1111 U32 i; in ZSTD_decompressSequences()
1136 U32 i; in ZSTD_decompressSequences()
1138 dctx->entropy.rep[i] = (U32)(seqState.prevOffset[i]); in ZSTD_decompressSequences()
1158 U32 const llCode = FSE_peekSymbol(&seqState->stateLL); in ZSTD_decodeSequenceLong_generic()
1159 U32 const mlCode = FSE_peekSymbol(&seqState->stateML); in ZSTD_decodeSequenceLong_generic()
1160 U32 const ofCode = FSE_peekSymbol(&seqState->stateOffb); /* <= maxOff, by table construction */ in ZSTD_decodeSequenceLong_generic()
1162 U32 const llBits = LL_bits[llCode]; in ZSTD_decodeSequenceLong_generic()
1163 U32 const mlBits = ML_bits[mlCode]; in ZSTD_decodeSequenceLong_generic()
1164 U32 const ofBits = ofCode; in ZSTD_decodeSequenceLong_generic()
1165 U32 const totalBits = llBits + mlBits + ofBits; in ZSTD_decodeSequenceLong_generic()
1167 …static const U32 LL_base[MaxLL + 1] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, … in ZSTD_decodeSequenceLong_generic()
1170 …static const U32 ML_base[MaxML + 1] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, … in ZSTD_decodeSequenceLong_generic()
1174 …static const U32 OF_base[MaxOff + 1] = {0, 1, 1, 5, 0xD, 0x1D, 0x3D, 0x7D, … in ZSTD_decodeSequenceLong_generic()
1297 U32 i; in ZSTD_execSequenceLong()
1309 static const U32 dec32table[] = {0, 1, 2, 1, 4, 4, 4, 4}; /* added */ in ZSTD_execSequenceLong()
1374 U32 i; in ZSTD_decompressSequencesLong()
1418 U32 i; in ZSTD_decompressSequencesLong()
1420 dctx->entropy.rep[i] = (U32)(seqState.prevOffset[i]); in ZSTD_decompressSequencesLong()
1614 U32 const checkCalc = (U32)xxh64_digest(&dctx->xxhState); in ZSTD_decompressFrame()
1615 U32 checkRead; in ZSTD_decompressFrame()
1650 U32 magicNumber; in ZSTD_decompressMultiFrame()
1828 U32 const h32 = (U32)xxh64_digest(&dctx->xxhState); in ZSTD_decompressContinue()
1829 U32 const check32 = ZSTD_readLE32(src); /* srcSize == 4, guaranteed by dctx->expected */ in ZSTD_decompressContinue()
1882 U32 offcodeMaxValue = MaxOff, offcodeLog; in ZSTD_loadEntropy()
1922 U32 const rep = ZSTD_readLE32(dictPtr); in ZSTD_loadEntropy()
1938 U32 const magic = ZSTD_readLE32(dict); in ZSTD_decompress_insertDictionary()
1974 U32 dictID;
1975 U32 entropyPresent;
2018 U32 const magic = ZSTD_readLE32(ddict->dictContent); in ZSTD_loadEntropy_inDDict()
2169 U32 previousLegacyVersion;
2170 U32 legacyVersion;
2171 U32 hostageByte;
2296 U32 someMoreWork = 1; in ZSTD_decompressStream()