/external/libjpeg-turbo/ |
D | jdpostct.c | 42 JDIMENSION next_row; /* index of next row to fill/empty in strip */ member 116 post->starting_row = post->next_row = 0; in start_pass_dpost() 168 if (post->next_row == 0) { in post_process_prepass() 175 old_next_row = post->next_row; in post_process_prepass() 178 post->buffer, &post->next_row, post->strip_height); in post_process_prepass() 182 if (post->next_row > old_next_row) { in post_process_prepass() 183 num_rows = post->next_row - old_next_row; in post_process_prepass() 190 if (post->next_row >= post->strip_height) { in post_process_prepass() 192 post->next_row = 0; in post_process_prepass() 212 if (post->next_row == 0) { in post_process_2pass() [all …]
|
/external/webp/src/enc/ |
D | near_lossless_enc.c | 64 const uint32_t* const next_row, in IsSmooth() argument 70 IsNear(curr_row[ix], next_row[ix], limit)); in IsSmooth() 81 uint32_t* next_row = curr_row + xsize; in NearLossless() local 83 memcpy(next_row, argb_src + stride, xsize * sizeof(argb_src[0])); in NearLossless() 89 memcpy(next_row, argb_src + stride, xsize * sizeof(argb_src[0])); in NearLossless() 93 if (IsSmooth(prev_row, curr_row, next_row, x, limit)) { in NearLossless() 104 curr_row = next_row; in NearLossless() 105 next_row = temp; in NearLossless()
|
/external/python/cpython3/Modules/_sqlite/ |
D | cursor.c | 44 self->next_row = NULL; in pysqlite_cursor_init() 93 Py_XDECREF(self->next_row); in pysqlite_cursor_dealloc() 403 Py_CLEAR(self->next_row); in _pysqlite_query_execute() 631 self->next_row = _pysqlite_fetch_one_row(self); in _pysqlite_query_execute() 632 if (self->next_row == NULL) in _pysqlite_query_execute() 767 PyObject* next_row; in pysqlite_cursor_iternext() local 779 if (!self->next_row) { in pysqlite_cursor_iternext() 787 next_row_tuple = self->next_row; in pysqlite_cursor_iternext() 789 self->next_row = NULL; in pysqlite_cursor_iternext() 792 next_row = PyObject_CallFunction(self->row_factory, "OO", self, next_row_tuple); in pysqlite_cursor_iternext() [all …]
|
D | cursor.h | 49 PyObject* next_row; member
|
/external/python/cpython2/Modules/_sqlite/ |
D | cursor.c | 83 self->next_row = NULL; in pysqlite_cursor_init() 132 Py_XDECREF(self->next_row); in pysqlite_cursor_dealloc() 467 Py_CLEAR(self->next_row); in _pysqlite_query_execute() 709 self->next_row = _pysqlite_fetch_one_row(self); in _pysqlite_query_execute() 877 PyObject* next_row; in pysqlite_cursor_iternext() local 889 if (!self->next_row) { in pysqlite_cursor_iternext() 897 next_row_tuple = self->next_row; in pysqlite_cursor_iternext() 898 self->next_row = NULL; in pysqlite_cursor_iternext() 901 next_row = PyObject_CallFunction(self->row_factory, "OO", self, next_row_tuple); in pysqlite_cursor_iternext() 904 next_row = next_row_tuple; in pysqlite_cursor_iternext() [all …]
|
D | cursor.h | 49 PyObject* next_row; member
|
/external/pdfium/third_party/agg23/ |
D | agg_rendering_buffer.h | 121 int8u* next_row(void* p) in next_row() function 125 const int8u* next_row(const void* p) const in next_row() function
|
/external/skqp/src/effects/ |
D | SkEmbossMask.cpp | 68 int next_row = neq_to_mask(y, maxy) & rowBytes; in Emboss() local 72 int ny = alpha[x + next_row] - alpha[x - prev_row]; in Emboss()
|
/external/skia/src/effects/ |
D | SkEmbossMask.cpp | 68 int next_row = neq_to_mask(y, maxy) & rowBytes; in Emboss() local 72 int ny = alpha[x + next_row] - alpha[x - prev_row]; in Emboss()
|
/external/autotest/tko/ |
D | compose_query.cgi | 134 next_row = row 140 next_row = next_field[row] 147 'rows': next_row, 'condition': next_condition,
|
/external/ImageMagick/MagickCore/ |
D | resize.c | 3192 next_row, in ScaleImage() local 3261 next_row=MagickTrue; in ScaleImage() 3333 if ((next_row != MagickFalse) && in ScaleImage() 3376 next_row=MagickTrue; in ScaleImage() 3378 if ((next_row != MagickFalse) && (number_rows < (ssize_t) image->rows)) in ScaleImage() 3413 next_row=MagickFalse; in ScaleImage() 3429 next_row=MagickTrue; in ScaleImage()
|
/external/libvpx/libvpx/vp8/common/x86/ |
D | subpixel_ssse3.asm | 952 .next_row: label 999 jne .next_row 1233 .next_row: label 1263 jne .next_row
|
D | subpixel_sse2.asm | 1050 .next_row: label 1113 jne .next_row
|
/external/tensorflow/tensorflow/docs_src/programmers_guide/ |
D | low_level_intro.md | 296 next_row = iterator.get_next() 301 print(sess.run(next_row))
|