Lines Matching refs:fFile
82 …: fFile(NULL), fPointSize(pointSize), fUnitsPerEM(0), fFontChecksum(0), fAscent(0), fDescent(0), f… in PortableFontInstance()
90 fFile = fopen(fileName, "rb"); in PortableFontInstance()
93 if (fFile == NULL) { in PortableFontInstance()
102 size_t numRead = fread(&tempDir, sizeof tempDir, 1, fFile); in PortableFontInstance()
121 fseek(fFile, 0L, SEEK_SET); in PortableFontInstance()
122 numRead = fread((void *) fDirectory, sizeof(char), dirSize, fFile); in PortableFontInstance()
188 fclose(fFile); in PortableFontInstance()
189 fFile = NULL; in PortableFontInstance()
195 if (fFile != NULL) { in ~PortableFontInstance()
196 fclose(fFile); in ~PortableFontInstance()
247 fseek(fFile, SWAPL(entry->offset), SEEK_SET); in readTable()
248 size_t numRead = fread(table, sizeof(char), *length, fFile); in readTable()
417 fseek(fFile, 0L, SEEK_SET); in getRawChecksum()
420 while((r = fgetc(fFile)) != EOF) { in getRawChecksum()