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

  /external/webp/src/dsp/
upsampling_sse2.c 107 #define CONVERT2RGB(FUNC, XSTEP, top_y, bottom_y, \
114 if (bottom_y != NULL) { \
116 FUNC(bottom_y[(cur_x) + n], r_u[64 + n], r_v[64 + n], \
122 #define CONVERT2RGB_32(FUNC, XSTEP, top_y, bottom_y, \
125 if (bottom_y != NULL) { \
126 FUNC##32(bottom_y + (cur_x), r_u + 64, r_v + 64, \
132 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \
149 if (bottom_y != NULL) { \
152 FUNC(bottom_y[0], u0_b, v0_b, bottom_dst); \
159 CONVERT2RGB_32(FUNC, XSTEP, top_y, bottom_y, top_dst, bottom_dst, pos);
    [all...]
upsampling_neon.c 164 #define CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, uv, \
167 if (bottom_y != NULL) { \
168 CONVERT8(FMT, XSTEP, len, bottom_y, (uv) + 32, bottom_dst, cur_x) \
172 #define CONVERT2RGB_1(FUNC, XSTEP, top_y, bottom_y, uv, \
175 if (bottom_y != NULL) { \
176 CONVERT1(FUNC, XSTEP, len, bottom_y, (uv) + 32, bottom_dst, cur_x); \
181 static void FUNC_NAME(const uint8_t *top_y, const uint8_t *bottom_y, \
210 if (bottom_y != NULL) { \
213 VP8YuvTo ## FMT(bottom_y[0], u0, v0, bottom_dst); \
219 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv,
    [all...]
upsampling.c 38 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \
51 if (bottom_y != NULL) { \
53 FUNC(bottom_y[0], uv0 & 0xff, (uv0 >> 16), bottom_dst); \
70 if (bottom_y != NULL) { \
73 FUNC(bottom_y[2 * x - 1], uv0 & 0xff, (uv0 >> 16), \
75 FUNC(bottom_y[2 * x + 0], uv1 & 0xff, (uv1 >> 16), \
87 if (bottom_y != NULL) { \
89 FUNC(bottom_y[len - 1], uv0 & 0xff, (uv0 >> 16), \
dsp.h 206 // bottom_y can be NULL if only one line of output is needed (at top/bottom).
208 const uint8_t* top_y, const uint8_t* bottom_y,
  /external/opencv/cv/src/
cvrotcalipers.cpp 112 float left_x, right_x, top_y, bottom_y; local
116 top_y = bottom_y = pt0.y;
131 if( pt0.y < bottom_y )
132 bottom_y = pt0.y, bottom = i;
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_text.cpp 144 FX_FLOAT bottom_y = image_matrix.f; local
145 FX_BOOL bFlipped = top_y > bottom_y;
148 top_y = bottom_y;
149 bottom_y = temp;
151 pSize->AdjustBlue(top_y, bottom_y, top_line, bottom_line);
  /ndk/tests/build/b9193874-neon/jni/
b9193874-neon.c 163 void UpsampleRgbaLinePairNEON(const uint8_t *top_y, const uint8_t *bottom_y, const uint8_t *top_u, const uint8_t *top_v, const uint8_t *cur_u, const uint8_t *cur_v, uint8_t *top_dst, uint8_t *bottom_dst, int len)
290 if (bottom_y) {
295 uint8x8_t y = vld1_u8(bottom_y + (16 * block + 1) + i);

Completed in 101 milliseconds