Lines Matching refs:col
689 int t, col; in tt_getcolreg() local
696 col = t & 15; in tt_getcolreg()
697 col |= col << 4; in tt_getcolreg()
698 col |= col << 8; in tt_getcolreg()
699 *blue = col; in tt_getcolreg()
700 col = (t >> 4) & 15; in tt_getcolreg()
701 col |= col << 4; in tt_getcolreg()
702 col |= col << 8; in tt_getcolreg()
703 *green = col; in tt_getcolreg()
704 col = (t >> 8) & 15; in tt_getcolreg()
705 col |= col << 4; in tt_getcolreg()
706 col |= col << 8; in tt_getcolreg()
707 *red = col; in tt_getcolreg()
1630 { unsigned long col; in falcon_getcolreg() local
1638 col = f030_col[regno]; in falcon_getcolreg()
1639 *red = (col >> 16) & 0xff00; in falcon_getcolreg()
1640 *green = (col >> 8) & 0xff00; in falcon_getcolreg()
1641 *blue = (col << 8) & 0xff00; in falcon_getcolreg()
1949 unsigned col, t; in stste_getcolreg() local
1953 col = shifter_tt.color_reg[regno]; in stste_getcolreg()
1955 t = ((col >> 7) & 0xe) | ((col >> 11) & 1); in stste_getcolreg()
1958 t = ((col >> 3) & 0xe) | ((col >> 7) & 1); in stste_getcolreg()
1961 t = ((col << 1) & 0xe) | ((col >> 3) & 1); in stste_getcolreg()
1966 t = (col >> 7) & 0xe; in stste_getcolreg()
1969 t = (col >> 3) & 0xe; in stste_getcolreg()
1972 t = (col << 1) & 0xe; in stste_getcolreg()