Searched refs:gasp (Results 1 - 13 of 13) sorted by relevance

/external/freetype/src/base/
H A Dftgasp.c5 /* Access of TrueType's `gasp' table (body). */
36 if ( ttface->gasp.numRanges > 0 )
38 TT_GaspRange range = ttface->gasp.gaspRanges;
39 TT_GaspRange range_end = range + ttface->gasp.numRanges;
52 if ( ttface->gasp.version == 0 )
/external/pdfium/third_party/freetype/src/base/
H A Dftgasp.c5 /* Access of TrueType's `gasp' table (body). */
36 if ( ttface->gasp.numRanges > 0 )
38 TT_GaspRange range = ttface->gasp.gaspRanges;
39 TT_GaspRange range_end = range + ttface->gasp.numRanges;
52 if ( ttface->gasp.version == 0 )
/external/sfntly/cpp/src/test/
H A Dtest_data.cc40 Tag::OS_2, Tag::cmap, Tag::cvt, Tag::feat, Tag::gasp,
47 Tag::VDMX, Tag::cmap, Tag::cvt, Tag::fpgm, Tag::gasp,
/external/sfntly/cpp/src/sfntly/
H A Dtag.cc51 const int32_t Tag::gasp = TAG('g', 'a', 's', 'p'); member in class:sfntly::Tag
104 Tag::gasp,
H A Dtag.h67 static const int32_t gasp; member in struct:sfntly::Tag
/external/skia/src/ports/
H A DSkScalerContext_win_dw.cpp67 AutoTDWriteTable<SkOTTableGridAndScanProcedure> gasp(typeface->fDWriteFontFace.get());
68 return !gasp.fExists;
81 AutoTDWriteTable<SkOTTableGridAndScanProcedure> gasp(typeface->fDWriteFontFace.get());
82 if (!gasp.fExists) {
85 if (gasp.fSize < sizeof(SkOTTableGridAndScanProcedure)) {
88 if (gasp->version != SkOTTableGridAndScanProcedure::version0 &&
89 gasp->version != SkOTTableGridAndScanProcedure::version1)
94 uint16_t numRanges = SkEndianSwap16(gasp->numRanges);
96 gasp.fSize < sizeof(SkOTTableGridAndScanProcedure) +
103 SkTAfter<const SkOTTableGridAndScanProcedure::GaspRange>(gasp
[all...]
/external/freetype/src/sfnt/
H A Dttload.c1358 /* Loads the `gasp' table into a face object. */
1379 /* the gasp table is optional */
1387 face->gasp.version = FT_GET_USHORT();
1388 face->gasp.numRanges = FT_GET_USHORT();
1393 if ( face->gasp.version >= 2 )
1395 face->gasp.numRanges = 0;
1400 num_ranges = face->gasp.numRanges;
1403 if ( FT_QNEW_ARRAY( face->gasp.gaspRanges, num_ranges ) ||
1407 gaspranges = face->gasp.gaspRanges;
H A Dsfobjs.c1281 /* consider the pclt, kerning, and gasp tables as optional */
1283 LOAD_( gasp );
1691 /* freeing the gasp table */
1692 FT_FREE( face->gasp.gaspRanges );
1693 face->gasp.numRanges = 0;
/external/pdfium/third_party/freetype/src/sfnt/
H A Dttload.c1294 /* Loads the `gasp' table into a face object. */
1315 /* the gasp table is optional */
1323 face->gasp.version = FT_GET_USHORT();
1324 face->gasp.numRanges = FT_GET_USHORT();
1329 if ( face->gasp.version >= 2 )
1331 face->gasp.numRanges = 0;
1336 num_ranges = face->gasp.numRanges;
1339 if ( FT_QNEW_ARRAY( face->gasp.gaspRanges, num_ranges ) ||
1343 gaspranges = face->gasp.gaspRanges;
H A Dsfobjs.c1190 /* consider the kerning and gasp tables as optional */
1191 LOAD_( gasp );
1581 /* freeing the gasp table */
1582 FT_FREE( face->gasp.gaspRanges );
1583 face->gasp.numRanges = 0;
/external/freetype/include/freetype/internal/
H A Dtttypes.h373 /* A tiny structure used to model a gasp range according to the */
400 /* A structure modeling the TrueType `gasp' table used to specify */
406 /* numRanges :: The number of gasp ranges in table. */
408 /* gaspRanges :: An array of gasp ranges. */
1237 /* gasp :: The grid-fitting and scaling properties */
1238 /* table (`gasp'). This table is optional in */
1445 TT_GaspRec gasp; /* the `gasp' table */ member in struct:TT_FaceRec_
/external/pdfium/third_party/freetype/include/freetype/internal/
H A Dtttypes.h337 /* A tiny structure used to model a gasp range according to the */
364 /* A structure modeling the TrueType `gasp' table used to specify */
370 /* numRanges :: The number of gasp ranges in table. */
372 /* gaspRanges :: An array of gasp ranges. */
1168 /* gasp :: The grid-fitting and scaling properties */
1169 /* table (`gasp'). This table is optional in */
1302 TT_GaspRec gasp; /* the `gasp' table */ member in struct:TT_FaceRec_
/external/freetype/src/truetype/
H A Dttgxvar.c1084 if ( idx < face->gasp.numRanges - 1 ) \
1085 p = (FT_Short*)&face->gasp.gaspRanges[idx].maxPPEM; \

Completed in 4064 milliseconds