HomeSort by relevance Sort by last modified time
    Searched refs:tmp_row (Results 1 - 3 of 3) sorted by null

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

Completed in 91 milliseconds