Lines Matching refs:p1
2089 const CPair p1 = aCmap.equal_range( it->mnChar1 ); in GetKernPairs() local
2091 for( Cmap::const_iterator i1 = p1.first; i1 != p1.second; ++i1 ) in GetKernPairs()
2248 static int FT_line_to( FT_Vector_CPtr p1, void* vpPolyArgs ) in FT_line_to() argument
2251 rA.AddPoint( p1->x, p1->y, POLY_NORMAL ); in FT_line_to()
2255 static int FT_conic_to( FT_Vector_CPtr p1, FT_Vector_CPtr p2, void* vpPolyArgs ) in FT_conic_to() argument
2260 const long nX1 = (2 * rA.GetPosX() + 4 * p1->x + 3) / 6; in FT_conic_to()
2261 const long nY1 = (2 * rA.GetPosY() + 4 * p1->y + 3) / 6; in FT_conic_to()
2264 const long nX2 = (2 * p2->x + 4 * p1->x + 3) / 6; in FT_conic_to()
2265 const long nY2 = (2 * p2->y + 4 * p1->y + 3) / 6; in FT_conic_to()
2272 static int FT_cubic_to( FT_Vector_CPtr p1, FT_Vector_CPtr p2, FT_Vector_CPtr p3, void* vpPolyArgs ) in FT_cubic_to() argument
2275 rA.AddPoint( p1->x, p1->y, POLY_CONTROL ); in FT_cubic_to()