HomeSort by: relevance | last modified time | path
    Searched refs:byteshift (Results 1 - 3 of 3) sorted by relevancy

  /xsrc/external/mit/xf86-video-ati/dist/src/
radeon_render.c 610 int byteshift; local
629 byteshift = (pScrn->bitsPerPixel >> 4);
631 ((pScrn->displayWidth * dsty + dstx) << byteshift)) & ~15;
632 l = ((dstx << byteshift) % 16) >> byteshift;
953 int byteshift; local
971 byteshift = (pScrn->bitsPerPixel >> 4);
973 ((pScrn->displayWidth * dsty + dstx) << byteshift)) & ~15;
974 l = ((dstx << byteshift) % 16) >> byteshift;
    [all...]
legacy_crtc.c 825 int byteshift = info->CurrentLayout.bitsPerPixel >> 4; local
827 int tile_addr = (((y >> 3) * info->CurrentLayout.displayWidth + x) >> (8 - byteshift)) << 11;
828 Base += tile_addr + ((x << byteshift) % 256) + ((y % 8) << 8);
1047 int byteshift = info->CurrentLayout.bitsPerPixel >> 4; local
1049 int tile_addr = (((y >> 3) * info->CurrentLayout.displayWidth + x) >> (8 - byteshift)) << 11;
1050 Base += tile_addr + ((x << byteshift) % 256) + ((y % 8) << 8);
radeon_driver.c 6137 int byteshift = info->CurrentLayout.bitsPerPixel >> 4; local
6139 int tile_addr = (((y >> 3) * info->CurrentLayout.displayWidth + x) >> (8 - byteshift)) << 11;
6140 Base += tile_addr + ((x << byteshift) % 256) + ((y % 8) << 8);

Completed in 9 milliseconds