Lines Matching refs:codeindex
72 register int codeindex; local
100 codeindex = 0;
137 if (ignorecode) codeindex++; else codeindex = code;
138 if (codeindex >= DIRSIZ)
139 error("glyph number (%d) out of range", codeindex);
140 g[codeindex].pwidth = par + 0.5;
207 g[codeindex].gwidth = maxh + 1 - minh;
208 g[codeindex].gheight = maxv + 1 - minv;
209 g[codeindex].hoff = refh - minh;
210 g[codeindex].voff = refv - minv;
211 bitp = calloc(((g[codeindex].gwidth+7)/8)*g[codeindex].gheight,1);
212 g[codeindex].glyph = bitp;
263 for (codeindex = 0; codeindex < DIRSIZ; codeindex++) {
264 if (g[codeindex].glyph != (char *) 0) {
266 outhex(codeindex);
267 printf("%03d%03d%03d", g[codeindex].pwidth,
268 g[codeindex].gheight, g[codeindex].gwidth);
270 i = -g[codeindex].voff;
271 j = baseline - g[codeindex].hoff;
273 i = baseline - g[codeindex].voff;
274 j = -g[codeindex].hoff;
284 chp = g[codeindex].glyph;
285 for (j = g[codeindex].gheight; j; j--) {
290 for (i = (g[codeindex].gwidth + 7) / 8; i; i--) {