Searched refs:current_row (Results 1 - 9 of 9) sorted by relevance
/external/chromium_org/third_party/webrtc/modules/desktop_capture/win/ |
H A D | 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/chromium_org/chrome/utility/cloud_print/ |
H A D | pwg_encoder.cc | 228 const uint8* current_row = local 234 !memcmp(current_row, 247 const uint32* pos = reinterpret_cast<const uint32*>(current_row);
|
/external/jpeg/ |
H A D | 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/ |
H A D | 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/ |
H A D | tree_view.cc | 615 int current_row = root_row(); local 616 PaintRows(canvas, min_row, max_row, &root_, root_depth(), ¤t_row); 904 int current_row = root_row(); local 906 return GetNodeByRowImpl(&root_, row, root_depth(), ¤t_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, 909 GetNodeByRowImpl(InternalNode* node, int target_row, int current_depth, int* current_row, int* node_depth) argument
|
H A D | tree_view.h | 317 int* current_row,
|
/external/chromium_org/third_party/libwebp/dsp/ |
H A D | 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[co [all...] |
/external/webp/src/dsp/ |
H A D | 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[co [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/ |
H A D | 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 328 milliseconds