Searched refs:best_y (Results 1 - 6 of 6) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimstb_rectpack.h351 int best_waste = (1<<30), best_x, best_y = (1 << 30); local in function:stbrp__skyline_find_best_pos
367 if (y < best_y) {
368 best_y = y;
375 if (y < best_y || (y == best_y && waste < best_waste)) {
376 best_y = y;
424 if (y <= best_y) {
425 if (y < best_y || waste < best_waste || (waste==best_waste && xpos < best_x)) {
427 STBRP_ASSERT(y <= best_y);
428 best_y
[all...]
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimstb_rectpack.h351 int best_waste = (1<<30), best_x, best_y = (1 << 30); local in function:stbrp__skyline_find_best_pos
367 if (y < best_y) {
368 best_y = y;
375 if (y < best_y || (y == best_y && waste < best_waste)) {
376 best_y = y;
424 if (y <= best_y) {
425 if (y < best_y || waste < best_waste || (waste==best_waste && xpos < best_x)) {
427 STBRP_ASSERT(y <= best_y);
428 best_y
[all...]
/xsrc/external/mit/freetype/dist/src/autofit/
H A Daflatin.c470 FT_Pos best_y; local in function:af_latin_metrics_init_blues
504 best_y = 0; /* make compiler happy */
534 if ( best_point < 0 || points[pp].y > best_y )
537 best_y = points[pp].y;
538 ascender = FT_MAX( ascender, best_y + y_offset );
548 if ( best_point < 0 || points[pp].y < best_y )
551 best_y = points[pp].y;
552 descender = FT_MIN( descender, best_y + y_offset );
606 dist = FT_ABS( points[prev].y - best_y );
631 dist = FT_ABS( points[next].y - best_y );
[all...]
H A Daflatin2.c230 FT_Int best_point, best_y, best_first, best_last; local in function:af_latin2_metrics_init_blues
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 ));
319 dist = FT_ABS( points[prev].y - best_y );
336 dist = FT_ABS( points[next].y - best_y );
354 rounds[num_rounds++] = best_y;
[all...]
/xsrc/external/mit/xorg-server.old/dist/hw/kdrive/src/
H A Dkinput.c2064 int best_x, best_y; local in function:KdCursorOffScreen
2082 best_y = 32767;
2108 if (dy <= 0 && -dy < best_y)
2110 best_y = -dy;
2116 if (dy >= 0 && dy < best_y)
2118 best_y = dy;
2123 if (best_y < best_x)
/xsrc/external/mit/xorg-server/dist/hw/kdrive/src/
H A Dkinput.c1795 int best_x, best_y; local in function:KdCursorOffScreen
1813 best_y = 32767;
1833 if (dy < 0 && -dy < best_y) {
1834 best_y = -dy;
1839 if (dy > 0 && dy < best_y) {
1840 best_y = dy;
1845 if (best_y < best_x)

Completed in 12 milliseconds