Lines Matching refs:FontFileGetc
71 #define FONT_FILE_GETC_ERR(f) (tmp = FontFileGetc(f), BAIL_ON_EOF)
78 c = FontFileGetc(file);
79 c |= FontFileGetc(file) << 8;
80 c |= FontFileGetc(file) << 16;
81 c |= FontFileGetc(file) << 24;
92 c = FontFileGetc(file) << 24;
93 c |= FontFileGetc(file) << 16;
94 c |= FontFileGetc(file) << 8;
95 c |= FontFileGetc(file);
97 c = FontFileGetc(file);
98 c |= FontFileGetc(file) << 8;
99 c |= FontFileGetc(file) << 16;
100 c |= FontFileGetc(file) << 24;
112 c = FontFileGetc(file) << 8;
113 c |= FontFileGetc(file);
115 c = FontFileGetc(file);
116 c |= FontFileGetc(file) << 8;
122 #define pcfGetINT8(file, format) (position++, FontFileGetc(file))