Home | History | Annotate | Download | only in enc

Lines Matching full:num_matches

377     const int* starting_dist_cache, const size_t num_matches,
472 for (j = 0; j < num_matches; ++j) {
590 const uint32_t* num_matches,
603 num_matches[i], &matches[cur_match_pos], model, &queue, nodes);
605 cur_match_pos += num_matches[i];
606 if (num_matches[i] == 1 &&
618 cur_match_pos += num_matches[i];
656 size_t num_matches = FindAllMatchesH10(hasher, dictionary, ringbuffer,
660 if (num_matches > 0 &&
661 BackwardMatchLength(&matches[num_matches - 1]) > max_zopfli_len) {
662 matches[0] = matches[num_matches - 1];
663 num_matches = 1;
666 params, max_backward_limit, dist_cache, num_matches, matches, &model,
669 if (num_matches == 1 && BackwardMatchLength(&matches[0]) > max_zopfli_len) {
717 uint32_t* num_matches = BROTLI_ALLOC(m, uint32_t, num_bytes);
751 num_matches[i] = (uint32_t)num_found_matches;
757 num_matches[i] = 1;
761 memset(&num_matches[i + 1], 0, skip * sizeof(num_matches[0]));
792 &model, num_matches, matches, nodes);
799 BROTLI_FREE(m, num_matches);