Lines Matching defs:glyphs
191 * figures out what glyphs to request
195 * 16-glyph range of glyphs that contains the requested glyph. This is
197 * that nearby glyphs will be used: a good assumption for phonetic
329 range of glyphs loaded to a multiple of
413 CharInfoPtr *glyphs) /* RETURN */
434 glyphsBase = glyphs;
436 /* In this age of glyph caching, any glyphs gotten through this
466 *glyphs++ = CHECK_ENCODING(c);
468 *glyphs++ = pDefault;
474 *glyphs++ = pci;
476 *glyphs++ = pDefault;
486 *glyphs++ = CHECK_ENCODING(c);
488 *glyphs++ = pDefault;
495 *glyphs++ = pci;
497 *glyphs++ = pDefault;
510 *glyphs++ = pci;
512 *glyphs++ = pDefault;
516 *glyphCount = glyphs - glyphsBase;
525 xCharInfo **glyphs) /* RETURN */
546 glyphsBase = glyphs;
550 /* make sure the glyphs are there */
561 *glyphs++ = (xCharInfo *)&encoding[c];
563 *glyphs++ = (xCharInfo *)pDefault;
569 *glyphs++ = (xCharInfo *)(encoding + c);
571 *glyphs++ = (xCharInfo *)pDefault;
581 *glyphs++ = (xCharInfo *)(encoding + c);
583 *glyphs++ = (xCharInfo *)pDefault;
590 *glyphs
592 *glyphs++ = (xCharInfo *)pDefault;
604 *glyphs++ = (xCharInfo *)(encoding + (r * numCols + c));
606 *glyphs++ = (xCharInfo *)pDefault;
610 *glyphCount = glyphs - glyphsBase;
621 FSGlyphPtr glyphs;
629 while ((glyphs = fsdata->glyphs))
631 fsdata->glyphs = glyphs->next;
632 free (glyphs);
723 FSGlyphPtr glyphs;
727 glyphs = malloc (sizeof (FSGlyphRec) + size);
729 glyphs = NULL;
730 if (glyphs == NULL)
732 glyphs->next = fsfont->glyphs;
733 fsfont->glyphs = glyphs;
734 return (pointer) (glyphs + 1);