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
630 int x, y, row, col, pc, pcr; local
673 x = pen_x + col;
676 if ((x > im->cx2) || (x < im->cx1)) {
680 tpixel = &im->tpixels[y][x];
727 x = pen_x + col;
730 if (x >= im->sx || x < 0) {
734 pixel = &im->pixels[y][x];
805 double ptsize, double angle, int x, int y, char *string) argument
807 return gdImageStringFTEx(im, brect, fg, fontlist, ptsize, angle, x, y, string, 0);
811 … * im, int *brect, int fg, char *fontlist, double ptsize, double angle, int x, int y, char *string… argument
909 penf.x = penf.y = 0; /* running position of non-rotated string */
910 pen.x = pen.y = 0; /* running position of rotated string */
968 penf.x = 0;
971 pen.x = pen.y = 0;
980 penf.x = 0;
985 pen.x = pen.y = 0;
1074 pen.x += (int)(delta.x * cos_a);
1075 pen.y -= (int)(delta.x * sin_a);
1076 penf.x += delta.x;
1101 glyph_bbox.xMin += penf.x;
1103 glyph_bbox.xMax += penf.x;
1131 penf.x += slot->metrics.horiAdvance;
1171 …gdft_draw_bitmap(tc_cache, im, fg, bm->bitmap, x + x1 + ((pen.x + 31) >> 6) + bm->left, y + y1 + (…
1178 pen.x += image->advance.x >> 10;
1200 brect[0] = x + gdroundupdown(brect[0], d2 > 0);
1202 brect[2] = x + gdroundupdown(brect[2], d1 > 0);
1204 brect[4] = x + gdroundupdown(brect[4], d2 < 0);
1206 brect[6] = x + gdroundupdown(brect[6], d1 < 0);