Lines Matching defs:FontFileBitmapSources
38 BitmapSourcesRec FontFileBitmapSources;
47 for (i = 0; i < FontFileBitmapSources.count; i++)
48 if (FontFileBitmapSources.fpe[i] == fpe)
50 if (FontFileBitmapSources.count == FontFileBitmapSources.size)
52 newsize = FontFileBitmapSources.size + 4;
53 new = reallocarray (FontFileBitmapSources.fpe, newsize, sizeof *new);
56 FontFileBitmapSources.size = newsize;
57 FontFileBitmapSources.fpe = new;
59 FontFileBitmapSources.fpe[FontFileBitmapSources.count++] = fpe;
68 for (i = 0; i < FontFileBitmapSources.count; i++)
69 if (FontFileBitmapSources.fpe[i] == fpe)
71 FontFileBitmapSources.count--;
72 if (FontFileBitmapSources.count == 0)
74 FontFileBitmapSources.size = 0;
75 free (FontFileBitmapSources.fpe);
76 FontFileBitmapSources.fpe = 0;
80 for (; i < FontFileBitmapSources.count; i++)
81 FontFileBitmapSources.fpe[i] = FontFileBitmapSources.fpe[i+1];
96 if (FontFileBitmapSources.count == 0)
99 FontFileBitmapSources.count = 0;
100 FontFileBitmapSources.size = 0;
101 free (FontFileBitmapSources.fpe);
102 FontFileBitmapSources.fpe = 0;
129 for (source = 0; source < FontFileBitmapSources.count; source++)
131 if (FontFileBitmapSources.fpe[source] == fpe)
133 dir = (FontDirectoryPtr) FontFileBitmapSources.fpe[source]->private;
143 (*pFont)->fpe = FontFileBitmapSources.fpe[source];
153 (*pFont)->fpe = FontFileBitmapSources.fpe[source];
159 FontFileBitmapSources.fpe[source],
162 (*pFont)->fpe = FontFileBitmapSources.fpe[source];