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
640 int x, y, row, col, pc, pcr; local
653 y = pen_y + row;
656 if ((y > im->cy2) || (y < im->cy1)) {
690 tpixel = &im->tpixels[y][x];
720 y = pen_y + row;
723 if (y >= im->sy || y < 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 …int *brect, int fg, char *fontlist, double ptsize, double angle, int x, int y, char *string, gdFTS… argument
925 penf.x = penf.y = 0; /* running position of non-rotated string */
926 pen.x = pen.y = 0; /* running position of rotated string */
985 x1 = (int)(- penf.y * sin_a + 32) / 64;
986 y1 = (int)(- penf.y * cos_a + 32) / 64;
987 pen.x = pen.y = 0;
997 penf.y -= (long)(face->size->metrics.height * linespace);
998 penf.y = (penf.y - 32) & -64; /* round to next pixel row */
999 x1 = (int)(- penf.y * sin_a + 32) / 64;
1000 y1 = (int)(- penf.y * cos_a + 32) / 64;
1001 pen.x = pen.y = 0;
1091 pen.y -= (int)(delta.x * sin_a);
1118 glyph_bbox.yMin += penf.y;
1120 glyph_bbox.yMax += penf.y;
1187 …cache, im, fg, bm->bitmap, x + x1 + ((pen.x + 31) >> 6) + bm->left, y + y1 + ((pen.y + 31) >> 6) -…
1195 pen.y -= image->advance.y >> 10;
1217 brect[1] = y - gdroundupdown(brect[1], d1 < 0);
1219 brect[3] = y - gdroundupdown(brect[3], d2 > 0);
1221 brect[5] = y - gdroundupdown(brect[5], d1 > 0);
1223 brect[7] = y - gdroundupdown(brect[7], d2 < 0);