Home
last modified time | relevance | path

Searched refs:ey2 (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/core/src/fxge/agg/agg23/
Dfx_agg_rasterizer_scanline_aa.cpp237 int ey2 = y2 >> poly_base_shift; in render_line() local
242 if(ey1 == ey2) { in render_line()
263 while(ey1 != ey2) { in render_line()
290 if(ey1 != ey2) { in render_line()
299 while(ey1 != ey2) { in render_line()
/external/freetype/src/smooth/
Dftgrays.c793 TCoord ey1, ey2, fy1, fy2, mod; in gray_render_line() local
800 ey2 = TRUNC( to_y ); /* if (ey2 >= ras.max_ey) ey2 = ras.max_ey-1; */ in gray_render_line()
802 fy2 = (TCoord)( to_y - SUBPIXELS( ey2 ) ); in gray_render_line()
813 max = ey2; in gray_render_line()
814 if ( ey1 > ey2 ) in gray_render_line()
816 min = ey2; in gray_render_line()
824 if ( ey1 == ey2 ) in gray_render_line()
856 while ( ey1 != ey2 ) in gray_render_line()
893 if ( ey1 != ey2 ) in gray_render_line()
899 while ( ey1 != ey2 ) in gray_render_line()
[all …]
/external/pdfium/third_party/freetype/src/smooth/
Dftgrays.c777 TCoord ey1, ey2, fy1, fy2, mod; in gray_render_line() local
784 ey2 = TRUNC( to_y ); /* if (ey2 >= ras.max_ey) ey2 = ras.max_ey-1; */ in gray_render_line()
786 fy2 = (TCoord)( to_y - SUBPIXELS( ey2 ) ); in gray_render_line()
797 max = ey2; in gray_render_line()
798 if ( ey1 > ey2 ) in gray_render_line()
800 min = ey2; in gray_render_line()
808 if ( ey1 == ey2 ) in gray_render_line()
840 while ( ey1 != ey2 ) in gray_render_line()
877 if ( ey1 != ey2 ) in gray_render_line()
883 while ( ey1 != ey2 ) in gray_render_line()
[all …]
/external/opencv/cvaux/src/
Dcvepilines.cpp1100 double ex1,ey1,ex2,ey2; in icvGetCrossPiecePiece() local
1109 ey2 = p1_end.y; in icvGetCrossPiecePiece()
1116 del = (py1-py2)*(ex1-ex2)-(px1-px2)*(ey1-ey2); in icvGetCrossPiecePiece()
1123 delA = (ey1-ey2)*(ex1-px1) + (ex1-ex2)*(py1-ey1); in icvGetCrossPiecePiece()
1135 delX = (px1-px2)*(ey1*(ex1-ex2)-ex1*(ey1-ey2))+ in icvGetCrossPiecePiece()
1138 delY = (py1-py2)*(ey1*(ex1-ex2)-ex1*(ey1-ey2))+ in icvGetCrossPiecePiece()
1139 (ey1-ey2)*(px1*(py1-py2)-py1*(px1-px2)); in icvGetCrossPiecePiece()
3418 double ex1,ey1,ex2,ey2; in GetCrossLines() local
3427 ey2 = p1_end.y; in GetCrossLines()
3434 del = (ex1-ex2)*(py2-py1)+(ey2-ey1)*(px2-px1); in GetCrossLines()
[all …]
/external/mesa3d/src/mesa/swrast/
Ds_aaline.c57 GLfloat ex2, ey2; member
300 GLfloat cross2 = (info->ex2 * fy2 - info->ey2 * fx2); in compute_coveragef()
310 cross2 = info->ex2 + info->ey2; in compute_coveragef()
363 line->ey2 = line->qy3 - line->qy2; in segment()