tag | line | file | source code |
x | 14 | drivers/FPU-emu/control_w.h | #define _Const_(x) $##x |
x | 16 | drivers/FPU-emu/control_w.h | #define _Const_(x) x |
x | 321 | drivers/FPU-emu/errors.c | FPU_REG const *x; |
x | 326 | drivers/FPU-emu/errors.c | x = a; |
x | 334 | drivers/FPU-emu/errors.c | x = b; |
x | 348 | drivers/FPU-emu/errors.c | x = b; |
x | 355 | drivers/FPU-emu/errors.c | x = &CONST_QNaN; |
x | 361 | drivers/FPU-emu/errors.c | if ( !(x->sigh & 0x80000000) ) /* pseudo-NaN ? */ |
x | 362 | drivers/FPU-emu/errors.c | x = &CONST_QNaN; |
x | 363 | drivers/FPU-emu/errors.c | reg_move(x, dest); |
x | 370 | drivers/FPU-emu/errors.c | if ( !(x->sigh & 0x80000000) ) /* pseudo-NaN ? */ |
x | 371 | drivers/FPU-emu/errors.c | x = &CONST_QNaN; |
x | 372 | drivers/FPU-emu/errors.c | reg_move(x, dest); |
x | 14 | drivers/FPU-emu/exception.h | #define Const_(x) $##x |
x | 16 | drivers/FPU-emu/exception.h | #define Const_(x) x |
x | 45 | drivers/FPU-emu/exception.h | #define EXCEPTION(x) { printk("exception in %s at line %d\n", \ |
x | 46 | drivers/FPU-emu/exception.h | __FILE__, __LINE__); exception(x); } |
x | 48 | drivers/FPU-emu/exception.h | #define EXCEPTION(x) exception(x) |
x | 23 | drivers/FPU-emu/fpu_asm.h | #define SIGN(x) (x) |
x | 24 | drivers/FPU-emu/fpu_asm.h | #define TAG(x) 1(x) |
x | 25 | drivers/FPU-emu/fpu_asm.h | #define EXP(x) 4(x) |
x | 26 | drivers/FPU-emu/fpu_asm.h | #define SIG(x) SIGL_OFFSET##(x) |
x | 27 | drivers/FPU-emu/fpu_asm.h | #define SIGL(x) SIGL_OFFSET##(x) |
x | 28 | drivers/FPU-emu/fpu_asm.h | #define SIGH(x) 12(x) |
x | 33 | drivers/FPU-emu/fpu_emu.h | #define Const(x) $##x |
x | 35 | drivers/FPU-emu/fpu_emu.h | #define Const(x) x |
x | 85 | drivers/FPU-emu/fpu_emu.h | #define st(x) ( regs[((top+x) &7 )] ) |
x | 109 | drivers/FPU-emu/fpu_emu.h | #define reg_move(x, y) { \ |
x | 110 | drivers/FPU-emu/fpu_emu.h | *(short *)&((y)->sign) = *(short *)&((x)->sign); \ |
x | 111 | drivers/FPU-emu/fpu_emu.h | *(long *)&((y)->exp) = *(long *)&((x)->exp); \ |
x | 112 | drivers/FPU-emu/fpu_emu.h | *(long long *)&((y)->sigl) = *(long long *)&((x)->sigl); } |
x | 114 | drivers/FPU-emu/fpu_emu.h | #define significand(x) ( ((unsigned long long *)&((x)->sigl))[0] ) |
x | 122 | drivers/FPU-emu/fpu_emu.h | asmlinkage void poly_div2(unsigned long long *x); |
x | 123 | drivers/FPU-emu/fpu_emu.h | asmlinkage void poly_div4(unsigned long long *x); |
x | 124 | drivers/FPU-emu/fpu_emu.h | asmlinkage void poly_div16(unsigned long long *x); |
x | 125 | drivers/FPU-emu/fpu_emu.h | asmlinkage void polynomial(unsigned accum[], unsigned const x[], |
x | 127 | drivers/FPU-emu/fpu_emu.h | asmlinkage void normalize(FPU_REG *x); |
x | 128 | drivers/FPU-emu/fpu_emu.h | asmlinkage void normalize_nuo(FPU_REG *x); |
x | 140 | drivers/FPU-emu/fpu_emu.h | asmlinkage unsigned shrx(void *l, unsigned x); |
x | 141 | drivers/FPU-emu/fpu_emu.h | asmlinkage unsigned shrxs(void *v, unsigned x); |
x | 142 | drivers/FPU-emu/fpu_emu.h | asmlinkage unsigned long div_small(unsigned long long *x, unsigned long y); |
x | 150 | drivers/FPU-emu/fpu_entry.c | #define bswapw(x) __asm__("xchgb %%al,%%ah":"=a" (x):"0" ((short)x)) |
x | 45 | drivers/FPU-emu/fpu_system.h | #define FPU_verify_area(x,y,z) if ( verify_area(x,y,z) ) \ |
x | 743 | drivers/FPU-emu/fpu_trig.c | unsigned long long x; |
x | 745 | drivers/FPU-emu/fpu_trig.c | x = st0 << n; |
x | 751 | drivers/FPU-emu/fpu_trig.c | :"=m" (x), "=m" (((unsigned *)&x)[1]) |
x | 756 | drivers/FPU-emu/fpu_trig.c | *y = x; |
x | 822 | drivers/FPU-emu/fpu_trig.c | unsigned long long x; |
x | 827 | drivers/FPU-emu/fpu_trig.c | x = significand(st1_ptr) - significand(&tmp); |
x | 829 | drivers/FPU-emu/fpu_trig.c | x = (significand(st1_ptr) << 1) - significand(&tmp); |
x | 830 | drivers/FPU-emu/fpu_trig.c | if ( (x < significand(&tmp)) || |
x | 832 | drivers/FPU-emu/fpu_trig.c | ((x == significand(&tmp)) && (q & 1) ) ) |
x | 835 | drivers/FPU-emu/fpu_trig.c | significand(&tmp) = x; |
x | 40 | drivers/FPU-emu/get_address.c | #define REG_(x) (*(long *)(reg_offset[(x)]+(char *) FPU_info)) |
x | 16 | drivers/FPU-emu/status_w.h | #define Const__(x) $##x |
x | 18 | drivers/FPU-emu/status_w.h | #define Const__(x) x |
x | 226 | drivers/block/blk.h | #define SET_INTR(x) \ |
x | 227 | drivers/block/blk.h | if ((DEVICE_INTR = (x)) != NULL) \ |
x | 234 | drivers/block/blk.h | #define SET_INTR(x) (DEVICE_INTR = (x)) |
x | 99 | drivers/block/floppy.c | #define TYPE(x) ((x)>>2) |
x | 100 | drivers/block/floppy.c | #define DRIVE(x) ((x)&0x03) |
x | 383 | drivers/block/sbpcd.c | # define DPRINTF(x) sbpcd_dprintf x |
x | 400 | drivers/block/sbpcd.c | # define DPRINTF(x) /* nothing */ |
x | 196 | drivers/char/console.c | #define set_kbd(x) set_vc_kbd_flag(kbd_table+currcons,x) |
x | 197 | drivers/char/console.c | #define clr_kbd(x) clr_vc_kbd_flag(kbd_table+currcons,x) |
x | 198 | drivers/char/console.c | #define is_kbd(x) vc_kbd_flag(kbd_table+currcons,x) |
x | 284 | drivers/char/console.c | x = 0; |
x | 287 | drivers/char/console.c | x = video_num_columns - 1; |
x | 289 | drivers/char/console.c | x = new_x; |
x | 302 | drivers/char/console.c | pos = origin + y*video_size_row + (x<<1); |
x | 487 | drivers/char/console.c | pos -= x<<1; |
x | 488 | drivers/char/console.c | need_wrap = x = 0; |
x | 493 | drivers/char/console.c | if (x) { |
x | 495 | drivers/char/console.c | x--; |
x | 503 | drivers/char/console.c | if (x) { |
x | 506 | drivers/char/console.c | x--; |
x | 552 | drivers/char/console.c | count = video_num_columns-x; |
x | 556 | drivers/char/console.c | start = pos - (x<<1); |
x | 557 | drivers/char/console.c | count = x+1; |
x | 560 | drivers/char/console.c | start = pos - (x<<1); |
x | 701 | drivers/char/console.c | respond_num(x+1, currcons, tty); |
x | 810 | drivers/char/console.c | unsigned int i = x; |
x | 831 | drivers/char/console.c | unsigned int i = x; |
x | 890 | drivers/char/console.c | saved_x = x; |
x | 992 | drivers/char/console.c | if (x == video_num_columns - 1) |
x | 995 | drivers/char/console.c | x++; |
x | 1013 | drivers/char/console.c | pos -= (x << 1); |
x | 1014 | drivers/char/console.c | while (x < video_num_columns - 1) { |
x | 1015 | drivers/char/console.c | x++; |
x | 1016 | drivers/char/console.c | if (tab_stop[x >> 5] & (1 << (x & 31))) |
x | 1019 | drivers/char/console.c | pos += (x << 1); |
x | 1067 | drivers/char/console.c | tab_stop[x >> 5] |= (1 << (x & 31)); |
x | 1147 | drivers/char/console.c | gotoxy(currcons,x,y-par[0]); |
x | 1151 | drivers/char/console.c | gotoxy(currcons,x,y+par[0]); |
x | 1155 | drivers/char/console.c | gotoxy(currcons,x+par[0],y); |
x | 1159 | drivers/char/console.c | gotoxy(currcons,x-par[0],y); |
x | 1171 | drivers/char/console.c | gotoxy(currcons,x,par[0]); |
x | 1199 | drivers/char/console.c | tab_stop[x >> 5] &= ~(1 << (x & 31)); |
x | 1327 | drivers/char/console.c | if (x == video_num_columns - 1) { |
x | 1331 | drivers/char/console.c | x++; |
x | 1472 | drivers/char/console.c | pos = origin + y*video_size_row + (x<<1); |
x | 1512 | drivers/char/console.c | pos = origin + y*video_size_row + (x<<1); |
x | 30 | drivers/char/keyboard.c | #define SIZE(x) (sizeof(x)/sizeof((x)[0])) |
x | 29 | drivers/char/tty_ioctl.c | # define PRINTK(x) printk (x) |
x | 31 | drivers/char/tty_ioctl.c | # define PRINTK(x) /**/ |
x | 142 | drivers/char/tty_ioctl.c | #define NOSET_MASK(x,y,z) (x = ((x) & ~(z)) | ((y) & (z))) |
x | 262 | drivers/char/tty_ioctl.c | #define SET_LOW_BITS(x,y) ((x) = (0xffff0000 & (x)) | (y)) |
x | 59 | drivers/net/d_link.c | #define PRINTK(x) if (d_link_debug >= 2) printk x |
x | 62 | drivers/net/d_link.c | #define PRINTK(x) /**/ |
x | 110 | drivers/net/plip.c | #define PRINTK(x) printk x |
x | 112 | drivers/net/plip.c | #define PRINTK(x) /**/ |
x | 115 | drivers/net/plip.c | #define PRINTK2(x) printk x |
x | 117 | drivers/net/plip.c | #define PRINTK2(x) /**/ |
x | 66 | drivers/net/slhc.c | #define DPRINT(x) |
x | 72 | drivers/net/slhc.c | static unsigned char * put16(unsigned char *cp, unsigned short x); |
x | 158 | drivers/net/slhc.c | put16(unsigned char *cp, unsigned short x) |
x | 160 | drivers/net/slhc.c | *cp++ = x >> 8; |
x | 161 | drivers/net/slhc.c | *cp++ = x; |
x | 196 | drivers/net/slhc.c | register int x; |
x | 198 | drivers/net/slhc.c | x = *(*cpp)++; |
x | 199 | drivers/net/slhc.c | if(x == 0){ |
x | 202 | drivers/net/slhc.c | return x & 0xff; /* -1 if PULLCHAR returned error */ |
x | 479 | drivers/net/slhc.c | long x; |
x | 498 | drivers/net/slhc.c | x = *cp++; /* Read conn index */ |
x | 499 | drivers/net/slhc.c | if(x < 0 || x > comp->rslot_limit) |
x | 503 | drivers/net/slhc.c | comp->recv_current = x; |
x | 518 | drivers/net/slhc.c | if((x = pull16(&cp)) == -1) { /* Read the TCP checksum */ |
x | 522 | drivers/net/slhc.c | thp->check = htons(x); |
x | 551 | drivers/net/slhc.c | if((x = decode(&cp)) == -1) { |
x | 555 | drivers/net/slhc.c | thp->urg_ptr = htons(x); |
x | 559 | drivers/net/slhc.c | if((x = decode(&cp)) == -1) { |
x | 563 | drivers/net/slhc.c | thp->window = htons( ntohs(thp->window) + x); |
x | 566 | drivers/net/slhc.c | if((x = decode(&cp)) == -1) { |
x | 570 | drivers/net/slhc.c | thp->ack_seq = htonl( ntohl(thp->ack_seq) + x); |
x | 573 | drivers/net/slhc.c | if((x = decode(&cp)) == -1) { |
x | 577 | drivers/net/slhc.c | thp->seq = htonl( ntohl(thp->seq) + x); |
x | 582 | drivers/net/slhc.c | if((x = decode(&cp)) == -1) { |
x | 586 | drivers/net/slhc.c | ip->id = htons (ntohs (ip->id) + x); |
x | 169 | drivers/net/slhc.h | #define __ARGS(x) x |
x | 33 | drivers/scsi/aha1542.c | #define DEB(x) x |
x | 35 | drivers/scsi/aha1542.c | #define DEB(x) |
x | 42 | drivers/scsi/aha1740.c | #define DEB(x) x |
x | 44 | drivers/scsi/aha1740.c | #define DEB(x) |
x | 19 | drivers/scsi/aha1740.h | #define SLOTBASE(x) ((x << 12)+ 0xc80 ) |
x | 41 | drivers/scsi/scsi_debug.c | #define DEB(x) x |
x | 43 | drivers/scsi/scsi_debug.c | #define DEB(x) |
x | 146 | drivers/scsi/ultrastor.c | #define ALIGNED(x) __attribute__((aligned(x))) |
x | 35 | drivers/scsi/wd7000.c | #define DEB(x) x |
x | 37 | drivers/scsi/wd7000.c | #define DEB(x) |
x | 30 | drivers/sound/configure.c | #define B(x) (1 << (x)) |
x | 13 | drivers/sound/dma.h | #define deb_outb(x,y) {printk("out %02x, %02x\n", x, y);outb(x,y);} |
x | 31 | drivers/sound/gus_vol.c | int i, m, n, x; |
x | 39 | drivers/sound/gus_vol.c | x = 256 + 6 * (voicev - 64); |
x | 51 | drivers/sound/gus_vol.c | x = vel * xpn * 6 + (voicev / 4) * x; |
x | 58 | drivers/sound/gus_vol.c | x = (x * GUS_VOLUME * GUS_VOLUME) / 10000; |
x | 67 | drivers/sound/gus_vol.c | x = (x * mainv * mainv) / 16384; |
x | 70 | drivers/sound/gus_vol.c | if (x < 2) |
x | 72 | drivers/sound/gus_vol.c | else if (x >= 65535) |
x | 79 | drivers/sound/gus_vol.c | n = x; |
x | 96 | drivers/sound/gus_vol.c | m = x - (1 << i); |
x | 121 | drivers/sound/pas2_midi.c | int fifo_space, x; |
x | 123 | drivers/sound/pas2_midi.c | fifo_space = ((x = pas_read (MIDI_FIFO_STATUS)) >> 4) & 0x0f; |
x | 32 | drivers/sound/sb16_dsp.c | #define DEB(x) |
x | 33 | drivers/sound/sb16_dsp.c | #define DEB1(x) |
x | 230 | drivers/sound/sound_config.h | #define DEB(x) |
x | 561 | fs/ext2/balloc.c | unsigned long desc_count, bitmap_count, x; |
x | 575 | fs/ext2/balloc.c | x = ext2_count_free (sb->u.ext2_sb.s_block_bitmap[bitmap_nr], |
x | 578 | fs/ext2/balloc.c | i, gdp->bg_free_blocks_count, x); |
x | 579 | fs/ext2/balloc.c | bitmap_count += x; |
x | 602 | fs/ext2/balloc.c | unsigned long desc_count, bitmap_count, x; |
x | 634 | fs/ext2/balloc.c | x = ext2_count_free (bh, sb->s_blocksize); |
x | 635 | fs/ext2/balloc.c | if (gdp->bg_free_blocks_count != x) |
x | 639 | fs/ext2/balloc.c | gdp->bg_free_blocks_count, x); |
x | 640 | fs/ext2/balloc.c | bitmap_count += x; |
x | 516 | fs/ext2/ialloc.c | unsigned long desc_count, bitmap_count, x; |
x | 530 | fs/ext2/ialloc.c | x = ext2_count_free (sb->u.ext2_sb.s_inode_bitmap[bitmap_nr], |
x | 533 | fs/ext2/ialloc.c | i, gdp->bg_free_inodes_count, x); |
x | 534 | fs/ext2/ialloc.c | bitmap_count += x; |
x | 548 | fs/ext2/ialloc.c | unsigned long desc_count, bitmap_count, x; |
x | 562 | fs/ext2/ialloc.c | x = ext2_count_free (sb->u.ext2_sb.s_inode_bitmap[bitmap_nr], |
x | 564 | fs/ext2/ialloc.c | if (gdp->bg_free_inodes_count != x) |
x | 568 | fs/ext2/ialloc.c | gdp->bg_free_inodes_count, x); |
x | 569 | fs/ext2/ialloc.c | bitmap_count += x; |
x | 119 | fs/hpfs/hpfs_fs.c | #define little_ushort(x) (*(unsigned short *) &(x)) |
x | 20 | fs/namei.c | #define ACC_MODE(x) ("\000\004\002\006"[(x)&O_ACCMODE]) |
x | 23 | fs/proc/array.c | #define LOAD_INT(x) ((x) >> FSHIFT) |
x | 24 | fs/proc/array.c | #define LOAD_FRAC(x) LOAD_INT(((x) & (FIXED_1-1)) * 100) |
x | 21 | fs/select.c | #define ROUND_UP(x,y) (((x)+(y)-1)/(y)) |
x | 23 | fs/xiafs/namei.c | #define RNDUP4(x) ((3+(u_long)(x)) & ~3) |
x | 31 | include/asm/io.h | #define __OUT1(s,x) \ |
x | 32 | include/asm/io.h | extern inline void __out##s(unsigned x value, unsigned short port) { |
x | 37 | include/asm/io.h | #define __OUT(s,s1,x) \ |
x | 38 | include/asm/io.h | __OUT1(s,x) __OUT2(s,s1,"w") : : "a" (value), "d" (port)); } \ |
x | 39 | include/asm/io.h | __OUT1(s##c,x) __OUT2(s,s1,"") : : "a" (value), "i" (port)); } \ |
x | 40 | include/asm/io.h | __OUT1(s##_p,x) __OUT2(s,s1,"w") : : "a" (value), "d" (port)); SLOW_DOWN_IO; } \ |
x | 41 | include/asm/io.h | __OUT1(s##c_p,x) __OUT2(s,s1,"") : : "a" (value), "i" (port)); SLOW_DOWN_IO; } |
x | 16 | include/asm/irq.h | #define __STR(x) #x |
x | 17 | include/asm/irq.h | #define STR(x) __STR(x) |
x | 39 | include/asm/segment.h | #define put_fs_byte(x,addr) put_user_byte((x),(char *)(addr)) |
x | 46 | include/asm/segment.h | #define put_fs_word(x,addr) put_user_word((x),(short *)(addr)) |
x | 53 | include/asm/segment.h | #define put_fs_long(x,addr) put_user_long((x),(int *)(addr)) |
x | 94 | include/asm/segment.h | #define COMMON(x) \ |
x | 100 | include/asm/segment.h | x \ |
x | 158 | include/asm/segment.h | #define COMMON(x) \ |
x | 161 | include/asm/segment.h | x \ |
x | 47 | include/asm/system.h | #define save_flags(x) \ |
x | 48 | include/asm/system.h | __asm__ __volatile__("pushfl ; popl %0":"=r" (x): /* no input */ :"memory") |
x | 50 | include/asm/system.h | #define restore_flags(x) \ |
x | 51 | include/asm/system.h | __asm__ __volatile__("pushl %0 ; popfl": /* no output */ :"r" (x):"memory") |
x | 82 | include/linux/a.out.h | #define N_BADMAG(x) (N_MAGIC(x) != OMAGIC \ |
x | 83 | include/linux/a.out.h | && N_MAGIC(x) != NMAGIC \ |
x | 84 | include/linux/a.out.h | && N_MAGIC(x) != ZMAGIC \ |
x | 85 | include/linux/a.out.h | && N_MAGIC(x) != QMAGIC) |
x | 88 | include/linux/a.out.h | #define _N_HDROFF(x) (1024 - sizeof (struct exec)) |
x | 91 | include/linux/a.out.h | #define N_TXTOFF(x) \ |
x | 92 | include/linux/a.out.h | (N_MAGIC(x) == ZMAGIC ? _N_HDROFF((x)) + sizeof (struct exec) : \ |
x | 93 | include/linux/a.out.h | (N_MAGIC(x) == QMAGIC ? 0 : sizeof (struct exec))) |
x | 97 | include/linux/a.out.h | #define N_DATOFF(x) (N_TXTOFF(x) + (x).a_text) |
x | 101 | include/linux/a.out.h | #define N_TRELOFF(x) (N_DATOFF(x) + (x).a_data) |
x | 105 | include/linux/a.out.h | #define N_DRELOFF(x) (N_TRELOFF(x) + (x).a_trsize) |
x | 109 | include/linux/a.out.h | #define N_SYMOFF(x) (N_DRELOFF(x) + (x).a_drsize) |
x | 113 | include/linux/a.out.h | #define N_STROFF(x) (N_SYMOFF(x) + (x).a_syms) |
x | 118 | include/linux/a.out.h | #define N_TXTADDR(x) (N_MAGIC(x) == QMAGIC ? PAGE_SIZE : 0) |
x | 143 | include/linux/a.out.h | #define _N_SEGMENT_ROUND(x) (((x) + SEGMENT_SIZE - 1) & ~(SEGMENT_SIZE - 1)) |
x | 145 | include/linux/a.out.h | #define _N_TXTENDADDR(x) (N_TXTADDR(x)+(x).a_text) |
x | 148 | include/linux/a.out.h | #define N_DATADDR(x) \ |
x | 149 | include/linux/a.out.h | (N_MAGIC(x)==OMAGIC? (_N_TXTENDADDR(x)) \ |
x | 150 | include/linux/a.out.h | : (_N_SEGMENT_ROUND (_N_TXTENDADDR(x)))) |
x | 155 | include/linux/a.out.h | #define N_BSSADDR(x) (N_DATADDR(x) + (x).a_data) |
x | 106 | include/linux/coff.h | #define COFF_I386BADMAG(x) ((COFF_SHORT((x).f_magic) != COFF_I386MAGIC) \ |
x | 107 | include/linux/coff.h | && COFF_SHORT((x).f_magic) != COFF_I386PTXMAGIC \ |
x | 108 | include/linux/coff.h | && COFF_SHORT((x).f_magic) != COFF_I386AIXMAGIC) |
x | 110 | include/linux/coff.h | #define COFF_I386BADMAG(x) (COFF_SHORT((x).f_magic) != COFF_I386MAGIC) |
x | 73 | include/linux/elf.h | #define ELF32_ST_BIND(x) ((x) >> 4) |
x | 74 | include/linux/elf.h | #define ELF32_ST_TYPE(x) (((unsigned int) x) & 0xf) |
x | 87 | include/linux/elf.h | #define ELF32_R_SYM(x) ((x) >> 8) |
x | 88 | include/linux/elf.h | #define ELF32_R_TYPE(x) ((x) & 0xff) |
x | 125 | include/linux/in.h | __ntohl(unsigned long int x) |
x | 130 | include/linux/in.h | :"=q" (x) |
x | 131 | include/linux/in.h | : "0" (x)); |
x | 132 | include/linux/in.h | return x; |
x | 136 | include/linux/in.h | __constant_ntohl(unsigned long int x) |
x | 138 | include/linux/in.h | return (((x & 0x000000ff) << 24) | |
x | 139 | include/linux/in.h | ((x & 0x0000ff00) << 8) | |
x | 140 | include/linux/in.h | ((x & 0x00ff0000) >> 8) | |
x | 141 | include/linux/in.h | ((x & 0xff000000) >> 24)); |
x | 145 | include/linux/in.h | __ntohs(unsigned short int x) |
x | 148 | include/linux/in.h | : "=q" (x) |
x | 149 | include/linux/in.h | : "0" (x)); |
x | 150 | include/linux/in.h | return x; |
x | 154 | include/linux/in.h | __constant_ntohs(unsigned short int x) |
x | 156 | include/linux/in.h | return (((x & 0x00ff) << 8) | |
x | 157 | include/linux/in.h | ((x & 0xff00) >> 8)); |
x | 160 | include/linux/in.h | #define __htonl(x) __ntohl(x) |
x | 161 | include/linux/in.h | #define __htons(x) __ntohs(x) |
x | 162 | include/linux/in.h | #define __constant_htonl(x) __constant_ntohl(x) |
x | 163 | include/linux/in.h | #define __constant_htons(x) __constant_ntohs(x) |
x | 166 | include/linux/in.h | # define ntohl(x) \ |
x | 167 | include/linux/in.h | (__builtin_constant_p((x)) ? \ |
x | 168 | include/linux/in.h | __constant_ntohl((x)) : \ |
x | 169 | include/linux/in.h | __ntohl((x))) |
x | 170 | include/linux/in.h | # define ntohs(x) \ |
x | 171 | include/linux/in.h | (__builtin_constant_p((x)) ? \ |
x | 172 | include/linux/in.h | __constant_ntohs((x)) : \ |
x | 173 | include/linux/in.h | __ntohs((x))) |
x | 174 | include/linux/in.h | # define htonl(x) \ |
x | 175 | include/linux/in.h | (__builtin_constant_p((x)) ? \ |
x | 176 | include/linux/in.h | __constant_htonl((x)) : \ |
x | 177 | include/linux/in.h | __htonl((x))) |
x | 178 | include/linux/in.h | # define htons(x) \ |
x | 179 | include/linux/in.h | (__builtin_constant_p((x)) ? \ |
x | 180 | include/linux/in.h | __constant_htons((x)) : \ |
x | 181 | include/linux/in.h | __htons((x))) |
x | 38 | include/linux/ip.h | } x; |
x | 86 | include/linux/keyboard.h | #define KTYP(x) ((x) >> 8) |
x | 87 | include/linux/keyboard.h | #define KVAL(x) ((x) & 0xff) |
x | 25 | include/linux/malloc.h | #define kfree(x) kfree_s((x), 0) |
x | 26 | include/linux/malloc.h | #define kcheck(x) kcheck_s((x), 0) |
x | 55 | include/linux/math_emu.h | #define math_abort(x,y) \ |
x | 56 | include/linux/math_emu.h | (((volatile void (*)(struct info *,unsigned int)) __math_abort)((x),(y))) |
x | 37 | include/linux/mcd.h | #define MCDPORT(x) (mcd_port + (x)) |
x | 132 | include/linux/mtio.h | #define GMT_EOF(x) ((x) & 0x80000000) |
x | 133 | include/linux/mtio.h | #define GMT_BOT(x) ((x) & 0x40000000) |
x | 134 | include/linux/mtio.h | #define GMT_EOT(x) ((x) & 0x20000000) |
x | 135 | include/linux/mtio.h | #define GMT_SM(x) ((x) & 0x10000000) /* DDS setmark */ |
x | 136 | include/linux/mtio.h | #define GMT_EOD(x) ((x) & 0x08000000) /* DDS EOD */ |
x | 137 | include/linux/mtio.h | #define GMT_WR_PROT(x) ((x) & 0x04000000) |
x | 139 | include/linux/mtio.h | #define GMT_ONLINE(x) ((x) & 0x01000000) |
x | 140 | include/linux/mtio.h | #define GMT_D_6250(x) ((x) & 0x00800000) |
x | 141 | include/linux/mtio.h | #define GMT_D_1600(x) ((x) & 0x00400000) |
x | 142 | include/linux/mtio.h | #define GMT_D_800(x) ((x) & 0x00200000) |
x | 145 | include/linux/mtio.h | #define GMT_DR_OPEN(x) ((x) & 0x00040000) /* door open (no tape) */ |
x | 147 | include/linux/mtio.h | #define GMT_IM_REP_EN(x) ((x) & 0x00010000) /* immediate report mode */ |
x | 414 | include/linux/sbpcd.h | #define OUT(x,y) outb(y,x) |
x | 69 | include/linux/sched.h | #define CT_TO_SECS(x) ((x) / HZ) |
x | 70 | include/linux/sched.h | #define CT_TO_USECS(x) (((x) % HZ) * 1000000/HZ) |
x | 77 | include/linux/soundcard.h | #define _IO(x,y) ((int)(IOC_VOID|(x<<8)|y)) |
x | 78 | include/linux/soundcard.h | #define _IOR(x,y,t) ((int)(IOC_OUT|((sizeof(t)&IOCPARM_MASK)<<16)|(x<<8)|y)) |
x | 79 | include/linux/soundcard.h | #define _IOW(x,y,t) ((int)(IOC_IN|((sizeof(t)&IOCPARM_MASK)<<16)|(x<<8)|y)) |
x | 81 | include/linux/soundcard.h | #define _IOWR(x,y,t) ((int)(IOC_INOUT|((sizeof(t)&IOCPARM_MASK)<<16)|(x<<8)|y)) |
x | 42 | include/linux/sysv_fs.h | static inline coh_ulong to_coh_ulong (unsigned long x) |
x | 44 | include/linux/sysv_fs.h | return ((x & 0xffff) << 16) | ((x & 0xffff0000) >> 16); |
x | 47 | include/linux/sysv_fs.h | static inline unsigned long from_coh_ulong (coh_ulong x) |
x | 49 | include/linux/sysv_fs.h | return ((x & 0xffff) << 16) | ((x & 0xffff0000) >> 16); |
x | 214 | kernel/signal.c | #define CHECK_SEG(x) if (x) x |= 3 |
x | 215 | kernel/signal.c | #define COPY(x) regs->x = context.x |
x | 250 | kernel/signal.c | #define CODE(x) ((unsigned long *) ((x)+__CODE)) |
x | 298 | lib/malloc.c | unsigned char *x = (unsigned char *) retval; |
x | 300 | lib/malloc.c | x += pos; |
x | 302 | lib/malloc.c | if(*x++ != 0xF8) { |
x | 25 | net/ddi.c | # define PRINTK(x) printk x |
x | 27 | net/ddi.c | # define PRINTK(x) /**/ |
x | 55 | net/inet/inet.h | #define NET16(x) ((((x) >> 8) & 0x00FF) | (((x) << 8) & 0xFF00)) |
x | 60 | net/inet/inet.h | # define DPRINTF(x) dprintf x |
x | 62 | net/inet/inet.h | # define DPRINTF(x) do ; while (0) |
x | 393 | net/inet/ip.c | opt->tstamp.x.full_char = *buff; |
x | 451 | net/inet/skbuff.c | struct sk_buff *x=mem; |
x | 452 | net/inet/skbuff.c | IS_SKB(x); |
x | 453 | net/inet/skbuff.c | if(x->magic_debug_cookie==SK_GOOD_SKB) |
x | 455 | net/inet/skbuff.c | x->magic_debug_cookie=SK_FREED_SKB; |
x | 41 | net/socket.c | #define DPRINTF(x) dprintf x |
x | 43 | net/socket.c | #define DPRINTF(x) /**/ |
x | 46 | tools/build.c | #define STRINGIFY(x) #x |
x | 222 | zBoot/gzip.h | # define Trace(x) fprintf x |
x | 223 | zBoot/gzip.h | # define Tracev(x) {if (verbose) fprintf x ;} |
x | 224 | zBoot/gzip.h | # define Tracevv(x) {if (verbose>1) fprintf x ;} |
x | 225 | zBoot/gzip.h | # define Tracec(c,x) {if (verbose && (c)) fprintf x ;} |
x | 226 | zBoot/gzip.h | # define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;} |
x | 229 | zBoot/gzip.h | # define Trace(x) |
x | 230 | zBoot/gzip.h | # define Tracev(x) |
x | 231 | zBoot/gzip.h | # define Tracevv(x) |
x | 232 | zBoot/gzip.h | # define Tracec(c,x) |
x | 233 | zBoot/gzip.h | # define Tracecv(c,x) |
x | 1 | zBoot/inflate.c | #define DEBG(x) |
x | 2 | zBoot/inflate.c | #define DEBG1(x) |
x | 128 | zBoot/inflate.c | unsigned x[BMAX+1]; /* bit offsets, then code stack */ |
x | 179 | zBoot/inflate.c | x[1] = j = 0; |
x | 180 | zBoot/inflate.c | p = c + 1; xp = x + 2; |
x | 191 | zBoot/inflate.c | v[x[j]++] = i; |
x | 197 | zBoot/inflate.c | x[0] = i = 0; /* first Huffman code is zero */ |
x | 259 | zBoot/inflate.c | x[h] = i; /* save pattern for backing up */ |
x | 297 | zBoot/inflate.c | while ((i & ((1 << w) - 1)) != x[h]) |
x | 115 | zBoot/misc.c | int x,y; |
x | 118 | zBoot/misc.c | x = SCREEN_INFO.orig_x; |
x | 123 | zBoot/misc.c | x = 0; |
x | 129 | zBoot/misc.c | vidmem [ ( x + cols * y ) * 2 ] = c; |
x | 130 | zBoot/misc.c | if ( ++x >= cols ) { |
x | 131 | zBoot/misc.c | x = 0; |
x | 140 | zBoot/misc.c | SCREEN_INFO.orig_x = x; |
x | 282 | zBoot/misc.c | void error(char *x) |
x | 285 | zBoot/misc.c | puts(x); |
x | 23 | zBoot/xtract.c | #define STRINGIFY(x) #x |