Lines Matching refs:fFile
80 …: fFile(NULL), fPointSize(pointSize), fUnitsPerEM(0), fFontChecksum(0), fAscent(0), fDescent(0), f… in PortableFontInstance()
88 fFile = fopen(fileName, "rb"); in PortableFontInstance()
91 if (fFile == NULL) { in PortableFontInstance()
100 size_t numRead = fread(&tempDir, sizeof tempDir, 1, fFile); in PortableFontInstance()
119 fseek(fFile, 0L, SEEK_SET); in PortableFontInstance()
120 numRead = fread((void *) fDirectory, sizeof(char), dirSize, fFile); in PortableFontInstance()
186 fclose(fFile); in PortableFontInstance()
187 fFile = NULL; in PortableFontInstance()
193 if (fFile != NULL) { in ~PortableFontInstance()
194 fclose(fFile); in ~PortableFontInstance()
245 fseek(fFile, SWAPL(entry->offset), SEEK_SET); in readTable()
246 size_t numRead = fread(table, sizeof(char), *length, fFile); in readTable()
415 fseek(fFile, 0L, SEEK_SET); in getRawChecksum()
418 while((r = fgetc(fFile)) != EOF) { in getRawChecksum()