Searched defs:current_row (Results 1 - 6 of 6) sorted by relevance

/external/jpeg/
H A Drdtarga.c56 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/qemu/distrib/jpeg-6b/
H A Drdtarga.c56 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/chromium/chrome/browser/importer/
H A Dmork_reader.cc253 ColumnDataList* current_row = NULL; local
282 if (current_row) {
284 current_row = NULL;
314 current_row = &meta_row_;
321 current_row = new ColumnDataList(columns_.size());
322 table_[row_id] = current_row;
325 current_row = found_row->second;
329 for (size_t i = 0; i < current_row->size(); ++i)
330 (*current_row)[i].clear();
337 current_row
[all...]
/external/chromium_org/ui/views/controls/tree/
H A Dtree_view.cc596 int current_row = root_row(); local
597 PaintRows(canvas, min_row, max_row, &root_, root_depth(), &current_row);
883 int current_row = root_row(); local
885 return GetNodeByRowImpl(&root_, row, root_depth(), &current_row, depth);
891 int* current_row,
893 if (*current_row == target_row) {
897 (*current_row)++;
902 node->GetChild(i), target_row, current_depth, current_row,
888 GetNodeByRowImpl(InternalNode* node, int target_row, int current_depth, int* current_row, int* node_depth) argument
/external/chromium_org/third_party/libwebp/dsp/
H A Dlossless.c539 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[co
[all...]
/external/webp/src/dsp/
H A Dlossless.c539 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[co
[all...]

Completed in 797 milliseconds