Lines Matching refs:j
373 int j = color_table[i]; local
375 TGA_WRITE_REG(par, default_red[j], TGA_RAMDAC_REG);
376 TGA_WRITE_REG(par, default_grn[j], TGA_RAMDAC_REG);
377 TGA_WRITE_REG(par, default_blu[j], TGA_RAMDAC_REG);
625 unsigned long i, j; local
714 for (j = 0; j < bwidth; ++j)
715 mask |= bitrev8(data[j]) << (j * 8);
740 for (j = 0; j < bwidth; j += 4) {
742 mask |= bitrev8(data[j+0]) << (0 * 8);
743 mask |= bitrev8(data[j+1]) << (1 * 8);
744 mask |= bitrev8(data[j+2]) << (2 * 8);
745 mask |= bitrev8(data[j+3]) << (3 * 8);
746 __raw_writel(mask, fb_base + pos + j*bincr);
764 for (j = 0; j < bwidth; ++j)
765 mask |= bitrev8(data[j]) << (j * 8);
790 for (j = 0; j < bwidth; j += 2) {
792 mask |= bitrev8(data[j+0]) << (0 * 8);
793 mask |= bitrev8(data[j+1]) << (1 * 8);
795 __raw_writel(mask, fb_base + pos + j*bincr);
838 unsigned long pos, line_length, i, j; local
866 for (j = 0; j < width; j++) {
868 __raw_writel(color, fb_base + pos + j*4);
925 unsigned long pos, align, line_length, i, j; local
1019 for (j = 0; j < nwidth; j += 2048)
1020 __raw_writel(fdata, fb_base + pos + j*Bpp);
1021 if (j < width)
1022 __raw_writel(ldata, fb_base + pos + j*Bpp);
1203 unsigned long j; local
1210 for (j = 0; j < n32; j++) {
1211 if (j < 2 && j + 1 < n32 && !backward &&
1220 j += 2;
1221 } while (j + 1 < n32);
1222 j--;