Home
last modified time | relevance | path

Searched refs:next_row (Results 1 – 8 of 8) sorted by relevance

/third_party/skia/gm/
Druntimeintrinsics.cpp35 static void next_row(SkCanvas* canvas) { in next_row() function
184 next_row(canvas);
189 next_row(canvas);
194 next_row(canvas);
198 next_row(canvas);
202 next_row(canvas);
221 next_row(canvas);
228 next_row(canvas);
243 next_row(canvas);
247 next_row(canvas);
[all …]
/third_party/skia/third_party/externals/libjpeg-turbo/
Djdpostct.c42 JDIMENSION next_row; /* index of next row to fill/empty in strip */ member
122 post->starting_row = post->next_row = 0; in start_pass_dpost()
173 if (post->next_row == 0) { in post_process_prepass()
180 old_next_row = post->next_row; in post_process_prepass()
183 &post->next_row, post->strip_height); in post_process_prepass()
187 if (post->next_row > old_next_row) { in post_process_prepass()
188 num_rows = post->next_row - old_next_row; in post_process_prepass()
195 if (post->next_row >= post->strip_height) { in post_process_prepass()
197 post->next_row = 0; in post_process_prepass()
216 if (post->next_row == 0) { in post_process_2pass()
[all …]
/third_party/skia/third_party/externals/libwebp/src/enc/
Dnear_lossless_enc.c64 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()
/third_party/python/Modules/_sqlite/
Dcursor.c53 Py_CLEAR(self->next_row); in pysqlite_cursor_init_impl()
94 Py_VISIT(self->next_row); in cursor_traverse()
111 Py_CLEAR(self->next_row); in cursor_clear()
439 Py_CLEAR(self->next_row); in _pysqlite_query_execute()
617 self->next_row = _pysqlite_fetch_one_row(self); in _pysqlite_query_execute()
618 if (self->next_row == NULL) in _pysqlite_query_execute()
775 PyObject* next_row; in pysqlite_cursor_iternext() local
787 if (!self->next_row) { in pysqlite_cursor_iternext()
795 next_row_tuple = self->next_row; in pysqlite_cursor_iternext()
797 self->next_row = NULL; in pysqlite_cursor_iternext()
[all …]
Dcursor.h50 PyObject* next_row; member
/third_party/mesa3d/src/microsoft/compiler/
Ddxil_signature.c122 unsigned next_row, unsigned clip_size) in get_additional_semantic_info() argument
161 info->start_row = next_row; in get_additional_semantic_info()
164 next_row += info->rows; in get_additional_semantic_info()
167 info->start_row = next_row - 1; in get_additional_semantic_info()
169 info->start_row = next_row; in get_additional_semantic_info()
170 next_row++; in get_additional_semantic_info()
185 info->start_row = next_row; in get_additional_semantic_info()
189 next_row += info->rows; in get_additional_semantic_info()
194 return next_row; in get_additional_semantic_info()
599 unsigned next_row = 0; in process_input_signature() local
[all …]
/third_party/skia/src/effects/
DSkEmbossMask.cpp70 int next_row = neq_to_mask(y, maxy) & rowBytes; in Emboss() local
74 int ny = alpha[x + next_row] - alpha[x - prev_row]; in Emboss()
/third_party/gstreamer/gstplugins_bad/gst/dvbsubenc/libimagequant/
Dlibimagequant.c1567 const f_pixel *curr_row, *prev_row, *next_row; in contrast_maps() local
1582 curr_row = prev_row = next_row = liq_image_get_row_f (image, 0); in contrast_maps()
1588 curr_row = next_row; in contrast_maps()
1589 next_row = liq_image_get_row_f (image, MIN (rows - 1, j + 1)); in contrast_maps()
1606 const f_pixel nextl = next_row[i]; in contrast_maps()