Home | History | Annotate | Download | only in dec

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 */
158 step = 2;
163 ReplicateValue(&table[BrotliReverseBits(key)], step, table_size, code);
166 step <<= 1;
183 int step; /* step size to replicate values in current table */
213 step = 2;
220 ReplicateValue(&table[BrotliReverseBits(key)], step, table_size, code);
223 step <<= 1;
239 for (len = root_bits + 1, step = 2; len <= max_length; ++len) {
258 &table[BrotliReverseBits(sub_key)], step, table_size, code);
261 step <<= 1;