HomeSort by relevance Sort by last modified time
    Searched refs:count_min (Results 1 - 2 of 2) sorted by null

  /external/opencv3/3rdparty/libwebp/utils/
huffman_encode.c 181 int count_min; local
210 for (count_min = 1; ; count_min *= 2) {
213 // So, we try by faking histogram entries to be at least 'count_min'.
219 (histogram[j] < count_min) ? count_min : histogram[j];
  /external/webp/src/utils/
huffman_encode.c 169 uint32_t count_min; local
191 for (count_min = 1; ; count_min *= 2) {
194 // So, we try by faking histogram entries to be at least 'count_min'.
200 (histogram[j] < count_min) ? count_min : histogram[j];

Completed in 37 milliseconds