Lines Matching refs:FontFilePutc
58 (void) FontFilePutc(c, file);
59 (void) FontFilePutc(c >> 8, file);
60 (void) FontFilePutc(c >> 16, file);
61 return FontFilePutc(c >> 24, file);
69 (void) FontFilePutc(c >> 24, file);
70 (void) FontFilePutc(c >> 16, file);
71 (void) FontFilePutc(c >> 8, file);
72 return FontFilePutc(c, file);
74 (void) FontFilePutc(c, file);
75 (void) FontFilePutc(c >> 8, file);
76 (void) FontFilePutc(c >> 16, file);
77 return FontFilePutc(c >> 24, file);
86 (void) FontFilePutc(c >> 8, file);
87 return FontFilePutc(c, file);
89 (void) FontFilePutc(c, file);
90 return FontFilePutc(c >> 8, file);
99 return FontFilePutc(c, file);
151 FontFilePutc(*bits++, file);