Lines Matching refs:x

40 		  double ptsize, double angle, int x, int y, char *string)  in gdImageStringTTF()  argument
43 return gdImageStringFT (im, brect, fg, fontlist, ptsize, angle, x, y, string); in gdImageStringTTF()
49 double ptsize, double angle, int x, int y, char *string, in gdImageStringFTEx() argument
57 double ptsize, double angle, int x, int y, char *string) in gdImageStringFT() argument
640 int x, y, row, col, pc, pcr; local
683 x = pen_x + col;
686 if ((x > im->cx2) || (x < im->cx1)) {
690 tpixel = &im->tpixels[y][x];
743 x = pen_x + col;
746 if (x >= im->sx || x < 0) {
750 pixel = &im->pixels[y][x];
821 double ptsize, double angle, int x, int y, char *string) argument
823 return gdImageStringFTEx(im, brect, fg, fontlist, ptsize, angle, x, y, string, 0);
827 … * im, int *brect, int fg, char *fontlist, double ptsize, double angle, int x, int y, char *string… argument
925 penf.x = penf.y = 0; /* running position of non-rotated string */
926 pen.x = pen.y = 0; /* running position of rotated string */
984 penf.x = 0;
987 pen.x = pen.y = 0;
996 penf.x = 0;
1001 pen.x = pen.y = 0;
1090 pen.x += (int)(delta.x * cos_a);
1091 pen.y -= (int)(delta.x * sin_a);
1092 penf.x += delta.x;
1117 glyph_bbox.xMin += penf.x;
1119 glyph_bbox.xMax += penf.x;
1147 penf.x += slot->metrics.horiAdvance;
1187 …gdft_draw_bitmap(tc_cache, im, fg, bm->bitmap, x + x1 + ((pen.x + 31) >> 6) + bm->left, y + y1 + (…
1194 pen.x += image->advance.x >> 10;
1216 brect[0] = x + gdroundupdown(brect[0], d2 > 0);
1218 brect[2] = x + gdroundupdown(brect[2], d1 > 0);
1220 brect[4] = x + gdroundupdown(brect[4], d2 < 0);
1222 brect[6] = x + gdroundupdown(brect[6], d1 < 0);