Home
last modified time | relevance | path

Searched refs:max_coord (Results 1 – 8 of 8) sorted by relevance

/external/freetype/src/autofit/
Daflatin.c1542 FT_Pos max_coord = -32000; in af_latin_hints_compute_segments() local
1555 FT_Pos prev_max_coord = max_coord; in af_latin_hints_compute_segments()
1605 if ( v > max_coord ) in af_latin_hints_compute_segments()
1607 max_coord = v; in af_latin_hints_compute_segments()
1644 segment->max_coord = (FT_Short)max_coord; in af_latin_hints_compute_segments()
1645 segment->height = segment->max_coord - segment->min_coord; in af_latin_hints_compute_segments()
1651 prev_max_coord = max_coord; in af_latin_hints_compute_segments()
1682 if ( prev_max_coord > max_coord ) in af_latin_hints_compute_segments()
1684 max_coord = prev_max_coord; in af_latin_hints_compute_segments()
1704 prev_segment->max_coord = (FT_Short)max_coord; in af_latin_hints_compute_segments()
[all …]
Dafhints.h265 FT_Short max_coord; /* maximum coordinate of segment */ member
469 #define AF_SEGMENT_LEN( seg ) ( (seg)->max_coord - (seg)->min_coord )
Daflatin2.c851 segment->max_coord = (FT_Short) max_v; in af_latin2_hints_compute_segments()
1030 FT_Pos max = seg1->max_coord; in af_latin2_hints_link_segments()
1037 if ( max > seg2->max_coord ) in af_latin2_hints_link_segments()
1038 max = seg2->max_coord; in af_latin2_hints_link_segments()
1295 ups += seg->max_coord-seg->min_coord; in af_latin2_hints_compute_edges()
1297 downs += seg->max_coord-seg->min_coord; in af_latin2_hints_compute_edges()
Dafwarp.c122 FT_Pos len = segments[nn].max_coord - segments[nn].min_coord; in af_warper_compute_line_best()
Dafcjk.c859 FT_Pos max = seg1->max_coord; in af_cjk_hints_link_segments()
866 if ( max > seg2->max_coord ) in af_cjk_hints_link_segments()
867 max = seg2->max_coord; in af_cjk_hints_link_segments()
Dafhints.c445 seg->height - ( seg->max_coord - seg->min_coord ), in af_glyph_hints_dump_segments()
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_sample.c1461 LLVMValueRef max_coord, in lp_build_cube_new_coords() argument
1521 maxmy0 = lp_build_sub(ivec_bld, max_coord, y0); in lp_build_cube_new_coords()
1524 next_xcoords[0][0] = lp_build_sub(ivec_bld, max_coord, next_xcoords[1][0]); in lp_build_cube_new_coords()
1525 maxmy1 = lp_build_sub(ivec_bld, max_coord, y1); in lp_build_cube_new_coords()
1528 next_xcoords[0][1] = lp_build_sub(ivec_bld, max_coord, next_xcoords[1][1]); in lp_build_cube_new_coords()
1532 tmpsel = lp_build_select(ivec_bld, sel_fand1, ivec_bld->zero, max_coord); in lp_build_cube_new_coords()
1533 maxmx0 = lp_build_sub(ivec_bld, max_coord, x0); in lp_build_cube_new_coords()
1536 tmp = lp_build_sub(ivec_bld, max_coord, next_xcoords[3][0]); in lp_build_cube_new_coords()
1538 maxmx1 = lp_build_sub(ivec_bld, max_coord, x1); in lp_build_cube_new_coords()
1541 tmp = lp_build_sub(ivec_bld, max_coord, next_xcoords[3][1]); in lp_build_cube_new_coords()
[all …]
Dlp_bld_sample.h570 LLVMValueRef max_coord,