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, …
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, …
120 static const U32 ML_defaultNormLog = ML_DEFAULTNORMLOG;
124 static const U32 OF_defaultNormLog = OF_DEFAULTNORMLOG;
160 U32 off;
161 U32 len;
165 U32 price;
166 U32 off;
167 U32 mlen;
168 U32 litlen;
169 U32 rep[ZSTD_REP_NUM];
173 U32 offset;
186 U32 longLengthID; /* 0 == no longLength; 1 == Lit.longLength; 2 == Match.longLength; */
187 U32 longLengthPos;
191 U32 *matchLengthFreq;
192 U32 *litLengthFreq;
193 U32 *litFreq;
194 U32 *offCodeFreq;
195 U32 matchLengthSum;
196 U32 matchSum;
197 U32 litLengthSum;
198 U32 litSum;
199 U32 offCodeSum;
200 U32 log2matchLengthSum;
201 U32 log2matchSum;
202 U32 log2litLengthSum;
203 U32 log2litSum;
204 U32 log2offCodeSum;
205 U32 factor;
206 U32 staticPrices;
207 U32 cachedPrice;
208 U32 cachedLitLength;
246 ZSTD_STATIC U32 ZSTD_highbit32(U32 val) { return 31 - __builtin_clz(val); } in ZSTD_highbit32()