Searched refs:best_size (Results 1 – 6 of 6) sorted by relevance
/third_party/skia/third_party/externals/libpng/contrib/tools/ |
D | pngcp.c | 425 png_alloc_size_t best_size; member 465 png_alloc_size_t best_size; /* Best so far for this option */ member 852 dp->stack[sp].best_size = in push_opt() 942 png_alloc_size_t best_size = dp->stack[sp].best_size; in next_opt() local 948 assert(best_size < MAX_SIZE); in next_opt() 953 dp->stack[sp].lo_size = best_size; in next_opt() 964 dp->stack[sp].hi_size = best_size; in next_opt() 988 dp->stack[sp].lo_size = best_size; in next_opt() 990 best_size = lo_size; in next_opt() 999 dp->stack[sp].hi_size = best_size; in next_opt() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | cinepakenc.c | 867 int best_size = 0; in rd_strip() local 974 if (best_size == 0 || score < *best_score) { in rd_strip() 976 best_size = encode_mode(s, h, in rd_strip() 984 write_strip_header(s, y, h, keyframe, s->strip_buf, best_size); in rd_strip() 990 best_size += STRIP_HEADER_SIZE; in rd_strip() 991 memcpy(buf, s->strip_buf, best_size); in rd_strip() 993 return best_size; in rd_strip() 1011 int num_strips, strip, i, y, nexty, size, temp_size, best_size; in rd_frame() local 1123 best_size = size + write_cvid_header(s, s->frame_buf, num_strips, size, all_no_skip); in rd_frame() 1126 memcpy(buf, s->frame_buf, best_size); in rd_frame() [all …]
|
D | msmpeg4enc.c | 156 int best = 0, best_size = INT_MAX; in find_best_tables() local 190 if(size<best_size){ in find_best_tables() 191 best_size= size; in find_best_tables()
|
D | wavpackenc.c | 1025 uint32_t best_size = UINT32_MAX, size; in wv_mono() local 1101 if (size < best_size) { in wv_mono() 1106 best_size = size; in wv_mono() 1817 uint32_t best_size = UINT32_MAX, size; in wv_stereo() local 1926 if (size < best_size) { in wv_stereo() 1932 best_size = size; in wv_stereo()
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
D | vp8l_enc.c | 1747 size_t best_size = ~(size_t)0; in EncodeStreamHook() local 1862 if (VP8LBitWriterNumBytes(bw) < best_size) { in EncodeStreamHook() 1863 best_size = VP8LBitWriterNumBytes(bw); in EncodeStreamHook() 1878 stats->lossless_size = (int)(best_size - byte_position); in EncodeStreamHook()
|
/third_party/skia/third_party/externals/libwebp/src/mux/ |
D | anim_encode.c | 1014 size_t best_size = ~0; in PickBestCandidate() local 1018 if (candidate_size < best_size) { in PickBestCandidate() 1020 best_size = candidate_size; in PickBestCandidate()
|