Lines Matching refs:y

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
643 y = pen_y + row;
646 if ((y > im->cy2) || (y < im->cy1)) {
680 tpixel = &im->tpixels[y][x];
704 y = pen_y + row;
707 if (y >= im->sy || y < 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 …int *brect, int fg, char *fontlist, double ptsize, double angle, int x, int y, char *string, gdFTS… argument
909 penf.x = penf.y = 0; /* running position of non-rotated string */
910 pen.x = pen.y = 0; /* running position of rotated string */
969 x1 = (int)(- penf.y * sin_a + 32) / 64;
970 y1 = (int)(- penf.y * cos_a + 32) / 64;
971 pen.x = pen.y = 0;
981 penf.y -= (long)(face->size->metrics.height * linespace);
982 penf.y = (penf.y - 32) & -64; /* round to next pixel row */
983 x1 = (int)(- penf.y * sin_a + 32) / 64;
984 y1 = (int)(- penf.y * cos_a + 32) / 64;
985 pen.x = pen.y = 0;
1075 pen.y -= (int)(delta.x * sin_a);
1102 glyph_bbox.yMin += penf.y;
1104 glyph_bbox.yMax += penf.y;
1171 …cache, im, fg, bm->bitmap, x + x1 + ((pen.x + 31) >> 6) + bm->left, y + y1 + ((pen.y + 31) >> 6) -…
1179 pen.y -= image->advance.y >> 10;
1201 brect[1] = y - gdroundupdown(brect[1], d1 < 0);
1203 brect[3] = y - gdroundupdown(brect[3], d2 > 0);
1205 brect[5] = y - gdroundupdown(brect[5], d1 > 0);
1207 brect[7] = y - gdroundupdown(brect[7], d2 < 0);