Lines Matching refs:chars
35 int count, char *chars, Bool sixteen, CharInfoPtr *charinfo) in glamor_get_glyphs() argument
59 GetGlyphs(font, (unsigned long) count, (unsigned char *) chars, in glamor_get_glyphs()
78 GetGlyphs(font, 1, (unsigned char *) chars, in glamor_get_glyphs()
82 chars += char_step; in glamor_get_glyphs()
98 unsigned char *chars = (unsigned char *) s_chars; in glamor_text() local
153 row = chars[0]; in glamor_text()
154 col = chars[1]; in glamor_text()
166 col = chars[0]; in glamor_text()
183 chars += 1 + sixteen; in glamor_text()
271 int x, int y, int count, char *chars, Bool sixteen, int *final_pos) in glamor_poly_text() argument
285 glamor_get_glyphs(gc->font, glamor_font, count, chars, sixteen, charinfo); in glamor_poly_text()
299 x, y, count, chars, charinfo, sixteen); in glamor_poly_text()
310 int x, int y, int count, char *chars) in glamor_poly_text8() argument
314 if (glamor_poly_text(drawable, gc, x, y, count, chars, FALSE, &final_pos)) in glamor_poly_text8()
316 return miPolyText8(drawable, gc, x, y, count, chars); in glamor_poly_text8()
321 int x, int y, int count, unsigned short *chars) in glamor_poly_text16() argument
325 if (glamor_poly_text(drawable, gc, x, y, count, (char *) chars, TRUE, &final_pos)) in glamor_poly_text16()
327 return miPolyText16(drawable, gc, x, y, count, chars); in glamor_poly_text16()
386 int x, int y, int count, char *chars, in glamor_image_text() argument
407 glamor_get_glyphs(gc->font, glamor_font, count, chars, sixteen, charinfo); in glamor_image_text()
470 x, y, count, chars, charinfo, sixteen); in glamor_image_text()
480 int x, int y, int count, char *chars) in glamor_image_text8() argument
482 if (!glamor_image_text(drawable, gc, x, y, count, chars, FALSE)) in glamor_image_text8()
483 miImageText8(drawable, gc, x, y, count, chars); in glamor_image_text8()
488 int x, int y, int count, unsigned short *chars) in glamor_image_text16() argument
490 if (!glamor_image_text(drawable, gc, x, y, count, (char *) chars, TRUE)) in glamor_image_text16()
491 miImageText16(drawable, gc, x, y, count, chars); in glamor_image_text16()