Searched refs:y_end (Results 1 - 6 of 6) sorted by relevance

/external/webp/src/dec/
H A Dframe.c276 int y_end = MACROBLOCK_VPOS(mb_y + 1); local
289 y_end -= extra_y_rows;
291 if (y_end > io->crop_bottom) {
292 y_end = io->crop_bottom; // make sure we don't overflow on last row.
295 if (dec->alpha_data_ != NULL && y_start < y_end) {
298 io->a = VP8DecompressAlphaRows(dec, y_start, y_end - y_start);
315 if (y_start < y_end) {
324 io->mb_h = y_end - y_start;
H A Dio.c99 const int y_end = io->mb_y + io->mb_h; local
113 for (; y + 2 < y_end; y += 2) {
126 if (io->crop_top + y_end < io->crop_bottom) {
136 if (!(y_end & 1)) {
H A Dvp8l.c593 static int SetCropWindow(VP8Io* const io, int y_start, int y_end, argument
595 assert(y_start < y_end);
597 if (y_end > io->crop_bottom) {
598 y_end = io->crop_bottom; // make sure we don't overflow on last row.
605 if (y_start >= y_end) return 0; // Crop window is empty.
611 io->mb_h = y_end - y_start;
/external/libvncserver/VisualNaCro/
H A Dnacro.c144 int x_start,y_start,x_end=x+w-1,y_end=y+h-1; local
155 if(y_end+image->height>cl->height) y_end=cl->height-image->height;
158 for(y=y_start;y<y_end;y++)
/external/webp/src/dsp/
H A Dlossless.h94 const struct VP8LTransform* const transform, int y_start, int y_end,
H A Dlossless.c739 int y_start, int y_end, uint32_t* data) {
762 while (y < y_end) {
1154 int y_start, int y_end, uint32_t* data) {
1165 while (y < y_end) {
1189 int y_start, int y_end, const TYPE* src, TYPE* dst) { \
1198 for (y = y_start; y < y_end; ++y) { \
1212 for (y = y_start; y < y_end; ++y) { \
738 PredictorInverseTransform(const VP8LTransform* const transform, int y_start, int y_end, uint32_t* data) argument
1153 ColorSpaceInverseTransform(const VP8LTransform* const transform, int y_start, int y_end, uint32_t* data) argument

Completed in 178 milliseconds