Lines Matching refs:temp
48 unsigned long temp;
61 temp = (pll_bits[i] >> (7-j)) & 1;
63 temp |= 2;
64 TGA_WRITE_REG(temp, TGA_CLOCK_REG);
594 write_av9110(ScrnInfoPtr pScrn, unsigned int *temp)
604 TGA2_WRITE_CLOCK_REG(temp[0], 0x0000);
605 TGA2_WRITE_CLOCK_REG(temp[1], 0x0000);
606 TGA2_WRITE_CLOCK_REG(temp[2], 0x0000);
607 TGA2_WRITE_CLOCK_REG(temp[3], 0x0000);
608 TGA2_WRITE_CLOCK_REG(temp[4], 0x0000);
609 TGA2_WRITE_CLOCK_REG(temp[5], 0x0000);
647 unsigned int temp, temp1[6];
655 temp = (unsigned int)(tga_c_table->vco_div |
666 temp1[0] = (temp & 0x00000001) | ((temp & 0x00000002) << 7) |
667 ((temp & 0x00000004) << 14) | ((temp & 0x00000008) << 21);
669 temp1[1] = ((temp & 0x00000010) >> 4) | ((temp & 0x00000020) << 3) |
670 ((temp & 0x00000040) << 10) | ((temp & 0x00000080) << 17);
672 temp1[2] = ((temp & 0x00000100) >> 8) | ((temp & 0x00000200) >> 1) |
673 ((temp & 0x00000400) << 6) | ((temp & 0x00000800) << 13);
675 temp1[3] = ((temp & 0x00001000) >> 12) | ((temp & 0x00002000) >> 5) |
676 ((temp & 0x00004000) << 2) | ((temp & 0x00008000) << 9);
678 temp1[4] = ((temp & 0x00010000) >> 16) | ((temp & 0x00020000) >> 9) |
679 ((temp & 0x00040000) >> 2) | ((temp & 0x00080000) << 5);
681 temp1[5] = ((temp & 0x00100000) >> 20) | ((temp & 0x00200000) >> 13) |
682 ((temp & 0x00400000) >> 6) | ((temp & 0x00800000) << 1);