HomeSort by relevance Sort by last modified time
    Searched full:current_row (Results 1 - 2 of 2) sorted by null

  /external/jpeg/
rdtarga.c 56 JDIMENSION current_row; /* Current logical row number to read */ member in struct:_tga_source_struct
278 /* Compute row of source that maps to current_row of normal order */
281 source_row = cinfo->image_height - source->current_row - 1;
288 source->current_row++;
322 source->current_row = 0;
  /external/webp/src/dsp/
lossless.c 616 const uint32_t* current_row = argb_scratch; local
625 const uint32_t* const upper_row = current_row;
626 current_row = upper_row + width;
631 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left.
635 predict = pred_func(current_row[col - 1], upper_row + col);
637 UpdateHisto(histo_argb, VP8LSubPixels(current_row[col], predict));
661 const uint32_t* current_row = argb_scratch; local
667 const uint32_t* const upper_row = current_row;
668 current_row = upper_row + width;
674 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left
    [all...]

Completed in 134 milliseconds