HomeSort by relevance Sort by last modified time
    Searched refs:y_end (Results 1 - 11 of 11) sorted by null

  /external/opencv3/3rdparty/libwebp/dsp/
lossless.h 42 const struct VP8LTransform* const transform, int y_start, int y_end,
lossless.c 670 int y_start, int y_end, uint32_t* data) {
691 while (y < y_end) {
746 int y_start, int y_end, uint32_t* data) {
748 const uint32_t* const data_end = data + (y_end - y_start) * width;
    [all...]
  /external/webp/src/dsp/
lossless.c 180 int y_start, int y_end, uint32_t* data) {
203 while (y < y_end) {
282 int y_start, int y_end, uint32_t* data) {
293 while (y < y_end) {
318 TYPE* dst, int y_start, int y_end, int width) { \
320 for (y = y_start; y < y_end; ++y) { \
328 int y_start, int y_end, const TYPE* src, \
338 for (y = y_start; y < y_end; ++y) { \
352 VP8LMapColor##BIT_SUFFIX(src, color_map, dst, y_start, y_end, width); \
lossless.h 95 int y_end, int width);
99 int y_end, int width);
108 const struct VP8LTransform* const transform, int y_start, int y_end,
lossless_mips_dsp_r2.c 24 TYPE* dst, int y_start, int y_end, \
27 for (y = y_start; y < y_end; ++y) { \
    [all...]
  /external/opencv3/3rdparty/libwebp/dec/
frame.c 178 int y_end = MACROBLOCK_VPOS(ctx->mb_y_ + 1); local
197 y_end -= extra_y_rows;
199 if (y_end > io->crop_bottom) {
200 y_end = io->crop_bottom; // make sure we don't overflow on last row.
203 if (dec->alpha_data_ != NULL && y_start < y_end) {
209 io->a = VP8DecompressAlphaRows(dec, y_start, y_end - y_start);
226 if (y_start < y_end) {
235 io->mb_h = y_end - y_start;
vp8l.c 568 static int SetCropWindow(VP8Io* const io, int y_start, int y_end,
570 assert(y_start < y_end);
572 if (y_end > io->crop_bottom) {
573 y_end = io->crop_bottom; // make sure we don't overflow on last row.
580 if (y_start >= y_end) return 0; // Crop window is empty.
586 io->mb_h = y_end - y_start;
    [all...]
io.c 116 const int y_end = io->mb_y + io->mb_h; local
130 for (; y + 2 < y_end; y += 2) {
143 if (io->crop_top + y_end < io->crop_bottom) {
153 if (!(y_end & 1)) {
  /external/webp/src/dec/
frame.c 443 int y_end = MACROBLOCK_VPOS(mb_y + 1); local
456 y_end -= extra_y_rows;
458 if (y_end > io->crop_bottom) {
459 y_end = io->crop_bottom; // make sure we don't overflow on last row.
462 if (dec->alpha_data_ != NULL && y_start < y_end) {
465 io->a = VP8DecompressAlphaRows(dec, y_start, y_end - y_start);
482 if (y_start < y_end) {
491 io->mb_h = y_end - y_start;
io.c 73 const int y_end = io->mb_y + io->mb_h; local
87 for (; y + 2 < y_end; y += 2) {
100 if (io->crop_top + y_end < io->crop_bottom) {
110 if (!(y_end & 1)) {
450 const int y_end = p->last_y + lines_left; local
455 lines_left -= p->emit_alpha_row(p, y_end - lines_left, lines_left);
vp8l.c 655 static int SetCropWindow(VP8Io* const io, int y_start, int y_end,
657 assert(y_start < y_end);
659 if (y_end > io->crop_bottom) {
660 y_end = io->crop_bottom; // make sure we don't overflow on last row.
667 if (y_start >= y_end) return 0; // Crop window is empty.
673 io->mb_h = y_end - y_start;
    [all...]

Completed in 166 milliseconds