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

1 2

  /external/chromium_org/third_party/ots/src/
glyf.cc 76 ots::Buffer *table, int16_t num_contours,
83 for (int i = 0; i < num_contours; ++i) {
107 const uint32_t gly_header_length = 10 + num_contours * 2 + 2;
217 int16_t num_contours, xmin, ymin, xmax, ymax; local
218 if (!table.ReadS16(&num_contours) ||
226 if (num_contours <= -2) {
245 if (num_contours >= 0) {
248 num_contours, gly_offset, gly_length, &new_size)) {
  /external/chromium_org/third_party/freetype/src/base/
ftpatent.c 172 FT_Int num_contours; local
180 FT_READ_SHORT( num_contours ) )
183 if ( num_contours >= 0 ) /* simple glyph */
185 if ( FT_STREAM_SKIP( 8 + num_contours * 2 ) )
ftgloadr.c 366 FT_UInt num_contours = source->base.outline.n_contours; local
369 error = FT_GlyphLoader_CheckPoints( target, num_points, num_contours );
381 num_contours );
393 out->n_contours = (short)num_contours;
ftstroke.c 656 FT_UInt num_contours = 0; local
679 num_contours++;
690 *anum_contours = num_contours;
695 num_contours = 0;
1951 FT_UInt num_points = 0, num_contours = 0; local
1982 FT_UInt count3, count4, num_contours = 0; local
2289 FT_UInt num_points, num_contours; local
2366 FT_UInt num_points, num_contours; local
    [all...]
  /external/freetype/src/base/
ftpatent.c 172 FT_Int num_contours; local
180 FT_READ_SHORT( num_contours ) )
183 if ( num_contours >= 0 ) /* simple glyph */
185 if ( FT_STREAM_SKIP( 8 + num_contours * 2 ) )
ftgloadr.c 369 FT_UInt num_contours = source->base.outline.n_contours; local
372 error = FT_GlyphLoader_CheckPoints( target, num_points, num_contours );
384 num_contours );
396 out->n_contours = (short)num_contours;
ftstroke.c 656 FT_UInt num_contours = 0; local
679 num_contours++;
690 *anum_contours = num_contours;
695 num_contours = 0;
1951 FT_UInt num_points = 0, num_contours = 0; local
1982 FT_UInt count3, count4, num_contours = 0; local
2289 FT_UInt num_points, num_contours; local
2366 FT_UInt num_points, num_contours; local
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftpatent.c 172 FT_Int num_contours; local
180 FT_READ_SHORT( num_contours ) )
183 if ( num_contours >= 0 ) /* simple glyph */
185 if ( FT_STREAM_SKIP( 8 + num_contours * 2 ) )
ftgloadr.c 369 FT_UInt num_contours = source->base.outline.n_contours; local
372 error = FT_GlyphLoader_CheckPoints( target, num_points, num_contours );
384 num_contours );
396 out->n_contours = (short)num_contours;
ftstroke.c 656 FT_UInt num_contours = 0; local
679 num_contours++;
690 *anum_contours = num_contours;
695 num_contours = 0;
1951 FT_UInt num_points = 0, num_contours = 0; local
1982 FT_UInt count3, count4, num_contours = 0; local
2289 FT_UInt num_points, num_contours; local
2366 FT_UInt num_points, num_contours; local
    [all...]
  /external/chromium_org/third_party/brotli/src/woff2/
glyph.cc 76 int16_t num_contours; local
77 if (!buffer.ReadS16(&num_contours)) {
81 if (num_contours == 0) {
94 if (num_contours > 0) {
96 glyph->contours.resize(num_contours);
100 for (int i = 0; i < num_contours; ++i) {
120 std::vector<std::vector<uint8_t> > flags(num_contours);
123 for (int i = 0; i < num_contours; ++i) {
145 for (int i = 0; i < num_contours; ++i) {
172 for (int i = 0; i < num_contours; ++i)
    [all...]
transform.cc 124 int num_contours = glyph.contours.size(); local
125 WriteUShort(&n_contour_stream_, num_contours);
130 for (int i = 0; i < num_contours; i++) {
135 for (int i = 0; i < num_contours; i++) {
147 if (num_contours > 0) {
  /external/freetype/src/autofit/
afhints.c 534 hints->num_contours = 0;
573 hints->num_contours = 0;
611 hints->num_contours = outline->n_contours;
692 AF_Point* contour_limit = contour + hints->num_contours;
722 AF_Point* contour_limit = hints->contours + hints->num_contours;
    [all...]
afhints.h 357 FT_Int num_contours; /* number of used contours */ member in struct:AF_GlyphHintsRec_
aflatin2.c 716 AF_Point* contour_limit = contour + hints->num_contours;
    [all...]
  /external/chromium_org/third_party/freetype/src/pshinter/
pshalgo.c 1035 for ( n = 0; n < glyph->num_contours; n++ )
1150 glyph->num_contours = 0;
2039 FT_UInt num_contours = glyph->num_contours; local
    [all...]
pshalgo.h 197 FT_UInt num_contours; member in struct:PSH_GlyphRec_
  /external/freetype/src/pshinter/
pshalgo.c 1035 for ( n = 0; n < glyph->num_contours; n++ )
1150 glyph->num_contours = 0;
2038 FT_UInt num_contours = glyph->num_contours; local
    [all...]
pshalgo.h 197 FT_UInt num_contours; member in struct:PSH_GlyphRec_
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/pshinter/
pshalgo.c 1035 for ( n = 0; n < glyph->num_contours; n++ )
1150 glyph->num_contours = 0;
2039 FT_UInt num_contours = glyph->num_contours; local
    [all...]
pshalgo.h 197 FT_UInt num_contours; member in struct:PSH_GlyphRec_
  /external/chromium_org/third_party/freetype/src/autofit/
afhints.c 568 hints->num_contours = 0;
607 hints->num_contours = 0;
645 hints->num_contours = outline->n_contours;
723 AF_Point* contour_limit = contour + hints->num_contours;
1172 AF_Point* contour_limit = contour + hints->num_contours;
    [all...]
afhints.h 346 FT_Int num_contours; /* number of used contours */ member in struct:AF_GlyphHintsRec_
aflatin.c 802 AF_Point* contour_limit = contour + hints->num_contours;
    [all...]
aflatin2.c 715 AF_Point* contour_limit = contour + hints->num_contours;
    [all...]

Completed in 555 milliseconds

1 2