Home
last modified time | relevance | path

Searched refs:y_start (Results 1 – 13 of 13) sorted by relevance

/external/webp/src/dec/
Dframe.c177 int y_start = MACROBLOCK_VPOS(ctx->mb_y_); in FinishRow() local
186 y_start -= extra_y_rows; in FinishRow()
203 if (dec->alpha_data_ != NULL && y_start < y_end) { in FinishRow()
209 io->a = VP8DecompressAlphaRows(dec, y_start, y_end - y_start); in FinishRow()
215 if (y_start < io->crop_top) { in FinishRow()
216 const int delta_y = io->crop_top - y_start; in FinishRow()
217 y_start = io->crop_top; in FinishRow()
226 if (y_start < y_end) { in FinishRow()
233 io->mb_y = y_start - io->crop_top; in FinishRow()
235 io->mb_h = y_end - y_start; in FinishRow()
Dvp8l.c568 static int SetCropWindow(VP8Io* const io, int y_start, int y_end, in SetCropWindow() argument
570 assert(y_start < y_end); in SetCropWindow()
575 if (y_start < io->crop_top) { in SetCropWindow()
576 const int delta = io->crop_top - y_start; in SetCropWindow()
577 y_start = io->crop_top; in SetCropWindow()
580 if (y_start >= y_end) return 0; // Crop window is empty. in SetCropWindow()
584 io->mb_y = y_start - io->crop_top; in SetCropWindow()
586 io->mb_h = y_end - y_start; in SetCropWindow()
/external/chromium_org/third_party/libwebp/dec/
Dframe.c177 int y_start = MACROBLOCK_VPOS(ctx->mb_y_); in FinishRow() local
186 y_start -= extra_y_rows; in FinishRow()
203 if (dec->alpha_data_ != NULL && y_start < y_end) { in FinishRow()
209 io->a = VP8DecompressAlphaRows(dec, y_start, y_end - y_start); in FinishRow()
215 if (y_start < io->crop_top) { in FinishRow()
216 const int delta_y = io->crop_top - y_start; in FinishRow()
217 y_start = io->crop_top; in FinishRow()
226 if (y_start < y_end) { in FinishRow()
233 io->mb_y = y_start - io->crop_top; in FinishRow()
235 io->mb_h = y_end - y_start; in FinishRow()
Dvp8l.c569 static int SetCropWindow(VP8Io* const io, int y_start, int y_end, in SetCropWindow() argument
571 assert(y_start < y_end); in SetCropWindow()
576 if (y_start < io->crop_top) { in SetCropWindow()
577 const int delta = io->crop_top - y_start; in SetCropWindow()
578 y_start = io->crop_top; in SetCropWindow()
581 if (y_start >= y_end) return 0; // Crop window is empty. in SetCropWindow()
585 io->mb_y = y_start - io->crop_top; in SetCropWindow()
587 io->mb_h = y_end - y_start; in SetCropWindow()
/external/webp/src/dsp/
Dlossless.c670 int y_start, int y_end, uint32_t* data) { in PredictorInverseTransform() argument
672 if (y_start == 0) { // First Row follows the L (mode=1) mode. in PredictorInverseTransform()
681 ++y_start; in PredictorInverseTransform()
685 int y = y_start; in PredictorInverseTransform()
746 int y_start, int y_end, uint32_t* data) { in AddGreenToBlueAndRed() argument
748 const uint32_t* const data_end = data + (y_end - y_start) * width; in AddGreenToBlueAndRed()
1074 int y_start, int y_end, uint32_t* data) { in ColorSpaceInverseTransform() argument
1078 int y = y_start; in ColorSpaceInverseTransform()
1101 int y_start, int y_end, const TYPE* src, TYPE* dst) { \
1110 for (y = y_start; y < y_end; ++y) { \
[all …]
Dlossless.h42 const struct VP8LTransform* const transform, int y_start, int y_end,
/external/chromium_org/third_party/libwebp/dsp/
Dlossless.c670 int y_start, int y_end, uint32_t* data) { in PredictorInverseTransform() argument
672 if (y_start == 0) { // First Row follows the L (mode=1) mode. in PredictorInverseTransform()
681 ++y_start; in PredictorInverseTransform()
685 int y = y_start; in PredictorInverseTransform()
746 int y_start, int y_end, uint32_t* data) { in AddGreenToBlueAndRed() argument
748 const uint32_t* const data_end = data + (y_end - y_start) * width; in AddGreenToBlueAndRed()
1074 int y_start, int y_end, uint32_t* data) { in ColorSpaceInverseTransform() argument
1078 int y = y_start; in ColorSpaceInverseTransform()
1101 int y_start, int y_end, const TYPE* src, TYPE* dst) { \
1110 for (y = y_start; y < y_end; ++y) { \
[all …]
Dlossless.h42 const struct VP8LTransform* const transform, int y_start, int y_end,
/external/chromium_org/third_party/icu/source/data/translit/
DLatin_Katakana.txt28 $y_start = [ヤユヨやゆよ] ;
196 y } y ↔ ッ } $y_start;
/external/icu4c/data/translit/
DLatin_Katakana.txt28 $y_start = [ヤユヨやゆよ] ;
196 y } y ↔ ッ } $y_start;
/external/pixman/pixman/
Dpixman-trap.c157 pixman_fixed_t y_start, in pixman_edge_init() argument
195 pixman_edge_step (e, y_start - y_top); in pixman_edge_init()
Dpixman.h1053 pixman_fixed_t y_start,
/external/chromium_org/ui/aura/gestures/
Dgesture_recognizer_unittest.cc566 int y_start, in SendScrollEvents() argument
574 int y = y_start; in SendScrollEvents()