HomeSort by relevance Sort by last modified time
    Searched refs:n_points (Results 1 - 25 of 29) sorted by null

1 2

  /external/freetype/src/base/
ftgloadr.c 93 base->outline.n_points = 0;
148 current->points = base->points + base->n_points;
149 current->tags = base->tags + base->n_points;
156 base->n_points;
159 base->n_points;
195 /* Ensure that we can add `n_points' and `n_contours' to our glyph. */
201 FT_UInt n_points,
214 new_max = base->n_points + current->n_points + n_points;
    [all...]
ftoutln.c 312 anoutline->n_points = (FT_UShort)numPoints;
349 FT_Int n_points = outline->n_points; local
356 if ( n_points == 0 && n_contours == 0 )
360 if ( n_points <= 0 || n_contours <= 0 )
369 if ( end <= end0 || end >= n_points )
375 if ( end != n_points - 1 )
397 source->n_points != target->n_points ||
404 FT_ARRAY_COPY( target->points, source->points, source->n_points );
    [all...]
ftbbox.c 590 if ( outline->n_points == 0 || outline->n_contours <= 0 )
606 for ( n = 1; n < outline->n_points; n++ )
ftglyph.c 174 error = FT_Outline_New( library, source->n_points, source->n_contours,
206 error = FT_Outline_New( library, source->outline.n_points,
ftstroke.c 705 FT_ARRAY_COPY( outline->points + outline->n_points,
713 FT_Byte* write = (FT_Byte*)outline->tags + outline->n_points;
732 FT_Short idx = (FT_Short)outline->n_points;
745 outline->n_points = (short)( outline->n_points + border->num_points );
    [all...]
  /external/freetype/include/freetype/internal/
ftgloadr.h 116 /* check that there is enough space to add `n_points' and `n_contours' */
120 FT_UInt n_points,
125 ( (_count) == 0 || ((_loader)->base.outline.n_points + \
126 (_loader)->current.outline.n_points + \
tttypes.h 1470 FT_UShort n_points; \/* number of points in zone *\/ member in struct:TT_GlyphZoneRec_
    [all...]
  /external/freetype/src/truetype/
ttgload.c 342 FT_Int n_points; local
382 n_points = 0;
385 n_points = cont[-1] + 1;
386 if ( n_points < 0 )
391 error = FT_GLYPHLOADER_CHECK_POINTS( gloader, n_points + 4, 0 );
444 flag_limit = flag + n_points;
471 vec_limit = vec + n_points;
510 vec_limit = vec + n_points;
543 outline->n_points = (FT_UShort)n_points;
839 FT_Int n_points; local
    [all...]
ttgxvar.h 168 FT_UInt n_points );
ttinterp.c 631 exec->pts.n_points = 0;
    [all...]
ttgxvar.c     [all...]
ttobjs.c 86 zone->max_points = zone->n_points = 0;
969 size->twilight.n_points = n_twilight;
    [all...]
  /external/harfbuzz/contrib/
harfbuzz-freetype.c 69 hb_uint32 *n_points) {
81 *n_points = face->glyph->outline.n_points;
82 if (!(*n_points))
85 if (point > *n_points)
  /external/freetype/src/autofit/
afloader.c 143 slot->outline.n_points + 4,
150 slot->outline.n_points );
158 slot->outline.n_points );
160 gloader->current.outline.n_points = slot->outline.n_points;
172 if ( slot->outline.n_points == 0 )
264 start_point = gloader->base.outline.n_points;
294 num_base_points = gloader->base.outline.n_points;
315 num_points = gloader->base.outline.n_points;
374 dummy.n_points = (short)num_new_points
    [all...]
afhints.c 610 new_max = (FT_UInt)( outline->n_points + 2 );
622 hints->num_points = outline->n_points;
afcjk.c 95 if ( error || face->glyph->outline.n_points <= 0 )
345 if ( error || glyph->outline.n_points <= 0 )
    [all...]
aflatin.c 81 if ( error || face->glyph->outline.n_points <= 0 )
238 if ( error || glyph->outline.n_points <= 0 )
    [all...]
  /external/freetype/src/psaux/
psobjs.c     [all...]
t1decode.c 786 hinter->reset( hinter->hints, builder->current->n_points );
    [all...]
  /external/freetype/src/cff/
cffgload.c 484 FT_Vector* point = outline->points + outline->n_points;
485 FT_Byte* control = (FT_Byte*)outline->tags + outline->n_points;
493 outline->n_points++;
533 (short)( outline->n_points - 1 );
580 if ( outline->n_points > 1 )
583 FT_Vector* p2 = outline->points + outline->n_points - 1;
584 FT_Byte* control = (FT_Byte*)outline->tags + outline->n_points - 1;
591 outline->n_points--;
598 if ( first == outline->n_points - 1 )
601 outline->n_points--
    [all...]
  /external/freetype/include/freetype/
ftimage.h 344 /* n_points :: The number of points in the outline. */
346 /* points :: A pointer to an array of `n_points' @FT_Vector */
349 /* tags :: A pointer to an array of `n_points' chars, giving */
386 short n_points; /* number of points in the glyph */ member in struct:FT_Outline_
397 /* FT_Outline.{n_contours,n_points} */
    [all...]
  /external/icu4c/samples/layout/
GnomeFontInstance.cpp 168 if (pointNumber >= fFace->glyph->outline.n_points) {
  /external/freetype/src/smooth/
ftsmooth.c 259 FT_Vector* points_end = points + outline->n_points;
278 FT_Vector* points_end = points + outline->n_points;
ftgrays.c 418 FT_Vector* limit = vec + outline->n_points;
421 if ( outline->n_points <= 0 )
    [all...]
  /external/freetype/src/pshinter/
pshalgo.c     [all...]

Completed in 5212 milliseconds

1 2