| /xsrc/external/mit/libX11/dist/src/ |
| DrPoints.c | 38 int n_points, 50 while (n_points) { 55 n = n_points; 70 n_points -= n; 71 if (n_points && (mode == CoordModePrevious)) {
|
| FillPoly.c | 38 int n_points, 54 SetReqLen(req, n_points, 65535 - req->length); 58 nbytes = n_points << 2;
|
| /xsrc/external/mit/glu/dist/src/libnurbs/nurbtess/ |
| sampledLine.h | 43 sampledLine(Int n_points); 44 sampledLine(Int n_points, Real pts[][2]); 49 void init(Int n_points, Real2 *pts);//special, careful about memory
|
| sampledLine.cc | 71 sampledLine::sampledLine(Int n_points) 73 npoints = n_points; 74 points = (Real2*) malloc(sizeof(Real2) * n_points); 82 sampledLine::sampledLine(Int n_points, Real2 pts[]) 85 npoints = n_points; 86 points = (Real2*) malloc(sizeof(Real2) * n_points); 116 void sampledLine::init(Int n_points, Real2 *pts) 118 npoints = n_points;
|
| /xsrc/external/mit/freetype/dist/src/base/ |
| ftgloadr.c | 93 base->outline.n_points = 0; 149 current->points = FT_OFFSET( base->points, base->n_points ); 150 current->tags = FT_OFFSET( base->tags, base->n_points ); 157 base->n_points; 160 base->n_points; 200 /* Ensure that we can add `n_points' and `n_contours' to our glyph. */ 206 FT_UInt n_points, 223 new_max = (FT_UInt)base->n_points + (FT_UInt)current->n_points + 224 n_points; [all...] |
| ftoutln.c | 324 anoutline->n_points = (FT_Short)numPoints; 345 FT_Int n_points = outline->n_points; local 352 if ( n_points == 0 && n_contours == 0 ) 356 if ( n_points <= 0 || n_contours <= 0 ) 365 if ( end <= end0 || end >= n_points ) 371 if ( end != n_points - 1 ) 395 if ( source->n_points != target->n_points || 402 if ( source->n_points ) [all...] |
| ftbbox.c | 480 if ( outline->n_points == 0 || outline->n_contours <= 0 ) 494 for ( n = 0; n < outline->n_points; n++ )
|
| ftglyph.c | 179 (FT_UInt)source->n_points, 213 (FT_UInt)source->outline.n_points,
|
| /xsrc/external/mit/oclock/dist/ |
| transform.c | 39 TranslatePoints(TPoint *points, int n_points, 45 xpoints = (XPoint *) malloc ((unsigned)n_points * sizeof (*xpoints)); 48 for (int i = 0; i < n_points; i++) { 61 TPoint *points, int n_points, int shape, int mode) 65 xpoints = TranslatePoints (points, n_points, t, mode); 67 XFillPolygon (dpy, d, gc, xpoints, n_points, shape,
|
| transform.h | 58 TPoint *points, int n_points, int shape, int mode );
|
| /xsrc/external/mit/xeyes/dist/ |
| transform.c | 12 TranslatePoints (TPoint *points, int n_points, Transform *t, int mode) 18 xpoints = (XPoint *) malloc (n_points * sizeof (*xpoints)); 21 for (i = 0; i < n_points; i++) { 39 int n_points, 45 xpoints = TranslatePoints (points, n_points, t, mode); 47 XFillPolygon (dpy, d, gc, xpoints, n_points, shape,
|
| /xsrc/external/mit/freetype/dist/include/freetype/internal/ |
| ftgloadr.h | 97 /* check that there is enough space to add `n_points' and `n_contours' */ 101 FT_UInt n_points, 107 ( (FT_UInt)(_loader)->base.outline.n_points + \ 108 (FT_UInt)(_loader)->current.outline.n_points + \
|
| /xsrc/external/mit/freetype/dist/src/truetype/ |
| ttgload.c | 361 FT_Int n_points; local 403 n_points = 0; 406 n_points = cont[-1] + 1; 407 if ( n_points < 0 ) 411 FT_TRACE5(( " # of points: %d\n", n_points )); 414 error = FT_GLYPHLOADER_CHECK_POINTS( gloader, n_points + 4, 0 ); 473 flag_limit = flag + n_points; 498 if ( n_points && outline->tags[0] & OVERLAP_SIMPLE ) 504 vec_limit = vec + n_points; 541 vec_limit = vec + n_points; 946 FT_Int n_points; local [all...] |
| ttinterp.c | 477 exec->pts.n_points = 0; 4338 if ( BOUNDS( aIdx1, exc->zp2.n_points ) || 4339 BOUNDS( aIdx2, exc->zp1.n_points ) ) 4861 if ( BOUNDSL( L, exc->zp2.n_points ) ) 4899 if ( BOUNDS( L, exc->zp2.n_points ) ) 4943 if ( BOUNDS( L, exc->zp0.n_points ) || 4944 BOUNDS( K, exc->zp1.n_points ) ) 5023 if ( BOUNDS( p2, exc->zp1.n_points ) || 5024 BOUNDS( p1, exc->zp2.n_points ) ) 5377 if ( BOUNDS( point, exc->pts.n_points ) ) [all...] |
| ttgxvar.c | 3735 * n_points :: 3745 * An array with `n_points' elements that is filled with unrounded 3756 FT_UInt n_points ) 3797 for ( i = 0; i < n_points; i++ ) 3812 if ( FT_NEW_ARRAY( points_org, n_points ) || 3813 FT_NEW_ARRAY( points_out, n_points ) || 3814 FT_NEW_ARRAY( has_delta, n_points ) ) 3868 if ( FT_NEW_ARRAY( point_deltas_x, n_points ) || 3869 FT_NEW_ARRAY( point_deltas_y, n_points ) ) 3872 for ( j = 0; j < n_points; j++ [all...] |
| /xsrc/external/mit/freetype/dist/src/psaux/ |
| psobjs.c | 1662 FT_Vector* point = outline->points + outline->n_points; 1663 FT_Byte* control = (FT_Byte*)outline->tags + outline->n_points; 1670 outline->n_points++; 1717 (short)( outline->n_points - 1 ); 1767 if ( outline->n_contours && first == outline->n_points ) 1775 if ( outline->n_points > 1 ) 1778 FT_Vector* p2 = outline->points + outline->n_points - 1; 1779 FT_Byte* control = (FT_Byte*)outline->tags + outline->n_points - 1; 1786 outline->n_points--; 1793 if ( first == outline->n_points - 1 [all...] |
| /xsrc/external/mit/freetype/dist/src/pfr/ |
| pfrgload.c | 90 last = outline->n_points - 1; 105 outline->n_points--; 146 FT_Int n = outline->n_points; 152 outline->n_points++; 182 FT_Vector* vec = outline->points + outline->n_points; 183 FT_Byte* tag = (FT_Byte*)outline->tags + outline->n_points; 193 outline->n_points = (FT_Short)( outline->n_points + 3 ); 774 old_points = base->n_points; 784 num_points = base->n_points - old_points [all...] |
| pfrobjs.c | 356 outline->n_points = 0; 437 for ( n = 0; n < outline->n_points; n++, vec++ )
|
| /xsrc/external/mit/freetype/dist/src/cache/ |
| ftcimage.c | 136 size = (FT_Offset)outg->outline.n_points *
|
| /xsrc/external/mit/freetype/dist/include/freetype/ |
| ftimage.h | 295 * n_points :: 299 * A pointer to an array of `n_points` @FT_Vector elements, giving the 303 * A pointer to an array of `n_points` chars, giving each outline 339 short n_points; /* number of points in the glyph */ member in struct:FT_Outline_ 352 /* FT_Outline.{n_contours,n_points} */
|
| /xsrc/external/mit/freetype/dist/src/sfnt/ |
| sfwoff2.c | 424 FT_ULong n_points, 440 if ( n_points > in_size ) 443 for ( i = 0; i < n_points; ++i ) 533 store_points( FT_ULong n_points, 555 for ( i = 0; i < n_points; ++i ) 629 for ( i = 0; i < n_points; ++i ) 668 compute_bbox( FT_ULong n_points, 684 if ( n_points > 0 ) 692 for ( i = 1; i < n_points; ++i )
|
| /xsrc/external/mit/freetype/dist/src/cff/ |
| cffgload.c | 279 glyph->root.outline.n_points = 0; 383 glyph->root.outline.n_points = 0; 644 for ( n = cur->n_points; n > 0; n--, vec++ )
|
| /xsrc/external/mit/freetype/dist/src/smooth/ |
| ftsmooth.c | 277 FT_Vector* points_end = FT_OFFSET( points, outline->n_points ); 309 FT_Vector* points_end = FT_OFFSET( points, outline->n_points ); 374 FT_Vector* points_end = FT_OFFSET( points, outline->n_points );
|
| /xsrc/external/mit/freetype/dist/src/cid/ |
| cidgload.c | 366 cidglyph->outline.n_points = 0; 492 for ( n = cur->n_points; n > 0; n--, vec++ )
|
| /xsrc/external/mit/glu/dist/src/libnurbs/interface/ |
| glsurfeval.h | 303 void inEvalULine(int n_points, REAL v, REAL* u_vals, 306 void inEvalVLine(int n_points, REAL u, REAL* v_vals,
|