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

  /external/libjpeg-turbo/
rdtarga.c 59 JDIMENSION current_row; /* Current logical row number to read */ member in struct:_tga_source_struct
280 /* Compute row of source that maps to current_row of normal order */
283 source_row = cinfo->image_height - source->current_row - 1;
290 source->current_row++;
324 source->current_row = 0;
  /system/core/debuggerd/libdebuggerd/
tombstone.cpp 352 std::vector<std::pair<std::string, uint64_t>> current_row; local
365 regs->IterateRegisters([log, &current_row, &special_row](const char* name, uint64_t value) {
366 auto row = &current_row;
375 if (current_row.size() == column_count) {
376 print_register_row(log, current_row);
377 current_row.clear();
381 if (!current_row.empty()) {
382 print_register_row(log, current_row);
  /external/webp/src/enc/
predictor_enc.c 233 uint32_t* const current_row, const uint8_t* const max_diffs, int mode,
237 PredictBatch(mode, x_start, y, x_end - x_start, current_row, upper_row,
246 predict = (x == 0) ? ARGB_BLACK : current_row[x - 1]; // Left.
250 predict = pred_func(current_row[x - 1], upper_row + x);
255 residual = VP8LSubPixels(current_row[x], predict);
257 residual = NearLossless(current_row[x], predict, max_quantization,
260 current_row[x] = VP8LAddPixels(predict, residual);
268 residual = VP8LSubPixels(current_row[x], predict);
270 if ((current_row[x] & kMaskAlpha) == 0) {
277 current_row[x] = predict & ~kMaskAlpha
328 uint32_t* current_row = upper_row + width + 1; local
422 uint32_t* current_row = upper_row + width + 1; local
    [all...]

Completed in 88 milliseconds