tag | line | file | source code |
a | 386 | drivers/FPU-emu/errors.c | asmlinkage int real_2op_NaN(FPU_REG const *a, FPU_REG const *b, FPU_REG *dest) |
a | 393 | drivers/FPU-emu/errors.c | x = a; |
a | 394 | drivers/FPU-emu/errors.c | if (a->tag == TW_NaN) |
a | 398 | drivers/FPU-emu/errors.c | signalling = !(a->sigh & b->sigh & 0x40000000); |
a | 400 | drivers/FPU-emu/errors.c | if ( significand(a) < significand(b) ) |
a | 406 | drivers/FPU-emu/errors.c | signalling = !(a->sigh & 0x40000000); |
a | 11 | drivers/FPU-emu/fpu_proto.h | asmlinkage int real_2op_NaN(FPU_REG const *a, FPU_REG const *b, FPU_REG *dest); |
a | 95 | drivers/FPU-emu/fpu_proto.h | extern int reg_add(FPU_REG const *a, FPU_REG const *b, |
a | 97 | drivers/FPU-emu/fpu_proto.h | extern int reg_sub(FPU_REG const *a, FPU_REG const *b, |
a | 136 | drivers/FPU-emu/fpu_proto.h | extern int reg_mul(FPU_REG const *a, FPU_REG const *b, |
a | 28 | drivers/FPU-emu/fpu_system.h | | (((s).b & 0xff) << 16) | ((s).a >> 16)) |
a | 29 | drivers/FPU-emu/fpu_system.h | #define SEG_LIMIT(s) (((s).b & 0xff0000) | ((s).a & 0xffff)) |
a | 29 | drivers/FPU-emu/poly.h | asmlinkage void mul64(unsigned long long const *a, unsigned long long const *b, |
a | 47 | drivers/FPU-emu/poly.h | #define MK_XSIG(a,b,c) { c, b, a } |
a | 25 | drivers/FPU-emu/reg_add_sub.c | int reg_add(FPU_REG const *a, FPU_REG const *b, FPU_REG *dest, int control_w) |
a | 30 | drivers/FPU-emu/reg_add_sub.c | if ( !(a->tag | b->tag) ) |
a | 33 | drivers/FPU-emu/reg_add_sub.c | if (!(a->sign ^ b->sign)) |
a | 36 | drivers/FPU-emu/reg_add_sub.c | dest->sign = a->sign; |
a | 37 | drivers/FPU-emu/reg_add_sub.c | if ( reg_u_add(a, b, dest, control_w) ) |
a | 46 | drivers/FPU-emu/reg_add_sub.c | diff = a->exp - b->exp; |
a | 49 | drivers/FPU-emu/reg_add_sub.c | diff = a->sigh - b->sigh; /* Works only if ms bits are identical */ |
a | 52 | drivers/FPU-emu/reg_add_sub.c | diff = a->sigl > b->sigl; |
a | 54 | drivers/FPU-emu/reg_add_sub.c | diff = -(a->sigl < b->sigl); |
a | 60 | drivers/FPU-emu/reg_add_sub.c | dest->sign = a->sign; |
a | 61 | drivers/FPU-emu/reg_add_sub.c | if ( reg_u_sub(a, b, dest, control_w) ) |
a | 82 | drivers/FPU-emu/reg_add_sub.c | if ( reg_u_sub(b, a, dest, control_w) ) |
a | 92 | drivers/FPU-emu/reg_add_sub.c | if ( (a->tag == TW_NaN) || (b->tag == TW_NaN) ) |
a | 93 | drivers/FPU-emu/reg_add_sub.c | { return real_2op_NaN(a, b, dest); } |
a | 94 | drivers/FPU-emu/reg_add_sub.c | else if (a->tag == TW_Zero) |
a | 98 | drivers/FPU-emu/reg_add_sub.c | char different_signs = a->sign ^ b->sign; |
a | 100 | drivers/FPU-emu/reg_add_sub.c | reg_move(a, dest); |
a | 123 | drivers/FPU-emu/reg_add_sub.c | if ( (a->tag == TW_Valid) && (a->exp <= EXP_UNDER) && |
a | 127 | drivers/FPU-emu/reg_add_sub.c | reg_move(a, dest); return 0; |
a | 129 | drivers/FPU-emu/reg_add_sub.c | else if (a->tag == TW_Infinity) |
a | 138 | drivers/FPU-emu/reg_add_sub.c | reg_move(a, dest); return 0; |
a | 140 | drivers/FPU-emu/reg_add_sub.c | if (a->sign == b->sign) |
a | 143 | drivers/FPU-emu/reg_add_sub.c | reg_move(a, dest); return 0; |
a | 150 | drivers/FPU-emu/reg_add_sub.c | if ( (a->tag == TW_Valid) && (a->exp <= EXP_UNDER) && |
a | 165 | drivers/FPU-emu/reg_add_sub.c | int reg_sub(FPU_REG const *a, FPU_REG const *b, FPU_REG *dest, int control_w) |
a | 170 | drivers/FPU-emu/reg_add_sub.c | if ( !(a->tag | b->tag) ) |
a | 173 | drivers/FPU-emu/reg_add_sub.c | diff = a->exp - b->exp; |
a | 176 | drivers/FPU-emu/reg_add_sub.c | diff = a->sigh - b->sigh; /* Works only if ms bits are identical */ |
a | 179 | drivers/FPU-emu/reg_add_sub.c | diff = a->sigl > b->sigl; |
a | 181 | drivers/FPU-emu/reg_add_sub.c | diff = -(a->sigl < b->sigl); |
a | 185 | drivers/FPU-emu/reg_add_sub.c | switch (a->sign*2 + b->sign) |
a | 192 | drivers/FPU-emu/reg_add_sub.c | dest->sign = a->sign; |
a | 193 | drivers/FPU-emu/reg_add_sub.c | if ( reg_u_sub(a, b, dest, control_w) ) |
a | 214 | drivers/FPU-emu/reg_add_sub.c | dest->sign = a->sign ^ SIGN_POS^SIGN_NEG; |
a | 215 | drivers/FPU-emu/reg_add_sub.c | if ( reg_u_sub(b, a, dest, control_w) ) |
a | 224 | drivers/FPU-emu/reg_add_sub.c | if ( reg_u_add(a, b, dest, control_w) ) |
a | 232 | drivers/FPU-emu/reg_add_sub.c | if ( reg_u_add(a, b, dest, control_w) ) |
a | 243 | drivers/FPU-emu/reg_add_sub.c | if ( (a->tag == TW_NaN) || (b->tag == TW_NaN) ) |
a | 244 | drivers/FPU-emu/reg_add_sub.c | { return real_2op_NaN(b, a, dest); } |
a | 247 | drivers/FPU-emu/reg_add_sub.c | if (a->tag == TW_Zero) |
a | 249 | drivers/FPU-emu/reg_add_sub.c | char same_signs = !(a->sign ^ b->sign); |
a | 251 | drivers/FPU-emu/reg_add_sub.c | reg_move(a, dest); /* Answer for different signs. */ |
a | 262 | drivers/FPU-emu/reg_add_sub.c | if ( (a->tag == TW_Valid) && (a->exp <= EXP_UNDER) && |
a | 266 | drivers/FPU-emu/reg_add_sub.c | reg_move(a, dest); |
a | 270 | drivers/FPU-emu/reg_add_sub.c | else if (a->tag == TW_Zero) |
a | 281 | drivers/FPU-emu/reg_add_sub.c | else if (a->tag == TW_Infinity) |
a | 290 | drivers/FPU-emu/reg_add_sub.c | reg_move(a, dest); return 0; |
a | 293 | drivers/FPU-emu/reg_add_sub.c | if (a->sign == b->sign) |
a | 298 | drivers/FPU-emu/reg_add_sub.c | reg_move(a, dest); |
a | 304 | drivers/FPU-emu/reg_add_sub.c | if ( (a->tag == TW_Valid) && (a->exp <= EXP_UNDER) && |
a | 24 | drivers/FPU-emu/reg_mul.c | int reg_mul(FPU_REG const *a, FPU_REG const *b, |
a | 28 | drivers/FPU-emu/reg_mul.c | char sign = (a->sign ^ b->sign); |
a | 30 | drivers/FPU-emu/reg_mul.c | if (!(a->tag | b->tag)) |
a | 34 | drivers/FPU-emu/reg_mul.c | if ( reg_u_mul(a, b, dest, control_w) ) |
a | 41 | drivers/FPU-emu/reg_mul.c | else if ((a->tag <= TW_Zero) && (b->tag <= TW_Zero)) |
a | 45 | drivers/FPU-emu/reg_mul.c | ((a->tag == TW_Valid) && (a->exp <= EXP_UNDER)) ) |
a | 63 | drivers/FPU-emu/reg_mul.c | if ( (a->tag == TW_NaN) || (b->tag == TW_NaN) ) |
a | 64 | drivers/FPU-emu/reg_mul.c | { return real_2op_NaN(a, b, dest); } |
a | 65 | drivers/FPU-emu/reg_mul.c | else if (a->tag == TW_Infinity) |
a | 76 | drivers/FPU-emu/reg_mul.c | reg_move(a, dest); |
a | 83 | drivers/FPU-emu/reg_mul.c | if (a->tag == TW_Zero) |
a | 88 | drivers/FPU-emu/reg_mul.c | if ( (a->tag == TW_Valid) && (a->exp <= EXP_UNDER) && |
a | 542 | drivers/block/cdu31a.c | unsigned char a, b; |
a | 571 | drivers/block/cdu31a.c | a = read_result_register(); |
a | 572 | drivers/block/cdu31a.c | *result_buffer = a; |
a | 587 | drivers/block/cdu31a.c | if ((a & 0xf0) != 0x20) |
a | 517 | drivers/block/mcd.c | int a, b, c, d; |
a | 519 | drivers/block/mcd.c | getValue(&a); |
a | 523 | drivers/block/mcd.c | printk("%02X %02X %02X %02X\n", a, b, c, d); |
a | 241 | drivers/block/sbpcd.c | #define DO_SBPCD_REQUEST(a) do_sbpcd_request(a) |
a | 242 | drivers/block/sbpcd.c | #define SBPCD_INIT(a,b) sbpcd_init(a,b) |
a | 245 | drivers/block/sbpcd.c | #define DO_SBPCD_REQUEST(a) do_sbpcd2_request(a) |
a | 246 | drivers/block/sbpcd.c | #define SBPCD_INIT(a,b) sbpcd2_init(a,b) |
a | 249 | drivers/block/sbpcd.c | #define DO_SBPCD_REQUEST(a) do_sbpcd3_request(a) |
a | 250 | drivers/block/sbpcd.c | #define SBPCD_INIT(a,b) sbpcd3_init(a,b) |
a | 253 | drivers/block/sbpcd.c | #define DO_SBPCD_REQUEST(a) do_sbpcd4_request(a) |
a | 254 | drivers/block/sbpcd.c | #define SBPCD_INIT(a,b) sbpcd4_init(a,b) |
a | 176 | drivers/char/atixlmouse.c | unsigned char a,b,c; |
a | 178 | drivers/char/atixlmouse.c | a = inb( ATIXL_MSE_SIGNATURE_PORT ); /* Get signature */ |
a | 181 | drivers/char/atixlmouse.c | if (( a != b ) && ( a == c )) |
a | 73 | drivers/char/console.c | #define MIN(a,b) ((a) < (b) ? (a) : (b)) |
a | 44 | drivers/char/n_tty.c | #define MIN(a,b) ((a) < (b) ? (a) : (b)) |
a | 61 | drivers/char/pty.c | #define MIN(a,b) ((a) < (b) ? (a) : (b)) |
a | 186 | drivers/char/serial.c | #define MIN(a,b) ((a) < (b) ? (a) : (b)) |
a | 2814 | drivers/char/tpqic02.c | static inline unsigned long const align_buffer(unsigned long a, unsigned size) |
a | 2816 | drivers/char/tpqic02.c | if (a & (size-1)) /* if not aligned */ |
a | 2817 | drivers/char/tpqic02.c | return (a | (size-1)) + 1; |
a | 2819 | drivers/char/tpqic02.c | return a; |
a | 102 | drivers/char/tty_io.c | #define MIN(a,b) ((a) < (b) ? (a) : (b)) |
a | 280 | drivers/char/vt.c | struct kbentry * const a = (struct kbentry *)arg; |
a | 283 | drivers/char/vt.c | i = verify_area(VERIFY_WRITE, (void *)a, sizeof(struct kbentry)); |
a | 286 | drivers/char/vt.c | if ((i = get_fs_byte((char *) &a->kb_index)) >= NR_KEYS) |
a | 288 | drivers/char/vt.c | if ((s = get_fs_byte((char *) &a->kb_table)) >= NR_KEYMAPS) |
a | 290 | drivers/char/vt.c | put_fs_word(key_map[s][i], (short *) &a->kb_value); |
a | 296 | drivers/char/vt.c | const struct kbentry * a = (struct kbentry *)arg; |
a | 300 | drivers/char/vt.c | i = verify_area(VERIFY_READ, (void *)a, sizeof(struct kbentry)); |
a | 303 | drivers/char/vt.c | if ((i = get_fs_byte((char *) &a->kb_index)) >= NR_KEYS) |
a | 305 | drivers/char/vt.c | if ((s = get_fs_byte((char *) &a->kb_table)) >= NR_KEYMAPS) |
a | 307 | drivers/char/vt.c | if (KTYP(v = get_fs_word(&a->kb_value)) >= NR_TYPES) |
a | 324 | drivers/char/vt.c | struct kbsentry *a = (struct kbsentry *)arg; |
a | 328 | drivers/char/vt.c | i = verify_area(VERIFY_WRITE, (void *)a, sizeof(struct kbsentry)); |
a | 331 | drivers/char/vt.c | if ((i = get_fs_byte(&a->kb_func)) >= NR_FUNC || i < 0) |
a | 333 | drivers/char/vt.c | q = a->kb_string; |
a | 349 | drivers/char/vt.c | struct kbsentry * const a = (struct kbsentry *)arg; |
a | 356 | drivers/char/vt.c | i = verify_area(VERIFY_READ, (void *)a, sizeof(struct kbsentry)); |
a | 359 | drivers/char/vt.c | if ((i = get_fs_byte(&a->kb_func)) >= NR_FUNC) |
a | 369 | drivers/char/vt.c | for (p = a->kb_string; get_fs_byte(p); p++) |
a | 387 | drivers/char/vt.c | for (p = a->kb_string, q = func_table[i]; ; p++, q++) |
a | 395 | drivers/char/vt.c | struct kbdiacrs *a = (struct kbdiacrs *)arg; |
a | 397 | drivers/char/vt.c | i = verify_area(VERIFY_WRITE, (void *) a, sizeof(struct kbdiacrs)); |
a | 400 | drivers/char/vt.c | put_fs_long(accent_table_size, &a->kb_cnt); |
a | 401 | drivers/char/vt.c | memcpy_tofs(a->kbdiacr, accent_table, |
a | 408 | drivers/char/vt.c | struct kbdiacrs *a = (struct kbdiacrs *)arg; |
a | 411 | drivers/char/vt.c | i = verify_area(VERIFY_READ, (void *) a, sizeof(struct kbdiacrs)); |
a | 414 | drivers/char/vt.c | ct = get_fs_long(&a->kb_cnt); |
a | 418 | drivers/char/vt.c | memcpy_fromfs(accent_table, a->kbdiacr, ct*sizeof(struct kbdiacr)); |
a | 308 | drivers/net/de600.c | #define tx_page_adr(a) (((a) + 1) * MEM_2K) |
a | 800 | drivers/net/de600.c | #define min(a,b) ((a)<(b)?(a):(b)) |
a | 79 | drivers/net/ppp.c | #define CHECK_PPP(a) if (!ppp->inuse) { PRINTK ((ppp_warning, __LINE__)) return a;} |
a | 19 | drivers/scsi/scsi_ioctl.c | #define max(a,b) (((a) > (b)) ? (a) : (b)) |
a | 204 | drivers/sound/dma.h | static __inline__ void set_dma_addr(unsigned int dmanr, unsigned int a) |
a | 206 | drivers/sound/dma.h | set_dma_page(dmanr, a>>16); |
a | 208 | drivers/sound/dma.h | deb_outb( a & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE ); |
a | 209 | drivers/sound/dma.h | deb_outb( (a>>8) & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE ) |
a | 211 | drivers/sound/dma.h | deb_outb( (a>>1) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE ); |
a | 212 | drivers/sound/dma.h | deb_outb( (a>>9) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE ); |
a | 28 | fs/ext/file.c | #define MIN(a,b) (((a)<(b))?(a):(b)) |
a | 29 | fs/ext/file.c | #define MAX(a,b) (((a)>(b))?(a):(b)) |
a | 30 | fs/ext2/file.c | #define MIN(a,b) (((a)<(b))?(a):(b)) |
a | 31 | fs/ext2/file.c | #define MAX(a,b) (((a)>(b))?(a):(b)) |
a | 26 | fs/isofs/file.c | #define MIN(a,b) (((a)<(b))?(a):(b)) |
a | 27 | fs/isofs/file.c | #define MAX(a,b) (((a)>(b))?(a):(b)) |
a | 22 | fs/minix/file.c | #define MIN(a,b) (((a)<(b))?(a):(b)) |
a | 23 | fs/minix/file.c | #define MAX(a,b) (((a)>(b))?(a):(b)) |
a | 20 | fs/msdos/file.c | #define MIN(a,b) (((a) < (b)) ? (a) : (b)) |
a | 21 | fs/msdos/file.c | #define MAX(a,b) (((a) > (b)) ? (a) : (b)) |
a | 86 | fs/proc/array.c | int a, b, c; |
a | 88 | fs/proc/array.c | a = avenrun[0] + (FIXED_1/200); |
a | 92 | fs/proc/array.c | LOAD_INT(a), LOAD_FRAC(a), |
a | 29 | fs/sysv/file.c | #define MIN(a,b) (((a)<(b))?(a):(b)) |
a | 30 | fs/sysv/file.c | #define MAX(a,b) (((a)>(b))?(a):(b)) |
a | 28 | fs/xiafs/file.c | #define MIN(a,b) (((a)<(b))?(a):(b)) |
a | 29 | fs/xiafs/file.c | #define MAX(a,b) (((a)>(b))?(a):(b)) |
a | 19 | include/asm/bitops.h | struct __dummy { unsigned long a[100]; }; |
a | 202 | include/asm/dma.h | static __inline__ void set_dma_addr(unsigned int dmanr, unsigned int a) |
a | 204 | include/asm/dma.h | set_dma_page(dmanr, a>>16); |
a | 206 | include/asm/dma.h | outb( a & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE ); |
a | 207 | include/asm/dma.h | outb( (a>>8) & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE ); |
a | 209 | include/asm/dma.h | outb( (a>>1) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE ); |
a | 210 | include/asm/dma.h | outb( (a>>9) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE ); |
a | 75 | include/asm/system.h | #define set_call_gate(a,addr) \ |
a | 76 | include/asm/system.h | _set_gate(a,12,3,addr) |
a | 57 | include/linux/ext2_fs.h | # define ext2_debug(f, a...) { \ |
a | 60 | include/linux/ext2_fs.h | printk (f, ## a); \ |
a | 63 | include/linux/ext2_fs.h | # define ext2_debug(f, a...) /**/ |
a | 50 | include/linux/fs.h | #define MAJOR(a) (int)((unsigned short)(a) >> 8) |
a | 51 | include/linux/fs.h | #define MINOR(a) (int)((unsigned short)(a) & 0xFF) |
a | 52 | include/linux/fs.h | #define MKDEV(a,b) ((int)((((a) & 0xff) << 8) | ((b) & 0xff))) |
a | 5 | include/linux/head.h | unsigned long a,b; |
a | 63 | include/linux/in.h | #define IN_CLASSA(a) ((((long int) (a)) & 0x80000000) == 0) |
a | 69 | include/linux/in.h | #define IN_CLASSB(a) ((((long int) (a)) & 0xc0000000) == 0x80000000) |
a | 75 | include/linux/in.h | #define IN_CLASSC(a) ((((long int) (a)) & 0xc0000000) == 0xc0000000) |
a | 80 | include/linux/in.h | #define IN_CLASSD(a) ((((long int) (a)) & 0xf0000000) == 0xe0000000) |
a | 81 | include/linux/in.h | #define IN_MULTICAST(a) IN_CLASSD(a) |
a | 83 | include/linux/in.h | #define IN_EXPERIMENTAL(a) ((((long int) (a)) & 0xe0000000) == 0xe0000000) |
a | 84 | include/linux/in.h | #define IN_BADCLASS(a) ((((long int) (a)) & 0xf0000000) == 0xf0000000) |
a | 7 | include/linux/malloc.h | #define kmalloc(a,b) deb_kmalloc(__FILE__,__LINE__,a,b) |
a | 8 | include/linux/malloc.h | #define kfree_s(a,b) deb_kfree_s(__FILE__,__LINE__,a,b) |
a | 14 | include/linux/malloc.h | #define kfree(a) deb_kfree_s(__FILE__,__LINE__, a,0) |
a | 15 | include/linux/malloc.h | #define kcheck(a) deb_kcheck_s(__FILE__,__LINE__, a,0) |
a | 16 | include/linux/malloc.h | #define kcheck_s(a,b) deb_kcheck_s(__FILE__,__LINE__, a,b) |
a | 23 | include/linux/malloc.h | #define kcheck_s(a,b) 0 |
a | 105 | include/linux/msdos_fs.h | #define MSDOS_MKMODE(a,m) (m & (a & ATTR_RO ? S_IRUGO|S_IXUGO : S_IRWXUGO)) |
a | 164 | include/linux/unistd.h | #define _syscall1(type,name,atype,a) \ |
a | 165 | include/linux/unistd.h | type name(atype a) \ |
a | 170 | include/linux/unistd.h | : "0" (__NR_##name),"b" ((long)(a))); \ |
a | 177 | include/linux/unistd.h | #define _syscall2(type,name,atype,a,btype,b) \ |
a | 178 | include/linux/unistd.h | type name(atype a,btype b) \ |
a | 183 | include/linux/unistd.h | : "0" (__NR_##name),"b" ((long)(a)),"c" ((long)(b))); \ |
a | 190 | include/linux/unistd.h | #define _syscall3(type,name,atype,a,btype,b,ctype,c) \ |
a | 191 | include/linux/unistd.h | type name(atype a,btype b,ctype c) \ |
a | 196 | include/linux/unistd.h | : "0" (__NR_##name),"b" ((long)(a)),"c" ((long)(b)),"d" ((long)(c))); \ |
a | 203 | include/linux/unistd.h | #define _syscall4(type,name,atype,a,btype,b,ctype,c,dtype,d) \ |
a | 204 | include/linux/unistd.h | type name (atype a, btype b, ctype c, dtype d) \ |
a | 209 | include/linux/unistd.h | : "0" (__NR_##name),"b" ((long)(a)),"c" ((long)(b)), \ |
a | 217 | include/linux/unistd.h | #define _syscall5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \ |
a | 218 | include/linux/unistd.h | type name (atype a,btype b,ctype c,dtype d,etype e) \ |
a | 223 | include/linux/unistd.h | : "0" (__NR_##name),"b" ((long)(a)),"c" ((long)(b)), \ |
a | 25 | kernel/module.c | #define PRINTK(a) printk a |
a | 27 | kernel/module.c | #define PRINTK(a) /* */ |
a | 105 | kernel/sched.c | long * a; |
a | 819 | kernel/sched.c | p->a=p->b=0; |
a | 821 | kernel/sched.c | p->a=p->b=0; |
a | 58 | net/inet/af_inet.c | #define min(a,b) ((a)<(b)?(a):(b)) |
a | 94 | net/inet/dev.c | static __inline__ unsigned long min(unsigned long a, unsigned long b) |
a | 96 | net/inet/dev.c | return (a < b)? a : b; |
a | 58 | net/inet/icmp.c | #define min(a,b) ((a)<(b)?(a):(b)) |
a | 94 | net/inet/ip.c | #define min(a,b) ((a)<(b)?(a):(b)) |
a | 55 | net/inet/packet.c | static unsigned long min(unsigned long a, unsigned long b) |
a | 57 | net/inet/packet.c | if (a < b) |
a | 58 | net/inet/packet.c | return(a); |
a | 55 | net/inet/raw.c | static inline unsigned long min(unsigned long a, unsigned long b) |
a | 57 | net/inet/raw.c | if (a < b) |
a | 58 | net/inet/raw.c | return(a); |
a | 107 | net/inet/sock.c | #define min(a,b) ((a)<(b)?(a):(b)) |
a | 169 | net/inet/tcp.c | static __inline__ int min(unsigned int a, unsigned int b) |
a | 171 | net/inet/tcp.c | if (a < b) |
a | 172 | net/inet/tcp.c | return(a); |
a | 83 | net/inet/udp.c | #define min(a,b) ((a)<(b)?(a):(b)) |
a | 100 | net/unix/sock.c | static inline int min(int a, int b) |
a | 102 | net/unix/sock.c | if (a < b) |
a | 103 | net/unix/sock.c | return(a); |
a | 277 | zBoot/gzip.h | extern void warn OF((char *a, char *b)); |
a | 113 | zBoot/inflate.c | unsigned a; /* counter for codes of length k */ |
a | 210 | zBoot/inflate.c | a = c[k]; |
a | 211 | zBoot/inflate.c | while (a--) |
a | 224 | zBoot/inflate.c | if ((f = 1 << (j = k - w)) > a + 1) /* try a k-w bit table */ |
a | 227 | zBoot/inflate.c | f -= a + 1; /* deduct codes from patterns left */ |
a | 311 | zBoot/misc.c | long * a; |