Lines Matching defs:chars
40 bitmapGetGlyphs(FontPtr pFont, unsigned long count, unsigned char *chars,
75 c = (*chars++) - firstCol;
83 c = (*chars++) - firstCol;
94 c = *chars++ << 8;
95 c = (c | *chars++) - firstCol;
103 c = *chars++ << 8;
104 c = (c | *chars++) - firstCol;
117 r = (*chars++) - firstRow;
118 c = (*chars++) - firstCol;
134 bitmapGetMetrics(FontPtr pFont, unsigned long count, unsigned char *chars,
149 ret = bitmapGetGlyphs(pFont, count, chars, charEncoding, glyphCount, (CharInfoPtr *) glyphs);