Lines Matching refs:step
78 /* Stores code in table[0], table[step], table[2*step], ..., table[end] */
79 /* Assumes that end is an integer multiple of step */
81 int step, int end,
84 end -= step;
111 int step; /* step size to replicate values in current table */
157 step = 2;
161 ReplicateValue(&table[BrotliReverseBits(key)], step, table_size, code);
164 step <<= 1;
181 int step; /* step size to replicate values in current table */
210 step = 2;
216 ReplicateValue(&table[BrotliReverseBits(key)], step, table_size, code);
219 step <<= 1;
234 for (len = root_bits + 1, step = 2; len <= max_length; ++len) {
252 &table[BrotliReverseBits(sub_key)], step, table_size, code);
255 step <<= 1;