Lines Matching refs:dwords
874 pGlint->dwords = ((w + 31) >> 5); /* dwords per scanline */
892 if ((pGlint->dwords*h) < pGlint->FIFOSize)
898 GLINT_WRITE_REG(((pGlint->dwords*h)-1)<<16 | 0x0D, OutputFIFO);
899 GLINT_WAIT(pGlint->dwords*h);
914 int dwords = pGlint->dwords;
917 while(dwords >= pGlint->FIFOSize) {
923 dwords -= pGlint->FIFOSize - 1;
926 if(dwords) {
927 GLINT_WAIT(dwords + 1);
928 GLINT_WRITE_REG(((dwords - 1) << 16) | 0x0D, OutputFIFO);
931 (CARD32*)srcp, dwords);
965 pGlint->dwords = (((w * pScrn->bitsPerPixel) + 3) >> 2); /* per scanline */
982 if (pGlint->dwords < pGlint->FIFOSize)
988 GLINT_WRITE_REG(((pGlint->dwords*h)-1)<<16 | (0x15<<4) | 0x05,
990 GLINT_WAIT(pGlint->dwords);
1005 int dwords = pGlint->dwords;
1009 GLINT_WAIT(dwords);
1012 while(dwords >= pGlint->FIFOSize) {
1020 dwords -= pGlint->FIFOSize - 1;
1022 if(dwords) {
1023 GLINT_WAIT(dwords + 1);
1024 GLINT_WRITE_REG(((dwords - 1) << 16) | (0x15 << 4) |
1029 dwords);
1056 int dwords;
1103 dwords = ((w * Bpp) + 3) >> 2;
1106 count = dwords;
1144 int dwords;
1152 dwords = (w + 31) >>5;
1189 count = dwords;