Searched refs:tmp_row (Results 1 – 3 of 3) sorted by relevance
/third_party/mesa3d/src/util/format/ |
D | u_format.c | 742 uint8_t *tmp_row; in util_format_translate() local 749 tmp_stride = MAX2(width, x_step) * 4 * sizeof *tmp_row; in util_format_translate() 750 tmp_row = malloc(y_step * tmp_stride); in util_format_translate() 751 if (!tmp_row) in util_format_translate() 755 …util_format_unpack_rgba_8unorm_rect(src_format, tmp_row, tmp_stride, src_row, src_stride, width, y… in util_format_translate() 756 pack->pack_rgba_8unorm(dst_row, dst_stride, tmp_row, tmp_stride, width, y_step); in util_format_translate() 764 …util_format_unpack_rgba_8unorm_rect(src_format, tmp_row, tmp_stride, src_row, src_stride, width, h… in util_format_translate() 765 pack->pack_rgba_8unorm(dst_row, dst_stride, tmp_row, tmp_stride, width, height); in util_format_translate() 768 free(tmp_row); in util_format_translate() 773 int *tmp_row; in util_format_translate() local [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | pngdec.c | 98 uint8_t *tmp_row; member 391 ff_png_filter_row(&s->dsp, s->tmp_row, s->crow_buf[0], s->crow_buf + 1, in png_handle_row() 393 FFSWAP(uint8_t *, s->last_row, s->tmp_row); in png_handle_row() 778 av_fast_padded_malloc(&s->tmp_row, &s->tmp_row_size, s->row_size); in decode_idat_chunk() 779 if (!s->tmp_row) in decode_idat_chunk() 1711 av_freep(&s->tmp_row); in png_dec_end()
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
D | vp8l_enc.c | 1550 tmp_row[x] = prev_idx; \ 1552 VP8LBundleColorMap(tmp_row, width, xbits, dst); \ 1568 uint8_t* const tmp_row = (uint8_t*)WebPSafeMalloc(width, sizeof(*tmp_row)); in ApplyPalette() local 1571 if (tmp_row == NULL) return VP8_ENC_ERROR_OUT_OF_MEMORY; in ApplyPalette() 1615 WebPSafeFree(tmp_row); in ApplyPalette()
|