HomeSort by relevance Sort by last modified time
    Searched defs:n_contours (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/freetype/src/base/
ftoutln.c 83 for ( n = 0; n < outline->n_contours; n++ )
321 anoutline->n_contours = (FT_Short)numContours;
358 FT_Int n_contours = outline->n_contours; local
364 if ( n_points == 0 && n_contours == 0 )
368 if ( n_points <= 0 || n_contours <= 0 )
372 for ( n = 0; n < n_contours; n++ )
406 source->n_contours != target->n_contours )
416 FT_ARRAY_COPY( target->contours, source->contours, source->n_contours );
    [all...]
  /external/freetype/src/base/
ftoutln.c 83 for ( n = 0; n < outline->n_contours; n++ )
321 anoutline->n_contours = (FT_Short)numContours;
358 FT_Int n_contours = outline->n_contours; local
364 if ( n_points == 0 && n_contours == 0 )
368 if ( n_points <= 0 || n_contours <= 0 )
372 for ( n = 0; n < n_contours; n++ )
406 source->n_contours != target->n_contours )
416 FT_ARRAY_COPY( target->contours, source->contours, source->n_contours );
    [all...]
  /external/chromium_org/third_party/brotli/src/woff2/
woff2_dec.cc 200 unsigned int n_contours, unsigned int instruction_length,
202 // I believe that n_contours < 65536, in which case this is safe. However, a
204 unsigned int flag_offset = kEndPtsOfContoursOffset + 2 * n_contours + 2 +
465 uint16_t n_contours = 0; local
466 if (!n_contour_stream.ReadU16(&n_contours)) {
471 if (n_contours == 0xffff) {
493 } else if (n_contours > 0) {
499 for (unsigned int j = 0; j < n_contours; ++j) {
523 kEndPtsOfContoursOffset + 2 * n_contours;
527 Store16(glyf_dst, 0, n_contours);
    [all...]
  /external/chromium_org/third_party/freetype/include/freetype/
ftimage.h 351 /* n_contours :: The number of contours in the outline. */
376 /* contours :: An array of `n_contours' shorts, giving the end */
394 short n_contours; /* number of contours in glyph */ member in struct:FT_Outline_
406 /* FT_Outline.{n_contours,n_points} */
    [all...]
  /external/chromium_org/third_party/freetype/src/truetype/
ttgload.c 326 loader->n_contours = FT_NEXT_SHORT( p );
333 FT_TRACE5(( " # of contours: %d\n", loader->n_contours ));
351 FT_Int n_contours = load->n_contours; local
366 error = FT_GLYPHLOADER_CHECK_POINTS( gloader, 0, n_contours );
372 cont_limit = cont + n_contours;
375 if ( n_contours >= 0xFFF || p + ( n_contours + 1 ) * 2 > limit )
380 if ( n_contours > 0 )
398 if ( n_contours > 0
    [all...]
  /external/chromium_org/third_party/ots/src/
woff2.cc 304 unsigned int n_contours, unsigned int instruction_length,
306 // I believe that n_contours < 65536, in which case this is safe. However, a
308 unsigned int flag_offset = kEndPtsOfContoursOffset + 2 * n_contours + 2 +
572 uint16_t n_contours = 0; local
573 if (!n_contour_stream.ReadU16(&n_contours)) {
578 if (n_contours == 0xffff) {
601 } else if (n_contours > 0) {
607 for (unsigned int j = 0; j < n_contours; ++j) {
631 kEndPtsOfContoursOffset + 2 * n_contours;
635 Store16(glyf_dst, 0, n_contours);
    [all...]
  /external/freetype/include/
ftimage.h 351 /* n_contours :: The number of contours in the outline. */
376 /* contours :: An array of `n_contours' shorts, giving the end */
394 short n_contours; /* number of contours in glyph */ member in struct:FT_Outline_
406 /* FT_Outline.{n_contours,n_points} */
    [all...]
  /external/freetype/src/truetype/
ttgload.c 324 loader->n_contours = FT_NEXT_SHORT( p );
331 FT_TRACE5(( " # of contours: %d\n", loader->n_contours ));
349 FT_Int n_contours = load->n_contours; local
364 error = FT_GLYPHLOADER_CHECK_POINTS( gloader, 0, n_contours );
370 cont_limit = cont + n_contours;
373 if ( n_contours >= 0xFFF || p + ( n_contours + 1 ) * 2 > limit )
378 if ( n_contours > 0 )
396 if ( n_contours > 0
    [all...]
  /external/chromium_org/third_party/freetype/include/freetype/internal/
tttypes.h 1368 FT_Short n_contours; \/* number of contours *\/ member in struct:TT_GlyphZoneRec_
1399 FT_Short n_contours; member in struct:TT_LoaderRec_
    [all...]
  /external/freetype/include/internal/
tttypes.h 1445 FT_Short n_contours; \/* number of contours *\/ member in struct:TT_GlyphZoneRec_
1476 FT_Short n_contours; member in struct:TT_LoaderRec_
    [all...]

Completed in 670 milliseconds