Lines Matching defs:green_max
60 * green_max returns maximum green value
70 unsigned long *green_max,
81 status = default_allocation(vinfo, red_max, green_max, blue_max);
84 best_allocation(vinfo, red_max, green_max, blue_max);
87 gray_allocation(vinfo->colormap_size, red_max, green_max, blue_max);
91 *green_max = *blue_max = 0;
94 *green_max = vinfo->colormap_size - 1;
99 *red_max = *green_max = 0;
114 gray_allocation(int n, unsigned long *red_max, unsigned long *green_max,
118 *green_max = (n * 59) / 100;
120 *green_max += ((n - 1) - (*red_max + *green_max + *blue_max));