Lines Matching defs:x
204 #define SWAP16(x) ((((x) & 0x00ff) << 8) | \ argument
207 #define SWAP32(x) ((((x) & 0x000000ff) << 24) | \ argument
212 #define SHORTSWAP32(x) ((((x) & 0x000000ff) << 8) | \ argument
218 #define SWAP16(x) (x) argument
219 #define SWAP32(x) (x) argument
221 #define SHORTSWAP32(x) (((x) >> 16) | ((x) << 16)) argument
223 #define SHORTSWAP32(x) (x) argument
525 int x, y; in video_invertchar() local
1094 static inline void fill_555rgb_pswap(uchar *fb, int x, u8 r, u8 g, u8 b) in fill_555rgb_pswap()
1167 int x, y, bpp, i, ncolors; in display_rle8_bitmap() local
1313 int video_display_bitmap(ulong bmp_image, int x, int y) in video_display_bitmap()
1698 static void logo_plot(void *screen, int x, int y) in logo_plot()
1724 static void plot_logo_or_black(void *screen, int x, int y, int black) in plot_logo_or_black()