Lines Matching defs:b

257 int gdImageColorClosest (gdImagePtr im, int r, int g, int b)  in gdImageColorClosest()
262 int gdImageColorClosestAlpha (gdImagePtr im, int r, int g, int b, int a) in gdImageColorClosestAlpha()
298 #define RETURN_HWB(h, w, b) {HWB->H = h; HWB->W = w; HWB->B = b; return HWB;} argument
299 #define RETURN_RGB(r, g, b) {RGB->R = r; RGB->G = g; RGB->B = b; return RGB;} argument
301 #define SETUP_RGB(s, r, g, b) {s.R = r/255.0f; s.G = g/255.0f; s.B = b/255.0f;} argument
304 #define MIN(a,b) ((a)<(b)?(a):(b)) argument
306 #define MIN3(a,b,c) ((a)<(b)?(MIN(a,c)):(MIN(b,c))) argument
308 #define MAX(a,b) ((a)<(b)?(b):(a)) argument
310 #define MAX3(a,b,c) ((a)<(b)?(MAX(b,c)):(MAX(a,c))) argument
336 float R = RGB.R, G = RGB.G, B = RGB.B, w, v, b, f; in RGB_to_HWB() local
428 int gdImageColorClosestHWB (gdImagePtr im, int r, int g, int b) in gdImageColorClosestHWB()
453 int gdImageColorExact (gdImagePtr im, int r, int g, int b) in gdImageColorExact()
458 int gdImageColorExactAlpha (gdImagePtr im, int r, int g, int b, int a) in gdImageColorExactAlpha()
475 int gdImageColorAllocate (gdImagePtr im, int r, int g, int b) in gdImageColorAllocate()
480 int gdImageColorAllocateAlpha (gdImagePtr im, int r, int g, int b, int a) in gdImageColorAllocateAlpha()
520 int gdImageColorResolve (gdImagePtr im, int r, int g, int b) in gdImageColorResolve()
525 int gdImageColorResolveAlpha (gdImagePtr im, int r, int g, int b, int a) in gdImageColorResolveAlpha()
1266 int dr,dg,db,p,r,g,b; in gdImageSetAAPixelColor() local
2715 int gdCompareInt (const void *a, const void *b) in gdCompareInt()