Lines Matching defs:bshift
61 int rshift, bshift, gshift, ashift;
74 bshift = 0;
81 bshift = gshift + gbits;
82 ashift = bshift + bbits;
84 bshift = PICT_FORMAT_BPP(format) - bbits;
85 gshift = bshift - gbits;
91 *pixel |= ( blue >> (16 - bbits)) << bshift;
110 int rshift, bshift, gshift, ashift;
121 bshift = 0;
128 bshift = gshift + gbits;
129 ashift = bshift + bbits;
131 bshift = PICT_FORMAT_BPP(format) - bbits;
132 gshift = bshift - gbits;
150 *blue = ((pixel >> bshift ) & ((1 << bbits) - 1)) << (16 - bbits);