Lines Matching defs:shift
509 /* only shift and offset apply to stencil */
543 /* shift and offset indexes */
706 GLint shift = 0;
709 if (shift == 0)
711 *dst |= ((source[i] != 0) << shift);
712 shift++;
713 if (shift == 8) {
714 shift = 0;
721 GLint shift = 7;
724 if (shift == 7)
726 *dst |= ((source[i] != 0) << shift);
727 shift--;
728 if (shift < 0) {
729 shift = 7;