Home
last modified time | relevance | path

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

/external/mesa3d/src/util/format/
Du_format.c670 uint8_t *tmp_row; in util_format_translate() local
677 tmp_stride = MAX2(width, x_step) * 4 * sizeof *tmp_row; in util_format_translate()
678 tmp_row = malloc(y_step * tmp_stride); in util_format_translate()
679 if (!tmp_row) in util_format_translate()
683 unpack->unpack_rgba_8unorm(tmp_row, tmp_stride, src_row, src_stride, width, y_step); in util_format_translate()
684 pack->pack_rgba_8unorm(dst_row, dst_stride, tmp_row, tmp_stride, width, y_step); in util_format_translate()
692 unpack->unpack_rgba_8unorm(tmp_row, tmp_stride, src_row, src_stride, width, height); in util_format_translate()
693 pack->pack_rgba_8unorm(dst_row, dst_stride, tmp_row, tmp_stride, width, height); in util_format_translate()
696 free(tmp_row); in util_format_translate()
701 int *tmp_row; in util_format_translate() local
[all …]
/external/webp/src/enc/
Dvp8l_enc.c1358 tmp_row[x] = prev_idx; \
1360 VP8LBundleColorMap(tmp_row, width, xbits, dst); \
1376 uint8_t* const tmp_row = (uint8_t*)WebPSafeMalloc(width, sizeof(*tmp_row)); in ApplyPalette() local
1379 if (tmp_row == NULL) return VP8_ENC_ERROR_OUT_OF_MEMORY; in ApplyPalette()
1423 WebPSafeFree(tmp_row); in ApplyPalette()