Lines Matching refs:fDir
105 SfntHeader() : fCount(0), fDir(nullptr) {}
106 ~SfntHeader() { sk_free(fDir); }
108 /** If it returns true, then fCount and fDir are properly initialized.
109 Note: fDir will point to the raw array of SkSFNTDirEntry values,
112 fDir will be automatically freed when this object is destroyed
129 fDir = reinterpret_cast<SkSFNTDirEntry*>(sk_malloc_throw(size));
130 return read(stream, fDir, size);
134 SkSFNTDirEntry* fDir;
165 tags[i] = SkEndian_SwapBE32(header.fDir[i].fTag);
180 if (SkEndian_SwapBE32(header.fDir[i].fTag) == tag) {
181 size_t realOffset = SkEndian_SwapBE32(header.fDir[i].fOffset);
182 size_t realLength = SkEndian_SwapBE32(header.fDir[i].fLength);