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

  /external/chromium_org/chrome/utility/cloud_print/
pwg_encoder.cc 174 const uint8* current_row = GetRow(image, row_number++); local
179 && !memcmp(current_row, GetRow(image, row_number), row_size)) {
187 current_row, image.size().width(), image.colorspace(), output)) {
  /external/chromium/chrome/browser/importer/
mork_reader.cc 253 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 = NULL
    [all...]
  /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/qemu/distrib/jpeg-6b/
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/chromium_org/ui/views/controls/tree/
tree_view.cc 615 int current_row = root_row(); local
616 PaintRows(canvas, min_row, max_row, &root_, root_depth(), &current_row);
902 int current_row = root_row(); local
904 return GetNodeByRowImpl(&root_, row, root_depth(), &current_row, depth);
910 int* current_row,
912 if (*current_row == target_row) {
916 (*current_row)++;
921 node->GetChild(i), target_row, current_depth, current_row,
  /external/chromium_org/third_party/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...]
  /external/webp/src/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 3008 milliseconds