HomeSort by relevance Sort by last modified time
    Searched refs:sfntHeader (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/opentype/
OpenTypeUtilities.cpp 74 // Fixed type is not defined on non-CG and Windows platforms. |version| in sfntHeader
82 struct sfntHeader {
209 if (dataLength < offsetof(sfntHeader, tables))
212 const sfntHeader* sfnt = reinterpret_cast<const sfntHeader*>(data);
214 if (dataLength < offsetof(sfntHeader, tables) + sfnt->numTables * sizeof(TableDirectoryEntry))
349 const sfntHeader* sfnt = reinterpret_cast<const sfntHeader*>(fontData->data());
369 sfntHeader* rewrittenSfnt = reinterpret_cast<sfntHeader*>(data)
    [all...]
  /external/skia/src/sfnt/
SkOTUtils.cpp 39 SkSFNTHeader sfntHeader;
40 if (fontData->read(&sfntHeader, sizeof(sfntHeader)) < sizeof(sfntHeader)) {
47 int numTables = SkEndian_SwapBE16(sfntHeader.numTables);

Completed in 55 milliseconds