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

  /external/webp/src/enc/
picture_csp.c 362 static void InterpolateTwoRows(const fixed_y_t* const best_y,
371 const int W0 = FixedYToW(best_y[0]);
372 const int W1 = FixedYToW(best_y[w]);
379 const int W0 = FixedYToW(best_y[i + 0]);
380 const int W1 = FixedYToW(best_y[i + w]);
390 const int W0 = FixedYToW(best_y[i + 0]);
391 const int W1 = FixedYToW(best_y[i + w]);
417 static int ConvertWRGBToYUV(const fixed_y_t* const best_y,
429 const int W = FixedYToW(best_y[i + j * w]);
471 fixed_y_t* const best_y = SAFE_ALLOC(w, h, fixed_y_t) local
    [all...]
  /external/freetype/src/autofit/
aflatin2.c 222 FT_Int best_point, best_y, best_first, best_last; local
239 best_y = 0; /* make compiler happy */
266 if ( best_point < 0 || points[pp].y > best_y )
269 best_y = points[pp].y;
275 if ( best_point < 0 || points[pp].y < best_y )
278 best_y = points[pp].y;
288 FT_TRACE5(( " %c %d", *p, best_y ));
310 dist = FT_ABS( points[prev].y - best_y );
327 dist = FT_ABS( points[next].y - best_y );
345 rounds[num_rounds++] = best_y;
    [all...]
aflatin.c 347 FT_Pos best_y; /* same as points.y */ local
375 best_y = 0; /* make compiler happy */
402 if ( best_point < 0 || points[pp].y > best_y )
405 best_y = points[pp].y;
411 if ( best_point < 0 || points[pp].y < best_y )
414 best_y = points[pp].y;
465 dist = FT_ABS( points[prev].y - best_y );
490 dist = FT_ABS( points[next].y - best_y );
607 if ( FT_ABS( best_y - points[first].y ) > height_threshold )
670 best_y = points[first].y
    [all...]

Completed in 211 milliseconds