Lines Matching refs:chars
39 bitmapGetGlyphs(FontPtr pFont, unsigned long count, unsigned char *chars,
74 c = (*chars++) - firstCol;
82 c = (*chars++) - firstCol;
93 c = *chars++ << 8;
94 c = (c | *chars++) - firstCol;
102 c = *chars++ << 8;
103 c = (c | *chars++) - firstCol;
116 r = (*chars++) - firstRow;
117 c = (*chars++) - firstCol;
133 bitmapGetMetrics(FontPtr pFont, unsigned long count, unsigned char *chars,
148 ret = bitmapGetGlyphs(pFont, count, chars, charEncoding, glyphCount, (CharInfoPtr *) glyphs);