Home | History | Annotate | Download | only in dec

Lines Matching full:num_symbols

172     int num_symbols, int* const code_lengths) {
189 if (max_symbol > num_symbols) {
194 max_symbol = num_symbols;
198 while (symbol < num_symbols) {
212 if (symbol + repeat > num_symbols) {
238 const int num_symbols = VP8LReadBits(br, 1) + 1;
243 code_lengths[0] = num_symbols - 1;
245 if (num_symbols == 2) {
248 code_lengths[1] = num_symbols - 1;
251 alphabet_size, num_symbols);