cursor_bits_lookup   63 drivers/video/fbdev/aty/mach64_cursor.c static const u8 cursor_bits_lookup[16] = {
cursor_bits_lookup  168 drivers/video/fbdev/aty/mach64_cursor.c 			    l = cursor_bits_lookup[(b ^ m) >> 4] |
cursor_bits_lookup  170 drivers/video/fbdev/aty/mach64_cursor.c 				    (cursor_bits_lookup[(b ^ m) & 0x0f] << 8);
cursor_bits_lookup  174 drivers/video/fbdev/aty/mach64_cursor.c 			    l = cursor_bits_lookup[(b & m) >> 4] |
cursor_bits_lookup  176 drivers/video/fbdev/aty/mach64_cursor.c 				    (cursor_bits_lookup[(b & m) & 0x0f] << 8);
cursor_bits_lookup 1254 drivers/video/fbdev/pm2fb.c static const u8 cursor_bits_lookup[16] = {
cursor_bits_lookup 1335 drivers/video/fbdev/pm2fb.c 					cursor_bits_lookup[data >> 4] |
cursor_bits_lookup 1336 drivers/video/fbdev/pm2fb.c 					(cursor_bits_lookup[*mask >> 4] << 1));
cursor_bits_lookup 1339 drivers/video/fbdev/pm2fb.c 					cursor_bits_lookup[data & 0xf] |
cursor_bits_lookup 1340 drivers/video/fbdev/pm2fb.c 					(cursor_bits_lookup[*mask & 0xf] << 1));
cursor_bits_lookup  607 drivers/video/fbdev/pm3fb.c static const u8 cursor_bits_lookup[16] = {
cursor_bits_lookup  695 drivers/video/fbdev/pm3fb.c 					cursor_bits_lookup[data >> 4] |
cursor_bits_lookup  696 drivers/video/fbdev/pm3fb.c 					(cursor_bits_lookup[*mask >> 4] << 1));
cursor_bits_lookup  699 drivers/video/fbdev/pm3fb.c 					cursor_bits_lookup[data & 0xf] |
cursor_bits_lookup  700 drivers/video/fbdev/pm3fb.c 					(cursor_bits_lookup[*mask & 0xf] << 1));