Lines Matching refs:U32
58 static const U32 repStartValue[ZSTD_REP_NUM] = {1, 4, 8};
100 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, …
103 static const U32 LL_defaultNormLog = LL_DEFAULTNORMLOG;
105 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, …
110 static const U32 ML_defaultNormLog = ML_DEFAULTNORMLOG;
114 static const U32 OF_defaultNormLog = OF_DEFAULTNORMLOG;
150 U32 off;
151 U32 len;
155 U32 price;
156 U32 off;
157 U32 mlen;
158 U32 litlen;
159 U32 rep[ZSTD_REP_NUM];
163 U32 offset;
176 U32 longLengthID; /* 0 == no longLength; 1 == Lit.longLength; 2 == Match.longLength; */
177 U32 longLengthPos;
181 U32 *matchLengthFreq;
182 U32 *litLengthFreq;
183 U32 *litFreq;
184 U32 *offCodeFreq;
185 U32 matchLengthSum;
186 U32 matchSum;
187 U32 litLengthSum;
188 U32 litSum;
189 U32 offCodeSum;
190 U32 log2matchLengthSum;
191 U32 log2matchSum;
192 U32 log2litLengthSum;
193 U32 log2litSum;
194 U32 log2offCodeSum;
195 U32 factor;
196 U32 staticPrices;
197 U32 cachedPrice;
198 U32 cachedLitLength;
236 ZSTD_STATIC U32 ZSTD_highbit32(U32 val) { return 31 - __builtin_clz(val); } in ZSTD_highbit32()