Searched defs:y_end (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/libwebp/dec/
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 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 Dvp8l.c592 static int SetCropWindow(VP8Io* const io, int y_start, int y_end, argument
594 assert(y_start < y_end);
596 if (y_end > io->crop_bottom) {
597 y_end = io->crop_bottom; // make sure we don't overflow on last row.
604 if (y_start >= y_end) return 0; // Crop window is empty.
610 io->mb_h = y_end - y_start;
/external/webp/src/dec/
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 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 Dvp8l.c592 static int SetCropWindow(VP8Io* const io, int y_start, int y_end, argument
594 assert(y_start < y_end);
596 if (y_end > io->crop_bottom) {
597 y_end = io->crop_bottom; // make sure we don't overflow on last row.
604 if (y_start >= y_end) return 0; // Crop window is empty.
610 io->mb_h = y_end - y_start;
/external/chromium_org/third_party/libwebp/dsp/
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
/external/webp/src/dsp/
H A Dlossless.c730 int y_start, int y_end, uint32_t* data) {
753 while (y < y_end) {
1145 int y_start, int y_end, uint32_t* data) {
1156 while (y < y_end) {
1180 int y_start, int y_end, const TYPE* src, TYPE* dst) { \
1189 for (y = y_start; y < y_end; ++y) { \
1203 for (y = y_start; y < y_end; ++y) { \
729 PredictorInverseTransform(const VP8LTransform* const transform, int y_start, int y_end, uint32_t* data) argument
1144 ColorSpaceInverseTransform(const VP8LTransform* const transform, int y_start, int y_end, uint32_t* data) argument

Completed in 128 milliseconds