c3                762 ext/gd/libgd/gd_interpolation.c 	const int c3 = im->trueColor == 1 ? getPixelOverflowTC(im, sx, sy - 1, bgColor)     : getPixelOverflowPalette(im, sx, sy - 1, bgColor);
c3                771 ext/gd/libgd/gd_interpolation.c 		r = (int)(m1*gdTrueColorGetRed(c1)   + m2*gdTrueColorGetRed(c2)   + m3*gdTrueColorGetRed(c3)   + m4*gdTrueColorGetRed(c4));
c3                772 ext/gd/libgd/gd_interpolation.c 		g = (int)(m1*gdTrueColorGetGreen(c1) + m2*gdTrueColorGetGreen(c2) + m3*gdTrueColorGetGreen(c3) + m4*gdTrueColorGetGreen(c4));
c3                773 ext/gd/libgd/gd_interpolation.c 		b = (int)(m1*gdTrueColorGetBlue(c1)  + m2*gdTrueColorGetBlue(c2)  + m3*gdTrueColorGetBlue(c3)  + m4*gdTrueColorGetBlue(c4));
c3                774 ext/gd/libgd/gd_interpolation.c 		a = (int)(m1*gdTrueColorGetAlpha(c1) + m2*gdTrueColorGetAlpha(c2) + m3*gdTrueColorGetAlpha(c3) + m4*gdTrueColorGetAlpha(c4));
c3                776 ext/gd/libgd/gd_interpolation.c 		r = (int)(m1*im->red[(c1)]   + m2*im->red[(c2)]   + m3*im->red[(c3)]   + m4*im->red[(c4)]);
c3                777 ext/gd/libgd/gd_interpolation.c 		g = (int)(m1*im->green[(c1)] + m2*im->green[(c2)] + m3*im->green[(c3)] + m4*im->green[(c4)]);
c3                778 ext/gd/libgd/gd_interpolation.c 		b = (int)(m1*im->blue[(c1)]  + m2*im->blue[(c2)]  + m3*im->blue[(c3)]  + m4*im->blue[(c4)]);
c3                779 ext/gd/libgd/gd_interpolation.c 		a = (int)(m1*im->alpha[(c1)] + m2*im->alpha[(c2)] + m3*im->alpha[(c3)] + m4*im->alpha[(c4)]);
c3                128 ext/mbstring/libmbfl/filters/mbfilter_gb18030.c 	int c1, c2, c3, w = -1;
c3                236 ext/mbstring/libmbfl/filters/mbfilter_gb18030.c 		c3 = filter->cache & 0xff;
c3                240 ext/mbstring/libmbfl/filters/mbfilter_gb18030.c 			c2 >= 0x30 && c2 <= 0x39 && c3 >= 0x81 && c3 <= 0xfe && c >= 0x30 && c <= 0x39) {
c3                242 ext/mbstring/libmbfl/filters/mbfilter_gb18030.c 				w = ((((c1 - 0x90)*10 + (c2 - 0x30))*126 + (c3 - 0x81)))*10 + (c - 0x30) + 0x10000;
c3                244 ext/mbstring/libmbfl/filters/mbfilter_gb18030.c 				w = (((c1 - 0x81)*10 + (c2 - 0x30))*126 + (c3 - 0x81))*10 + (c - 0x30);
c3                249 ext/mbstring/libmbfl/filters/mbfilter_gb18030.c 						w = (c1 << 24) | (c2 << 16) | (c3 << 8) | c;
c3                257 ext/mbstring/libmbfl/filters/mbfilter_gb18030.c 					w = (c1 << 24) | (c2 << 16) | (c3 << 8) | c;
c3                266 ext/mbstring/libmbfl/filters/mbfilter_gb18030.c 			w = (c1 << 24) | (c2 << 16) | (c3 << 8) | c;
c3                392 ext/standard/crypt_blowfish.c 	unsigned int tmp, c1, c2, c3, c4;
c3                400 ext/standard/crypt_blowfish.c 		BF_safe_atoi64(c3, *sptr++);
c3                401 ext/standard/crypt_blowfish.c 		*dptr++ = ((c2 & 0x0F) << 4) | ((c3 & 0x3C) >> 2);
c3                405 ext/standard/crypt_blowfish.c 		*dptr++ = ((c3 & 0x03) << 6) | c4;