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

  /external/webp/src/enc/
picture_csp_enc.c 341 static void InterpolateTwoRows(const fixed_y_t* const best_y,
353 out1[0] = Filter2(cur_uv[0], prev_uv[0], best_y[0]);
354 out2[0] = Filter2(cur_uv[0], next_uv[0], best_y[w]);
356 WebPSharpYUVFilterRow(cur_uv, prev_uv, len, best_y + 0 + 1, out1 + 1);
357 WebPSharpYUVFilterRow(cur_uv, next_uv, len, best_y + w + 1, out2 + 1);
362 best_y[w - 1 + 0]);
364 best_y[w - 1 + w]);
389 static int ConvertWRGBToYUV(const fixed_y_t* best_y, const fixed_t* best_uv,
403 const int W = best_y[i];
409 best_y += w
456 fixed_y_t* best_y = best_y_base; local
    [all...]
  /external/webp/src/dsp/
yuv.c 277 const uint16_t* best_y, uint16_t* out) {
282 out[2 * i + 0] = clip_y(best_y[2 * i + 0] + v0);
283 out[2 * i + 1] = clip_y(best_y[2 * i + 1] + v1);
305 const uint16_t* best_y, uint16_t* out);
yuv_sse2.c 798 const uint16_t* best_y, uint16_t* out) {
822 const __m128i g0 = _mm_loadu_si128((const __m128i*)(best_y + 2 * i + 0));
823 const __m128i g1 = _mm_loadu_si128((const __m128i*)(best_y + 2 * i + 8));
840 out[2 * i + 0] = clip_y(best_y[2 * i + 0] + v0);
841 out[2 * i + 1] = clip_y(best_y[2 * i + 1] + v1);
dsp.h 434 const uint16_t* best_y, uint16_t* out);
  /external/freetype/src/autofit/
aflatin.c 453 FT_Pos best_y; local
487 best_y = 0; /* make compiler happy */
517 if ( best_point < 0 || points[pp].y > best_y )
520 best_y = points[pp].y;
521 ascender = FT_MAX( ascender, best_y + y_offset );
531 if ( best_point < 0 || points[pp].y < best_y )
534 best_y = points[pp].y;
535 descender = FT_MIN( descender, best_y + y_offset );
589 dist = FT_ABS( points[prev].y - best_y );
614 dist = FT_ABS( points[next].y - best_y );
    [all...]
aflatin2.c 227 FT_Int best_point, best_y, best_first, best_last; local
244 best_y = 0; /* make compiler happy */
271 if ( best_point < 0 || points[pp].y > best_y )
274 best_y = points[pp].y;
280 if ( best_point < 0 || points[pp].y < best_y )
283 best_y = points[pp].y;
293 FT_TRACE5(( " %c %d", *p, best_y ));
315 dist = FT_ABS( points[prev].y - best_y );
332 dist = FT_ABS( points[next].y - best_y );
350 rounds[num_rounds++] = best_y;
    [all...]

Completed in 182 milliseconds