Home
last modified time | relevance | path

Searched refs:best_y (Results 1 – 10 of 10) sorted by relevance

/external/libaom/libaom/av1/encoder/
Dcorner_match.c90 int x, y, best_x = 0, best_y = 0; in improve_correspondence() local
107 best_y = y; in improve_correspondence()
113 correspondences[i].ry += best_y; in improve_correspondence()
116 int x, y, best_x = 0, best_y = 0; in improve_correspondence() local
133 best_y = y; in improve_correspondence()
138 correspondences[i].y += best_y; in improve_correspondence()
/external/webp/src/enc/
Dpicture_csp_enc.c348 static void InterpolateTwoRows(const fixed_y_t* const best_y, in InterpolateTwoRows() argument
360 out1[0] = Filter2(cur_uv[0], prev_uv[0], best_y[0]); in InterpolateTwoRows()
361 out2[0] = Filter2(cur_uv[0], next_uv[0], best_y[w]); in InterpolateTwoRows()
363 WebPSharpYUVFilterRow(cur_uv, prev_uv, len, best_y + 0 + 1, out1 + 1); in InterpolateTwoRows()
364 WebPSharpYUVFilterRow(cur_uv, next_uv, len, best_y + w + 1, out2 + 1); in InterpolateTwoRows()
369 best_y[w - 1 + 0]); in InterpolateTwoRows()
371 best_y[w - 1 + w]); in InterpolateTwoRows()
396 static int ConvertWRGBToYUV(const fixed_y_t* best_y, const fixed_t* best_uv, in ConvertWRGBToYUV() argument
410 const int W = best_y[i]; in ConvertWRGBToYUV()
416 best_y += w; in ConvertWRGBToYUV()
[all …]
/external/webp/src/dsp/
Dyuv.c226 const uint16_t* best_y, uint16_t* out) { in SharpYUVFilterRow_C() argument
231 out[2 * i + 0] = clip_y(best_y[2 * i + 0] + v0); in SharpYUVFilterRow_C()
232 out[2 * i + 1] = clip_y(best_y[2 * i + 1] + v1); in SharpYUVFilterRow_C()
255 const uint16_t* best_y, uint16_t* out);
Dyuv_neon.c231 const uint16_t* best_y, uint16_t* out) { in SharpYUVFilterRow_NEON() argument
252 const int16x8_t g0 = vreinterpretq_s16_u16(vld1q_u16(best_y + 2 * i + 0)); in SharpYUVFilterRow_NEON()
253 const int16x8_t g1 = vreinterpretq_s16_u16(vld1q_u16(best_y + 2 * i + 8)); in SharpYUVFilterRow_NEON()
267 out[2 * i + 0] = clip_y_NEON(best_y[2 * i + 0] + v0); in SharpYUVFilterRow_NEON()
268 out[2 * i + 1] = clip_y_NEON(best_y[2 * i + 1] + v1); in SharpYUVFilterRow_NEON()
Dyuv_sse2.c809 const uint16_t* best_y, uint16_t* out) { in SharpYUVFilterRow_SSE2() argument
833 const __m128i g0 = _mm_loadu_si128((const __m128i*)(best_y + 2 * i + 0)); in SharpYUVFilterRow_SSE2()
834 const __m128i g1 = _mm_loadu_si128((const __m128i*)(best_y + 2 * i + 8)); in SharpYUVFilterRow_SSE2()
851 out[2 * i + 0] = clip_y(best_y[2 * i + 0] + v0); in SharpYUVFilterRow_SSE2()
852 out[2 * i + 1] = clip_y(best_y[2 * i + 1] + v1); in SharpYUVFilterRow_SSE2()
Ddsp.h518 const uint16_t* best_y, uint16_t* out);
/external/freetype/src/autofit/
Daflatin.c467 FT_Pos best_y; in af_latin_metrics_init_blues() local
501 best_y = 0; /* make compiler happy */ in af_latin_metrics_init_blues()
531 if ( best_point < 0 || points[pp].y > best_y ) in af_latin_metrics_init_blues()
534 best_y = points[pp].y; in af_latin_metrics_init_blues()
535 ascender = FT_MAX( ascender, best_y + y_offset ); in af_latin_metrics_init_blues()
545 if ( best_point < 0 || points[pp].y < best_y ) in af_latin_metrics_init_blues()
548 best_y = points[pp].y; in af_latin_metrics_init_blues()
549 descender = FT_MIN( descender, best_y + y_offset ); in af_latin_metrics_init_blues()
603 dist = FT_ABS( points[prev].y - best_y ); in af_latin_metrics_init_blues()
628 dist = FT_ABS( points[next].y - best_y ); in af_latin_metrics_init_blues()
[all …]
Daflatin2.c230 FT_Int best_point, best_y, best_first, best_last; in af_latin2_metrics_init_blues() local
247 best_y = 0; /* make compiler happy */ in af_latin2_metrics_init_blues()
274 if ( best_point < 0 || points[pp].y > best_y ) in af_latin2_metrics_init_blues()
277 best_y = points[pp].y; in af_latin2_metrics_init_blues()
283 if ( best_point < 0 || points[pp].y < best_y ) in af_latin2_metrics_init_blues()
286 best_y = points[pp].y; in af_latin2_metrics_init_blues()
296 FT_TRACE5(( " %c %d", *p, best_y )); in af_latin2_metrics_init_blues()
318 dist = FT_ABS( points[prev].y - best_y ); in af_latin2_metrics_init_blues()
335 dist = FT_ABS( points[next].y - best_y ); in af_latin2_metrics_init_blues()
353 rounds[num_rounds++] = best_y; in af_latin2_metrics_init_blues()
[all …]
/external/freetype/
DChangeLog.252548 `y_offset' to adjust `best_y'.
DChangeLog.231309 The type of `best_y' is matched to FT_Vector.y.