Home
last modified time | relevance | path

Searched refs:tmp_row (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/util/
Du_format.c712 uint8_t *tmp_row; in util_format_translate() local
719 tmp_stride = MAX2(width, x_step) * 4 * sizeof *tmp_row; in util_format_translate()
720 tmp_row = MALLOC(y_step * tmp_stride); in util_format_translate()
721 if (!tmp_row) in util_format_translate()
725 … src_format_desc->unpack_rgba_8unorm(tmp_row, tmp_stride, src_row, src_stride, width, y_step); in util_format_translate()
726 dst_format_desc->pack_rgba_8unorm(dst_row, dst_stride, tmp_row, tmp_stride, width, y_step); in util_format_translate()
734 … src_format_desc->unpack_rgba_8unorm(tmp_row, tmp_stride, src_row, src_stride, width, height); in util_format_translate()
735 dst_format_desc->pack_rgba_8unorm(dst_row, dst_stride, tmp_row, tmp_stride, width, height); in util_format_translate()
738 FREE(tmp_row); in util_format_translate()
742 float *tmp_row; in util_format_translate() local
[all …]
/external/webp/src/enc/
Dvp8l_enc.c1347 tmp_row[x] = prev_idx; \
1349 VP8LBundleColorMap(tmp_row, width, xbits, dst); \
1365 uint8_t* const tmp_row = (uint8_t*)WebPSafeMalloc(width, sizeof(*tmp_row)); in ApplyPalette() local
1368 if (tmp_row == NULL) return VP8_ENC_ERROR_OUT_OF_MEMORY; in ApplyPalette()
1412 WebPSafeFree(tmp_row); in ApplyPalette()