/third_party/skia/third_party/externals/libwebp/src/enc/ |
D | picture_enc.c | 98 uint64_t y_size, uv_size, a_size, total_size; in WebPPictureAllocYUVA() local 113 y_size = (uint64_t)y_stride * height; in WebPPictureAllocYUVA() 117 total_size = y_size + a_size + 2 * uv_size; in WebPPictureAllocYUVA() 138 mem += y_size; in WebPPictureAllocYUVA()
|
/third_party/ffmpeg/libavcodec/ |
D | smcenc.c | 154 const int y_size = FFMIN(4, height - cur_y); in smc_encode_stream() local 157 for (int y = 0; y < y_size; y++) { in smc_encode_stream() 181 const int y_size = FFMIN(4, height - cur_y); in smc_encode_stream() local 190 for (int y = 0; y < y_size; y++) { in smc_encode_stream() 210 const int y_size = FFMIN(4, height - cur_y); in smc_encode_stream() local 211 for (int y = 0; y < y_size; y++) in smc_encode_stream()
|
D | rpzaenc.c | 422 const int y_size = FFMIN(4, bi->image_height - bi->row * 4); in update_block_in_prev_frame() local 424 for (int y = 0; y < y_size; y++) { in update_block_in_prev_frame() 734 int y_size, rgb555; in rpza_encode_stream() local 739 y_size = FFMIN(4, bi.image_height - bi.row * 4); in rpza_encode_stream() 741 for (int y = 0; y < y_size; y++) { in rpza_encode_stream() 750 for (int y = y_size; y < 4; y++) { in rpza_encode_stream()
|
D | mpegvideo.c | 353 int y_size = s->b8_stride * (2 * s->mb_height + 1); in init_duplicate_context() local 355 int yc_size = y_size + 2 * c_size; in init_duplicate_context() 389 s->ac_val[1] = s->ac_val_base + y_size + s->mb_stride + 1; in init_duplicate_context() 527 int y_size, c_size, yc_size, i, mb_array_size, mv_table_size, x, y; in ff_mpv_init_context_frame() local 549 y_size = s->b8_stride * (2 * s->mb_height + 1); in ff_mpv_init_context_frame() 551 yc_size = y_size + 2 * c_size; in ff_mpv_init_context_frame() 630 if (!(s->coded_block_base = av_mallocz(y_size + (s->mb_height&1)*2*s->b8_stride)) || in ff_mpv_init_context_frame() 643 s->dc_val[1] = s->dc_val_base + y_size + s->mb_stride + 1; in ff_mpv_init_context_frame()
|
D | h264dec.c | 217 int y_size = (2 * h->mb_width + 1) * (2 * h->mb_height + 1); in ff_h264_alloc_tables() local 218 int yc_size = y_size + 2 * big_mb_num; in ff_h264_alloc_tables() 246 er->dc_val[1] = h->dc_val_base + y_size + h->mb_stride + 1; in ff_h264_alloc_tables()
|
/third_party/skia/third_party/externals/libwebp/src/dec/ |
D | buffer_dec.c | 56 const uint64_t y_size = MIN_BUFFER_SIZE(width, height, y_stride); in CheckDecBuffer() local 60 ok &= (y_size <= buf->y_size); in CheckDecBuffer() 130 buf->y_size = (size_t)size; in AllocateBuffer()
|
D | webp_dec.c | 588 output.u.YUVA.y_size = luma_size; in WebPDecodeYUVInto()
|
D | idec_dec.c | 746 idec->output_.u.YUVA.y_size = luma_size; in WebPINewYUVA()
|
/third_party/skia/third_party/externals/libwebp/examples/ |
D | dwebp.c | 154 output_buffer->u.YUVA.y_size = stride * h; in AllocateExternalBuffer() 155 tmp += output_buffer->u.YUVA.y_size; in AllocateExternalBuffer()
|
/third_party/ffmpeg/libavfilter/ |
D | af_adeclick.c | 41 int y_size; member 312 av_fast_malloc(&c->y, &c->y_size, n * sizeof(*c->y)); in do_interpolation() 712 c->y_size = 0; in uninit()
|
/third_party/skia/third_party/externals/libwebp/imageio/ |
D | webpdec.c | 207 output_buffer->u.YUVA.y_size = pic->height * pic->y_stride; in ReadWebP()
|
/third_party/skia/third_party/externals/libwebp/src/webp/ |
D | decode.h | 194 size_t y_size; // luma plane size member
|
/third_party/astc-encoder/Source/ |
D | tinyexr.h | 10505 unsigned int x_size, y_size; in ParseEXRHeader() local 10509 memcpy(&y_size, &data.at(4), sizeof(int)); in ParseEXRHeader() 10512 tinyexr::swap4(&y_size); in ParseEXRHeader() 10515 info->tile_size_y = static_cast<int>(y_size); in ParseEXRHeader()
|