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

  /external/chromium_org/third_party/webrtc/modules/desktop_capture/win/
screen_capturer_win_gdi.cc 298 uint8_t* current_row = cursor_image->image()->data(); local
300 cursor->data.append(current_row,
301 current_row + cursor_image->image()->size().width() *
303 current_row += cursor_image->image()->stride();
  /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/chrome/utility/cloud_print/
pwg_encoder.cc 228 const uint8* current_row = local
234 !memcmp(current_row,
247 const uint32* pos = reinterpret_cast<const uint32*>(current_row);
  /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);
904 int current_row = root_row(); local
906 return GetNodeByRowImpl(&root_, row, root_depth(), &current_row, depth);
912 int* current_row,
914 if (*current_row == target_row) {
918 (*current_row)++;
923 node->GetChild(i), target_row, current_depth, current_row,
tree_view.h 317 int* current_row,
  /external/chromium_org/third_party/libwebp/dsp/
lossless.c 607 const uint32_t* current_row = argb_scratch; local
616 const uint32_t* const upper_row = current_row;
617 current_row = upper_row + width;
622 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left.
626 predict = pred_func(current_row[col - 1], upper_row + col);
628 UpdateHisto(histo_argb, VP8LSubPixels(current_row[col], predict));
652 const uint32_t* current_row = argb_scratch; local
658 const uint32_t* const upper_row = current_row;
659 current_row = upper_row + width;
665 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left
    [all...]
  /external/webp/src/dsp/
lossless.c 607 const uint32_t* current_row = argb_scratch; local
616 const uint32_t* const upper_row = current_row;
617 current_row = upper_row + width;
622 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left.
626 predict = pred_func(current_row[col - 1], upper_row + col);
628 UpdateHisto(histo_argb, VP8LSubPixels(current_row[col], predict));
652 const uint32_t* current_row = argb_scratch; local
658 const uint32_t* const upper_row = current_row;
659 current_row = upper_row + width;
665 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
cpp.py 193 current_row = start_position.row
201 return Position(current_row, starting_offset + found_match.start())
204 current_row += 1
206 if current_row >= len(lines):
208 current_line = lines[current_row]
219 current_row = start_position.row
226 return Position(current_row, found_match.end(1))
229 current_row -= 1
230 if current_row < 0:
232 current_line = lines[current_row]
    [all...]

Completed in 244 milliseconds