Lines Matching refs:U32
68 static const U32 repStartValue[ZSTD_REP_NUM] = {1, 4, 8};
110 static const U32 LL_bits[MaxLL + 1] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 3, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16};
113 static const U32 LL_defaultNormLog = LL_DEFAULTNORMLOG;
115 static const U32 ML_bits[MaxML + 1] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
120 static const U32 ML_defaultNormLog = ML_DEFAULTNORMLOG;
124 static const U32 OF_defaultNormLog = OF_DEFAULTNORMLOG;
170 U32 off;
171 U32 len;
175 U32 price;
176 U32 off;
177 U32 mlen;
178 U32 litlen;
179 U32 rep[ZSTD_REP_NUM];
183 U32 offset;
196 U32 longLengthID; /* 0 == no longLength; 1 == Lit.longLength; 2 == Match.longLength; */
197 U32 longLengthPos;
201 U32 *matchLengthFreq;
202 U32 *litLengthFreq;
203 U32 *litFreq;
204 U32 *offCodeFreq;
205 U32 matchLengthSum;
206 U32 matchSum;
207 U32 litLengthSum;
208 U32 litSum;
209 U32 offCodeSum;
210 U32 log2matchLengthSum;
211 U32 log2matchSum;
212 U32 log2litLengthSum;
213 U32 log2litSum;
214 U32 log2offCodeSum;
215 U32 factor;
216 U32 staticPrices;
217 U32 cachedPrice;
218 U32 cachedLitLength;
256 ZSTD_STATIC U32 ZSTD_highbit32(U32 val) { return 31 - __builtin_clz(val); }