Lines Matching defs:bitsPerRGB
101 0x0000, /* 0 bitsPerRGB */
102 0x8000, /* 1 bitsPerRGB */
103 0xc000, /* 2 bitsPerRGB */
104 0xe000, /* 3 bitsPerRGB */
105 0xf000, /* 4 bitsPerRGB */
106 0xf800, /* 5 bitsPerRGB */
107 0xfc00, /* 6 bitsPerRGB */
108 0xfe00, /* 7 bitsPerRGB */
109 0xff00, /* 8 bitsPerRGB */
110 0xff80, /* 9 bitsPerRGB */
111 0xffc0, /* 10 bitsPerRGB */
112 0xffe0, /* 11 bitsPerRGB */
113 0xfff0, /* 12 bitsPerRGB */
114 0xfff8, /* 13 bitsPerRGB */
115 0xfffc, /* 14 bitsPerRGB */
116 0xfffe, /* 15 bitsPerRGB */
117 0xffff /* 16 bitsPerRGB */
1082 int bitsPerRGB)
1087 * Note that the bitsPerRGB parameter is ignored.
1113 int bitsPerRGB)
1118 * The bitsPerRGB parameter is necessary to perform rounding
1127 int shift = 16 - bitsPerRGB;
1128 int max_color = (1 << bitsPerRGB) - 1;
1147 answer->value &= MASK[bitsPerRGB];
1162 int bitsPerRGB);
1173 int bitsPerRGB,
1185 int bitsPerRGB),
1205 (((IntensityRec *)key)->value >> (16 - bitsPerRGB)) * 0xFFFF)
1206 / ((1 << bitsPerRGB) - 1);
1211 ((IntensityRec *)answer)->value &= MASK[bitsPerRGB];
1221 ((IntensityRec *)answer)->value &= MASK[bitsPerRGB];
1234 return ((*interpol)(key, lo, hi, answer, bitsPerRGB));