Home
last modified time | relevance | path

Searched refs:current_row (Results 1 – 3 of 3) sorted by relevance

/external/webp/src/enc/
Dpredictor_enc.c228 uint32_t* const current_row, const uint8_t* const max_diffs, int mode, in GetResidual() argument
232 PredictBatch(mode, x_start, y, x_end - x_start, current_row, upper_row, in GetResidual()
241 predict = (x == 0) ? ARGB_BLACK : current_row[x - 1]; // Left. in GetResidual()
245 predict = pred_func(current_row[x - 1], upper_row + x); in GetResidual()
249 residual = VP8LSubPixels(current_row[x], predict); in GetResidual()
251 residual = NearLossless(current_row[x], predict, max_quantization, in GetResidual()
254 current_row[x] = VP8LAddPixels(predict, residual); in GetResidual()
257 if ((current_row[x] & kMaskAlpha) == 0) { in GetResidual()
264 current_row[x] = predict & ~kMaskAlpha; in GetResidual()
271 if (x == 0 && y != 0) upper_row[width] = current_row[0]; in GetResidual()
[all …]
/external/libjpeg-turbo/
Drdtarga.c59 JDIMENSION current_row; /* Current logical row number to read */ member
283 source_row = cinfo->image_height - source->current_row - 1; in get_memory_row()
290 source->current_row++; in get_memory_row()
324 source->current_row = 0; in preload_image()
/external/v8/tools/ignition/
Dbytecode_dispatches_report.py133 current_row = dispatches_table[from_name];
135 counters_matrix[from_index, to_index] = current_row.get(to_name, 0)