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

  /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/webp/src/enc/
delta_palettization.c 396 uint8_t* const tmp_row = (uint8_t*)WebPSafeMalloc(width, sizeof(*tmp_row)); local
397 if (new_image == NULL || tmp_row == NULL) {
408 tmp_row[x] = FindBestPaletteEntry(cur_src[x], predicted_value,
410 ApplyBestPaletteEntry(x, y, predicted_value, palette[tmp_row[x]],
414 cur_dst[x] = palette[tmp_row[x]];
422 WebPSafeFree(tmp_row);
vp8l.c 1215 uint8_t* const tmp_row = (uint8_t*)WebPSafeMalloc(width, sizeof(*tmp_row)); local
    [all...]

Completed in 87 milliseconds