tag | line | file | source code |
y | 134 | drivers/FPU-emu/fpu_emu.h | #define reg_move(x, y) { \ |
y | 135 | drivers/FPU-emu/fpu_emu.h | *(short *)&((y)->sign) = *(short *)&((x)->sign); \ |
y | 136 | drivers/FPU-emu/fpu_emu.h | *(long *)&((y)->exp) = *(long *)&((x)->exp); \ |
y | 137 | drivers/FPU-emu/fpu_emu.h | *(long long *)&((y)->sigl) = *(long long *)&((x)->sigl); } |
y | 167 | drivers/FPU-emu/fpu_emu.h | asmlinkage unsigned long div_small(unsigned long long *x, unsigned long y); |
y | 46 | drivers/FPU-emu/fpu_system.h | #define FPU_verify_area(x,y,z) if ( verify_area(x,y,z) ) \ |
y | 21 | drivers/FPU-emu/fpu_trig.c | static void rem_kernel(unsigned long long st0, unsigned long long *y, |
y | 739 | drivers/FPU-emu/fpu_trig.c | static void rem_kernel(unsigned long long st0, unsigned long long *y, |
y | 756 | drivers/FPU-emu/fpu_trig.c | *y = x; |
y | 322 | drivers/char/console.c | y = 0; |
y | 325 | drivers/char/console.c | y = max_y - 1; |
y | 327 | drivers/char/console.c | y = new_y; |
y | 328 | drivers/char/console.c | pos = origin + y*video_size_row + (x<<1); |
y | 497 | drivers/char/console.c | if (y+1<bottom) { |
y | 498 | drivers/char/console.c | y++; |
y | 508 | drivers/char/console.c | if (y>top) { |
y | 509 | drivers/char/console.c | y--; |
y | 730 | drivers/char/console.c | respond_num(y + (decom ? top+1 : 1), currcons, tty); |
y | 856 | drivers/char/console.c | scrdown(currcons,y,bottom); |
y | 875 | drivers/char/console.c | scrup(currcons,y,bottom); |
y | 922 | drivers/char/console.c | saved_y = y; |
y | 1172 | drivers/char/console.c | gotoxy(currcons,par[0],y); |
y | 1176 | drivers/char/console.c | gotoxy(currcons,x,y-par[0]); |
y | 1180 | drivers/char/console.c | gotoxy(currcons,x,y+par[0]); |
y | 1184 | drivers/char/console.c | gotoxy(currcons,x+par[0],y); |
y | 1188 | drivers/char/console.c | gotoxy(currcons,x-par[0],y); |
y | 1192 | drivers/char/console.c | gotoxy(currcons,0,y+par[0]); |
y | 1196 | drivers/char/console.c | gotoxy(currcons,0,y-par[0]); |
y | 1505 | drivers/char/console.c | pos = origin + y*video_size_row + (x<<1); |
y | 1545 | drivers/char/console.c | pos = origin + y*video_size_row + (x<<1); |
y | 146 | drivers/char/tty_ioctl.c | #define NOSET_MASK(x,y,z) (x = ((x) & ~(z)) | ((y) & (z))) |
y | 268 | drivers/char/tty_ioctl.c | #define SET_LOW_BITS(x,y) ((x) = (0xffff0000 & (x)) | (y)) |
y | 13 | drivers/sound/dma.h | #define deb_outb(x,y) {printk("out %02x, %02x\n", x, y);outb(x,y);} |
y | 21 | fs/select.c | #define ROUND_UP(x,y) (((x)+(y)-1)/(y)) |
y | 415 | include/linux/sbpcd.h | #define OUT(x,y) outb(y,x) |
y | 77 | include/linux/soundcard.h | #define _IO(x,y) ((int)(IOC_VOID|(x<<8)|y)) |
y | 78 | include/linux/soundcard.h | #define _IOR(x,y,t) ((int)(IOC_OUT|((sizeof(t)&IOCPARM_MASK)<<16)|(x<<8)|y)) |
y | 79 | include/linux/soundcard.h | #define _IOW(x,y,t) ((int)(IOC_IN|((sizeof(t)&IOCPARM_MASK)<<16)|(x<<8)|y)) |
y | 81 | include/linux/soundcard.h | #define _IOWR(x,y,t) ((int)(IOC_INOUT|((sizeof(t)&IOCPARM_MASK)<<16)|(x<<8)|y)) |
y | 130 | zBoot/inflate.c | int y; /* number of dummy codes added */ |
y | 169 | zBoot/inflate.c | for (y = 1 << j; j < i; j++, y <<= 1) |
y | 170 | zBoot/inflate.c | if ((y -= c[j]) < 0) |
y | 172 | zBoot/inflate.c | if ((y -= c[i]) < 0) |
y | 174 | zBoot/inflate.c | c[i] += y; |
y | 310 | zBoot/inflate.c | return y != 0 && g != 1; |
y | 115 | zBoot/misc.c | int x,y; |
y | 119 | zBoot/misc.c | y = SCREEN_INFO.orig_y; |
y | 124 | zBoot/misc.c | if ( ++y >= lines ) { |
y | 126 | zBoot/misc.c | y--; |
y | 129 | zBoot/misc.c | vidmem [ ( x + cols * y ) * 2 ] = c; |
y | 132 | zBoot/misc.c | if ( ++y >= lines ) { |
y | 134 | zBoot/misc.c | y--; |
y | 141 | zBoot/misc.c | SCREEN_INFO.orig_y = y; |