Lines Matching refs:FontFileGetc
69 #define FONT_FILE_GETC_ERR(f) (tmp = FontFileGetc(f), BAIL_ON_EOF)
76 c = FontFileGetc(file);
77 c |= FontFileGetc(file) << 8;
78 c |= FontFileGetc(file) << 16;
79 c |= FontFileGetc(file) << 24;
90 c = FontFileGetc(file) << 24;
91 c |= FontFileGetc(file) << 16;
92 c |= FontFileGetc(file) << 8;
93 c |= FontFileGetc(file);
95 c = FontFileGetc(file);
96 c |= FontFileGetc(file) << 8;
97 c |= FontFileGetc(file) << 16;
98 c |= FontFileGetc(file) << 24;
110 c = FontFileGetc(file) << 8;
111 c |= FontFileGetc(file);
113 c = FontFileGetc(file);
114 c |= FontFileGetc(file) << 8;
120 #define pcfGetINT8(file, format) (position++, FontFileGetc(file))