Searched refs:tmp_row (Results 1 – 3 of 3) sorted by relevance
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
D | u_format.c | 635 uint8_t *tmp_row; in util_format_translate() local 637 tmp_stride = MAX2(width, x_step) * 4 * sizeof *tmp_row; in util_format_translate() 638 tmp_row = MALLOC(y_step * tmp_stride); in util_format_translate() 639 if (!tmp_row) in util_format_translate() 643 … src_format_desc->unpack_rgba_8unorm(tmp_row, tmp_stride, src_row, src_stride, width, y_step); in util_format_translate() 644 dst_format_desc->pack_rgba_8unorm(dst_row, dst_stride, tmp_row, tmp_stride, width, y_step); in util_format_translate() 652 … src_format_desc->unpack_rgba_8unorm(tmp_row, tmp_stride, src_row, src_stride, width, height); in util_format_translate() 653 dst_format_desc->pack_rgba_8unorm(dst_row, dst_stride, tmp_row, tmp_stride, width, height); in util_format_translate() 656 FREE(tmp_row); in util_format_translate() 660 float *tmp_row; in util_format_translate() local [all …]
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_format.c | 635 uint8_t *tmp_row; in util_format_translate() local 637 tmp_stride = MAX2(width, x_step) * 4 * sizeof *tmp_row; in util_format_translate() 638 tmp_row = MALLOC(y_step * tmp_stride); in util_format_translate() 639 if (!tmp_row) in util_format_translate() 643 … src_format_desc->unpack_rgba_8unorm(tmp_row, tmp_stride, src_row, src_stride, width, y_step); in util_format_translate() 644 dst_format_desc->pack_rgba_8unorm(dst_row, dst_stride, tmp_row, tmp_stride, width, y_step); in util_format_translate() 652 … src_format_desc->unpack_rgba_8unorm(tmp_row, tmp_stride, src_row, src_stride, width, height); in util_format_translate() 653 dst_format_desc->pack_rgba_8unorm(dst_row, dst_stride, tmp_row, tmp_stride, width, height); in util_format_translate() 656 FREE(tmp_row); in util_format_translate() 660 float *tmp_row; in util_format_translate() local [all …]
|
/external/chromium_org/ppapi/examples/video_effects/ |
D | video_effects.cc | 143 std::vector<uint8_t> tmp_row(image_data.stride()); in GetFrameDone() local 148 memcpy(&tmp_row[0], top, image_data.stride()); in GetFrameDone() 150 memcpy(bottom, &tmp_row[0], image_data.stride()); in GetFrameDone()
|