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

  /external/libaom/libaom/av1/encoder/
corner_match.c 90 int x, y, best_x = 0, best_y = 0; local
107 best_y = y;
113 correspondences[i].ry += best_y;
116 int x, y, best_x = 0, best_y = 0; local
133 best_y = y;
138 correspondences[i].y += best_y;
  /external/freetype/src/autofit/
aflatin.c 467 FT_Pos best_y; local
501 best_y = 0; /* make compiler happy */
531 if ( best_point < 0 || points[pp].y > best_y )
534 best_y = points[pp].y;
535 ascender = FT_MAX( ascender, best_y + y_offset );
545 if ( best_point < 0 || points[pp].y < best_y )
548 best_y = points[pp].y;
549 descender = FT_MIN( descender, best_y + y_offset );
603 dist = FT_ABS( points[prev].y - best_y );
628 dist = FT_ABS( points[next].y - best_y );
    [all...]
aflatin2.c 230 FT_Int best_point, best_y, best_first, best_last; local
247 best_y = 0; /* make compiler happy */
274 if ( best_point < 0 || points[pp].y > best_y )
277 best_y = points[pp].y;
283 if ( best_point < 0 || points[pp].y < best_y )
286 best_y = points[pp].y;
296 FT_TRACE5(( " %c %d", *p, best_y ));
318 dist = FT_ABS( points[prev].y - best_y );
335 dist = FT_ABS( points[next].y - best_y );
353 rounds[num_rounds++] = best_y;
    [all...]
  /external/webp/src/enc/
picture_csp_enc.c 348 static void InterpolateTwoRows(const fixed_y_t* const best_y,
360 out1[0] = Filter2(cur_uv[0], prev_uv[0], best_y[0]);
361 out2[0] = Filter2(cur_uv[0], next_uv[0], best_y[w]);
363 WebPSharpYUVFilterRow(cur_uv, prev_uv, len, best_y + 0 + 1, out1 + 1);
364 WebPSharpYUVFilterRow(cur_uv, next_uv, len, best_y + w + 1, out2 + 1);
369 best_y[w - 1 + 0]);
371 best_y[w - 1 + w]);
396 static int ConvertWRGBToYUV(const fixed_y_t* best_y, const fixed_t* best_uv,
410 const int W = best_y[i];
416 best_y += w
463 fixed_y_t* best_y = best_y_base; local
    [all...]

Completed in 205 milliseconds