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

  /external/webp/src/dsp/
lossless_enc.c 543 const uint32_t* current_row,
546 return (x == 0) ? ARGB_BLACK : current_row[x - 1]; // Left.
550 return pred_func(current_row[x - 1], upper_row + x);
577 const uint32_t* current_row = argb_scratch; local
585 const uint32_t* const upper_row = current_row;
586 current_row = upper_row + width;
590 Predict(pred_func, col, row, current_row, upper_row);
591 uint32_t residual = VP8LSubPixels(current_row[col], predict);
592 if (!exact && (current_row[col] & kMaskAlpha) == 0) {
627 uint32_t* current_row = argb_scratch local
    [all...]
  /external/libjpeg-turbo/
rdtarga.c 58 JDIMENSION current_row; /* Current logical row number to read */ member in struct:_tga_source_struct
279 /* Compute row of source that maps to current_row of normal order */
282 source_row = cinfo->image_height - source->current_row - 1;
289 source->current_row++;
323 source->current_row = 0;
  /external/v8/tools/ignition/
bytecode_dispatches_report.py 124 current_row = dispatches_table[from_name];
126 counters_matrix[from_index, to_index] = current_row.get(to_name, 0)
  /external/opencv3/3rdparty/libwebp/dsp/
lossless.c 539 const uint32_t* current_row = argb_scratch; local
547 const uint32_t* const upper_row = current_row;
548 current_row = upper_row + width;
554 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left.
558 predict = pred_func(current_row[col - 1], upper_row + col);
560 predict_diff = VP8LSubPixels(current_row[col], predict);
589 const uint32_t* current_row = argb_scratch; local
595 const uint32_t* const upper_row = current_row;
596 current_row = upper_row + width;
602 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left
    [all...]

Completed in 379 milliseconds