tag | line | file | source code |
a | 35 | arch/alpha/boot/tools/build.c | static int comp(struct scnhdr * a, struct scnhdr * b) |
a | 37 | arch/alpha/boot/tools/build.c | return a->s_vaddr - b->s_vaddr; |
a | 277 | arch/i386/boot/compressed/gzip.h | extern void warn OF((char *a, char *b)); |
a | 113 | arch/i386/boot/compressed/inflate.c | unsigned a; /* counter for codes of length k */ |
a | 210 | arch/i386/boot/compressed/inflate.c | a = c[k]; |
a | 211 | arch/i386/boot/compressed/inflate.c | while (a--) |
a | 224 | arch/i386/boot/compressed/inflate.c | if ((f = 1 << (j = k - w)) > a + 1) /* try a k-w bit table */ |
a | 227 | arch/i386/boot/compressed/inflate.c | f -= a + 1; /* deduct codes from patterns left */ |
a | 311 | arch/i386/boot/compressed/misc.c | long * a; |
a | 340 | arch/i386/kernel/traps.c | p->a=p->b=0; |
a | 342 | arch/i386/kernel/traps.c | p->a=p->b=0; |
a | 386 | arch/i386/math-emu/errors.c | asmlinkage int real_2op_NaN(FPU_REG const *a, FPU_REG const *b, FPU_REG *dest) |
a | 393 | arch/i386/math-emu/errors.c | x = a; |
a | 394 | arch/i386/math-emu/errors.c | if (a->tag == TW_NaN) |
a | 398 | arch/i386/math-emu/errors.c | signalling = !(a->sigh & b->sigh & 0x40000000); |
a | 400 | arch/i386/math-emu/errors.c | if ( significand(a) < significand(b) ) |
a | 406 | arch/i386/math-emu/errors.c | signalling = !(a->sigh & 0x40000000); |
a | 11 | arch/i386/math-emu/fpu_proto.h | asmlinkage int real_2op_NaN(FPU_REG const *a, FPU_REG const *b, FPU_REG *dest); |
a | 95 | arch/i386/math-emu/fpu_proto.h | extern int reg_add(FPU_REG const *a, FPU_REG const *b, |
a | 97 | arch/i386/math-emu/fpu_proto.h | extern int reg_sub(FPU_REG const *a, FPU_REG const *b, |
a | 136 | arch/i386/math-emu/fpu_proto.h | extern int reg_mul(FPU_REG const *a, FPU_REG const *b, |
a | 29 | arch/i386/math-emu/fpu_system.h | | (((s).b & 0xff) << 16) | ((s).a >> 16)) |
a | 30 | arch/i386/math-emu/fpu_system.h | #define SEG_LIMIT(s) (((s).b & 0xff0000) | ((s).a & 0xffff)) |
a | 29 | arch/i386/math-emu/poly.h | asmlinkage void mul64(unsigned long long const *a, unsigned long long const *b, |
a | 47 | arch/i386/math-emu/poly.h | #define MK_XSIG(a,b,c) { c, b, a } |
a | 25 | arch/i386/math-emu/reg_add_sub.c | int reg_add(FPU_REG const *a, FPU_REG const *b, FPU_REG *dest, int control_w) |
a | 30 | arch/i386/math-emu/reg_add_sub.c | if ( !(a->tag | b->tag) ) |
a | 33 | arch/i386/math-emu/reg_add_sub.c | if (!(a->sign ^ b->sign)) |
a | 36 | arch/i386/math-emu/reg_add_sub.c | dest->sign = a->sign; |
a | 37 | arch/i386/math-emu/reg_add_sub.c | if ( reg_u_add(a, b, dest, control_w) ) |
a | 46 | arch/i386/math-emu/reg_add_sub.c | diff = a->exp - b->exp; |
a | 49 | arch/i386/math-emu/reg_add_sub.c | diff = a->sigh - b->sigh; /* Works only if ms bits are identical */ |
a | 52 | arch/i386/math-emu/reg_add_sub.c | diff = a->sigl > b->sigl; |
a | 54 | arch/i386/math-emu/reg_add_sub.c | diff = -(a->sigl < b->sigl); |
a | 60 | arch/i386/math-emu/reg_add_sub.c | dest->sign = a->sign; |
a | 61 | arch/i386/math-emu/reg_add_sub.c | if ( reg_u_sub(a, b, dest, control_w) ) |
a | 82 | arch/i386/math-emu/reg_add_sub.c | if ( reg_u_sub(b, a, dest, control_w) ) |
a | 92 | arch/i386/math-emu/reg_add_sub.c | if ( (a->tag == TW_NaN) || (b->tag == TW_NaN) ) |
a | 93 | arch/i386/math-emu/reg_add_sub.c | { return real_2op_NaN(a, b, dest); } |
a | 94 | arch/i386/math-emu/reg_add_sub.c | else if (a->tag == TW_Zero) |
a | 98 | arch/i386/math-emu/reg_add_sub.c | char different_signs = a->sign ^ b->sign; |
a | 100 | arch/i386/math-emu/reg_add_sub.c | reg_move(a, dest); |
a | 123 | arch/i386/math-emu/reg_add_sub.c | if ( (a->tag == TW_Valid) && (a->exp <= EXP_UNDER) && |
a | 127 | arch/i386/math-emu/reg_add_sub.c | reg_move(a, dest); return 0; |
a | 129 | arch/i386/math-emu/reg_add_sub.c | else if (a->tag == TW_Infinity) |
a | 138 | arch/i386/math-emu/reg_add_sub.c | reg_move(a, dest); return 0; |
a | 140 | arch/i386/math-emu/reg_add_sub.c | if (a->sign == b->sign) |
a | 143 | arch/i386/math-emu/reg_add_sub.c | reg_move(a, dest); return 0; |
a | 150 | arch/i386/math-emu/reg_add_sub.c | if ( (a->tag == TW_Valid) && (a->exp <= EXP_UNDER) && |
a | 165 | arch/i386/math-emu/reg_add_sub.c | int reg_sub(FPU_REG const *a, FPU_REG const *b, FPU_REG *dest, int control_w) |
a | 170 | arch/i386/math-emu/reg_add_sub.c | if ( !(a->tag | b->tag) ) |
a | 173 | arch/i386/math-emu/reg_add_sub.c | diff = a->exp - b->exp; |
a | 176 | arch/i386/math-emu/reg_add_sub.c | diff = a->sigh - b->sigh; /* Works only if ms bits are identical */ |
a | 179 | arch/i386/math-emu/reg_add_sub.c | diff = a->sigl > b->sigl; |
a | 181 | arch/i386/math-emu/reg_add_sub.c | diff = -(a->sigl < b->sigl); |
a | 185 | arch/i386/math-emu/reg_add_sub.c | switch (a->sign*2 + b->sign) |
a | 192 | arch/i386/math-emu/reg_add_sub.c | dest->sign = a->sign; |
a | 193 | arch/i386/math-emu/reg_add_sub.c | if ( reg_u_sub(a, b, dest, control_w) ) |
a | 214 | arch/i386/math-emu/reg_add_sub.c | dest->sign = a->sign ^ SIGN_POS^SIGN_NEG; |
a | 215 | arch/i386/math-emu/reg_add_sub.c | if ( reg_u_sub(b, a, dest, control_w) ) |
a | 224 | arch/i386/math-emu/reg_add_sub.c | if ( reg_u_add(a, b, dest, control_w) ) |
a | 232 | arch/i386/math-emu/reg_add_sub.c | if ( reg_u_add(a, b, dest, control_w) ) |
a | 243 | arch/i386/math-emu/reg_add_sub.c | if ( (a->tag == TW_NaN) || (b->tag == TW_NaN) ) |
a | 244 | arch/i386/math-emu/reg_add_sub.c | { return real_2op_NaN(b, a, dest); } |
a | 247 | arch/i386/math-emu/reg_add_sub.c | if (a->tag == TW_Zero) |
a | 249 | arch/i386/math-emu/reg_add_sub.c | char same_signs = !(a->sign ^ b->sign); |
a | 251 | arch/i386/math-emu/reg_add_sub.c | reg_move(a, dest); /* Answer for different signs. */ |
a | 262 | arch/i386/math-emu/reg_add_sub.c | if ( (a->tag == TW_Valid) && (a->exp <= EXP_UNDER) && |
a | 266 | arch/i386/math-emu/reg_add_sub.c | reg_move(a, dest); |
a | 270 | arch/i386/math-emu/reg_add_sub.c | else if (a->tag == TW_Zero) |
a | 281 | arch/i386/math-emu/reg_add_sub.c | else if (a->tag == TW_Infinity) |
a | 290 | arch/i386/math-emu/reg_add_sub.c | reg_move(a, dest); return 0; |
a | 293 | arch/i386/math-emu/reg_add_sub.c | if (a->sign == b->sign) |
a | 298 | arch/i386/math-emu/reg_add_sub.c | reg_move(a, dest); |
a | 304 | arch/i386/math-emu/reg_add_sub.c | if ( (a->tag == TW_Valid) && (a->exp <= EXP_UNDER) && |
a | 24 | arch/i386/math-emu/reg_mul.c | int reg_mul(FPU_REG const *a, FPU_REG const *b, |
a | 28 | arch/i386/math-emu/reg_mul.c | char sign = (a->sign ^ b->sign); |
a | 30 | arch/i386/math-emu/reg_mul.c | if (!(a->tag | b->tag)) |
a | 34 | arch/i386/math-emu/reg_mul.c | if ( reg_u_mul(a, b, dest, control_w) ) |
a | 41 | arch/i386/math-emu/reg_mul.c | else if ((a->tag <= TW_Zero) && (b->tag <= TW_Zero)) |
a | 45 | arch/i386/math-emu/reg_mul.c | ((a->tag == TW_Valid) && (a->exp <= EXP_UNDER)) ) |
a | 63 | arch/i386/math-emu/reg_mul.c | if ( (a->tag == TW_NaN) || (b->tag == TW_NaN) ) |
a | 64 | arch/i386/math-emu/reg_mul.c | { return real_2op_NaN(a, b, dest); } |
a | 65 | arch/i386/math-emu/reg_mul.c | else if (a->tag == TW_Infinity) |
a | 76 | arch/i386/math-emu/reg_mul.c | reg_move(a, dest); |
a | 83 | arch/i386/math-emu/reg_mul.c | if (a->tag == TW_Zero) |
a | 88 | arch/i386/math-emu/reg_mul.c | if ( (a->tag == TW_Valid) && (a->exp <= EXP_UNDER) && |
a | 107 | arch/sparc/mm/init.c | unsigned long i, a, b, mask=0; |
a | 216 | arch/sparc/mm/init.c | for(a=0; a<b; a++) |
a | 221 | arch/sparc/mm/init.c | (*(romvec->pv_setctxt))(i, (char *) c, a); |
a | 241 | arch/sparc/mm/init.c | a= (unsigned long) &etext; |
a | 255 | arch/sparc/mm/init.c | for(;b<a; b+=4096) |
a | 614 | drivers/block/cdu31a.c | unsigned char a, b; |
a | 646 | drivers/block/cdu31a.c | a = read_result_register(); |
a | 647 | drivers/block/cdu31a.c | *result_buffer = a; |
a | 651 | drivers/block/cdu31a.c | if ((a & 0xf0) == 0x50) |
a | 670 | drivers/block/cdu31a.c | if ((a & 0xf0) != 0x20) |
a | 35 | drivers/block/ide-cd.c | #define MIN(a,b) ((a) < (b) ? (a) : (b)) |
a | 509 | drivers/block/mcd.c | char a, b, c, d; |
a | 511 | drivers/block/mcd.c | getValue(&a); |
a | 315 | drivers/block/sbpcd.c | #define DO_SBPCD_REQUEST(a) do_sbpcd_request(a) |
a | 316 | drivers/block/sbpcd.c | #define SBPCD_INIT(a,b) sbpcd_init(a,b) |
a | 319 | drivers/block/sbpcd.c | #define DO_SBPCD_REQUEST(a) do_sbpcd2_request(a) |
a | 320 | drivers/block/sbpcd.c | #define SBPCD_INIT(a,b) sbpcd2_init(a,b) |
a | 323 | drivers/block/sbpcd.c | #define DO_SBPCD_REQUEST(a) do_sbpcd3_request(a) |
a | 324 | drivers/block/sbpcd.c | #define SBPCD_INIT(a,b) sbpcd3_init(a,b) |
a | 327 | drivers/block/sbpcd.c | #define DO_SBPCD_REQUEST(a) do_sbpcd4_request(a) |
a | 328 | 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 | 113 | drivers/char/console.c | #define MIN(a,b) ((a) < (b) ? (a) : (b)) |
a | 238 | drivers/char/cyclades.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 | 26 | drivers/char/selection.c | #define MIN(a,b) ((a) < (b) ? (a) : (b)) |
a | 25 | drivers/char/selection.h | #define reverse_video_char(a) (((a) & 0x88) | ((((a) >> 4) | ((a) << 4)) & 0x77)) |
a | 26 | drivers/char/selection.h | #define reverse_video_short(a) (((a) & 0x88ff) | \ |
a | 27 | drivers/char/selection.h | (((a) & 0x7000) >> 4) | (((a) & 0x0700) << 4)) |
a | 192 | drivers/char/serial.c | #define MIN(a,b) ((a) < (b) ? (a) : (b)) |
a | 2807 | drivers/char/tpqic02.c | static inline unsigned long const align_buffer(unsigned long a, unsigned size) |
a | 2809 | drivers/char/tpqic02.c | if (a & (size-1)) /* if not aligned */ |
a | 2810 | drivers/char/tpqic02.c | return (a | (size-1)) + 1; |
a | 2812 | drivers/char/tpqic02.c | return a; |
a | 104 | drivers/char/tty_io.c | #define MIN(a,b) ((a) < (b) ? (a) : (b)) |
a | 314 | drivers/char/vt.c | struct kbkeycode * const a = (struct kbkeycode *)arg; |
a | 318 | drivers/char/vt.c | i = verify_area(VERIFY_WRITE, (void *)a, sizeof(struct kbkeycode)); |
a | 321 | drivers/char/vt.c | sc = get_fs_long((int *) &a->scancode); |
a | 325 | drivers/char/vt.c | put_fs_long(kc, (int *) &a->keycode); |
a | 331 | drivers/char/vt.c | struct kbkeycode * const a = (struct kbkeycode *)arg; |
a | 336 | drivers/char/vt.c | i = verify_area(VERIFY_READ, (void *)a, sizeof(struct kbkeycode)); |
a | 339 | drivers/char/vt.c | sc = get_fs_long((int *) &a->scancode); |
a | 340 | drivers/char/vt.c | kc = get_fs_long((int *) &a->keycode); |
a | 346 | drivers/char/vt.c | struct kbentry * const a = (struct kbentry *)arg; |
a | 350 | drivers/char/vt.c | i = verify_area(VERIFY_WRITE, (void *)a, sizeof(struct kbentry)); |
a | 353 | drivers/char/vt.c | if ((i = get_fs_byte((char *) &a->kb_index)) >= NR_KEYS) |
a | 355 | drivers/char/vt.c | if ((s = get_fs_byte((char *) &a->kb_table)) >= MAX_NR_KEYMAPS) |
a | 364 | drivers/char/vt.c | put_fs_word(val, (short *) &a->kb_value); |
a | 370 | drivers/char/vt.c | const struct kbentry * a = (struct kbentry *)arg; |
a | 377 | drivers/char/vt.c | i = verify_area(VERIFY_READ, (void *)a, sizeof(struct kbentry)); |
a | 380 | drivers/char/vt.c | if ((i = get_fs_byte((char *) &a->kb_index)) >= NR_KEYS) |
a | 382 | drivers/char/vt.c | if ((s = get_fs_byte((char *) &a->kb_table)) >= MAX_NR_KEYMAPS) |
a | 384 | drivers/char/vt.c | v = get_fs_word(&a->kb_value); |
a | 442 | drivers/char/vt.c | struct kbsentry *a = (struct kbsentry *)arg; |
a | 447 | drivers/char/vt.c | i = verify_area(VERIFY_WRITE, (void *)a, sizeof(struct kbsentry)); |
a | 450 | drivers/char/vt.c | if ((i = get_fs_byte(&a->kb_func)) >= MAX_NR_FUNC || i < 0) |
a | 452 | drivers/char/vt.c | sz = sizeof(a->kb_string) - 1; /* sz should have been |
a | 454 | drivers/char/vt.c | q = a->kb_string; |
a | 465 | drivers/char/vt.c | struct kbsentry * const a = (struct kbsentry *)arg; |
a | 474 | drivers/char/vt.c | i = verify_area(VERIFY_READ, (void *)a, sizeof(struct kbsentry)); |
a | 477 | drivers/char/vt.c | if ((i = get_fs_byte(&a->kb_func)) >= MAX_NR_FUNC) |
a | 489 | drivers/char/vt.c | sz = sizeof(a->kb_string); /* sz should have been |
a | 491 | drivers/char/vt.c | for (p = a->kb_string; get_fs_byte(p) && sz; p++,sz--) |
a | 533 | drivers/char/vt.c | for (p = a->kb_string, q = func_table[i]; ; p++, q++) |
a | 541 | drivers/char/vt.c | struct kbdiacrs *a = (struct kbdiacrs *)arg; |
a | 543 | drivers/char/vt.c | i = verify_area(VERIFY_WRITE, (void *) a, sizeof(struct kbdiacrs)); |
a | 546 | drivers/char/vt.c | put_fs_long(accent_table_size, &a->kb_cnt); |
a | 547 | drivers/char/vt.c | memcpy_tofs(a->kbdiacr, accent_table, |
a | 554 | drivers/char/vt.c | struct kbdiacrs *a = (struct kbdiacrs *)arg; |
a | 559 | drivers/char/vt.c | i = verify_area(VERIFY_READ, (void *) a, sizeof(struct kbdiacrs)); |
a | 562 | drivers/char/vt.c | ct = get_fs_long(&a->kb_cnt); |
a | 566 | drivers/char/vt.c | memcpy_fromfs(accent_table, a->kbdiacr, ct*sizeof(struct kbdiacr)); |
a | 1703 | drivers/net/de4x5.c | u_long a; |
a | 1714 | drivers/net/de4x5.c | dev.llsig.a = ETH_PROM_SIG; |
a | 307 | drivers/net/de600.c | #define tx_page_adr(a) (((a) + 1) * MEM_2K) |
a | 806 | drivers/net/de600.c | #define min(a,b) ((a)<(b)?(a):(b)) |
a | 1467 | drivers/net/depca.c | u_long a; |
a | 1485 | drivers/net/depca.c | dev.llsig.a = ETH_PROM_SIG; |
a | 84 | drivers/net/ppp.c | #define CHECK_PPP(a) if (!ppp->inuse) { PRINTK ((ppp_warning, __LINE__)) return a;} |
a | 43 | drivers/net/wavelan.c | #define nels(a) (sizeof(a) / sizeof(a[0])) |
a | 1296 | drivers/net/wavelan.c | unsigned char *a; |
a | 1298 | drivers/net/wavelan.c | a = (unsigned char *)buf; |
a | 1304 | drivers/net/wavelan.c | a[0], a[1], a[2], a[3], a[4], a[5], |
a | 1738 | drivers/net/wavelan.c | wavelan_watchdog(unsigned long a) |
a | 1748 | drivers/net/wavelan.c | dev = (device *)a; |
a | 201 | drivers/scsi/aic7770.c | static char *a[MAXTOKEN]; |
a | 218 | drivers/scsi/aic7770.c | a[i++] = p; |
a | 223 | drivers/scsi/aic7770.c | return(a); |
a | 301 | drivers/scsi/aic7770.c | int eval_operand(char **a, int spec) |
a | 325 | drivers/scsi/aic7770.c | !strcmp(jmptab[i].name, a[spec])) |
a | 336 | drivers/scsi/aic7770.c | int eval_sdi(char **a, int spec) |
a | 349 | drivers/scsi/aic7770.c | if (isdigit(*a[spec &~ (SL|SR|RL|RR)])) |
a | 350 | drivers/scsi/aic7770.c | val = strtol(a[spec &~ (SL|SR|RL|RR)], NULL, 0); |
a | 352 | drivers/scsi/aic7770.c | p = lookup(a[spec &~ (SL|SR|RL|RR)]); |
a | 385 | drivers/scsi/aic7770.c | if (!strcmp("A", a[spec])) |
a | 387 | drivers/scsi/aic7770.c | if (isdigit(*a[spec]) && |
a | 388 | drivers/scsi/aic7770.c | strtol(a[spec], NULL, 0) == 0) |
a | 394 | drivers/scsi/aic7770.c | if (isdigit(*a[spec])) |
a | 395 | drivers/scsi/aic7770.c | return(strtol(a[spec], NULL, 0)); |
a | 396 | drivers/scsi/aic7770.c | p = lookup(a[spec]); |
a | 405 | drivers/scsi/aic7770.c | int eval_addr(char **a, int spec) |
a | 411 | drivers/scsi/aic7770.c | if (isdigit(*a[spec])) |
a | 412 | drivers/scsi/aic7770.c | return(strtol(a[spec], NULL, 0)); |
a | 414 | drivers/scsi/aic7770.c | p = lookup(a[spec]); |
a | 421 | drivers/scsi/aic7770.c | define(a[spec], NOVALUE); |
a | 422 | drivers/scsi/aic7770.c | p = lookup(a[spec]); |
a | 429 | drivers/scsi/aic7770.c | int crack(char **a, int n) |
a | 440 | drivers/scsi/aic7770.c | I_ret = (strcmp(a[n-1], "ret") ? 0 : !0); |
a | 450 | drivers/scsi/aic7770.c | if (!strcmp(instr[i].name, *a) && instr[i].n == n) |
a | 456 | drivers/scsi/aic7770.c | I_op = eval_operand(a, instr[i].op); |
a | 457 | drivers/scsi/aic7770.c | I_src = eval_sdi(a, instr[i].src); |
a | 458 | drivers/scsi/aic7770.c | I_imm = eval_sdi(a, instr[i].imm); |
a | 459 | drivers/scsi/aic7770.c | I_dest = eval_sdi(a, instr[i].dest); |
a | 460 | drivers/scsi/aic7770.c | I_addr = eval_addr(a, instr[i].addr); |
a | 496 | drivers/scsi/aic7770.c | char **a; |
a | 499 | drivers/scsi/aic7770.c | while ((a = getl(&n))) { |
a | 501 | drivers/scsi/aic7770.c | while (a[0][strlen(*a)-1] == ':') { |
a | 502 | drivers/scsi/aic7770.c | a[0][strlen(*a)-1] = '\0'; |
a | 503 | drivers/scsi/aic7770.c | p = lookup(*a); |
a | 507 | drivers/scsi/aic7770.c | define(*a, LC); |
a | 508 | drivers/scsi/aic7770.c | a += 1; |
a | 515 | drivers/scsi/aic7770.c | if (n == 3 && !strcmp("VERSION", *a)) |
a | 516 | drivers/scsi/aic7770.c | fprintf(ofp, "#define %s \"%s\"\n", a[1], a[2]); |
a | 518 | drivers/scsi/aic7770.c | if (n == 3 && !strcmp("=", a[1])) |
a | 519 | drivers/scsi/aic7770.c | define(*a, strtol(a[2], NULL, 0)); |
a | 521 | drivers/scsi/aic7770.c | LC += crack(a, n); |
a | 20 | drivers/scsi/scsi_ioctl.c | #define max(a,b) (((a) > (b)) ? (a) : (b)) |
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 | 31 | fs/ext2/file.c | #define MIN(a,b) (((a)<(b))?(a):(b)) |
a | 32 | fs/ext2/file.c | #define MAX(a,b) (((a)>(b))?(a):(b)) |
a | 30 | fs/isofs/file.c | #define MIN(a,b) (((a)<(b))?(a):(b)) |
a | 31 | fs/isofs/file.c | #define MAX(a,b) (((a)>(b))?(a):(b)) |
a | 26 | fs/minix/file.c | #define MIN(a,b) (((a)<(b))?(a):(b)) |
a | 27 | fs/minix/file.c | #define MAX(a,b) (((a)>(b))?(a):(b)) |
a | 27 | fs/msdos/file.c | #define MIN(a,b) (((a) < (b)) ? (a) : (b)) |
a | 28 | fs/msdos/file.c | #define MAX(a,b) (((a) > (b)) ? (a) : (b)) |
a | 175 | fs/proc/array.c | int a, b, c; |
a | 177 | fs/proc/array.c | a = avenrun[0] + (FIXED_1/200); |
a | 181 | fs/proc/array.c | LOAD_INT(a), LOAD_FRAC(a), |
a | 33 | fs/sysv/file.c | #define MIN(a,b) (((a)<(b))?(a):(b)) |
a | 34 | fs/sysv/file.c | #define MAX(a,b) (((a)>(b))?(a):(b)) |
a | 32 | fs/xiafs/file.c | #define MIN(a,b) (((a)<(b))?(a):(b)) |
a | 33 | fs/xiafs/file.c | #define MAX(a,b) (((a)>(b))?(a):(b)) |
a | 42 | include/asm-alpha/delay.h | extern __inline__ unsigned long muldiv(unsigned long a, unsigned long b, unsigned long c) |
a | 44 | include/asm-alpha/delay.h | return (a*b)/c; |
a | 213 | include/asm-alpha/dma.h | static __inline__ void set_dma_addr(unsigned int dmanr, unsigned int a) |
a | 215 | include/asm-alpha/dma.h | set_dma_page(dmanr, a>>16); |
a | 217 | include/asm-alpha/dma.h | dma_outb( a & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE ); |
a | 218 | include/asm-alpha/dma.h | dma_outb( (a>>8) & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE ); |
a | 220 | include/asm-alpha/dma.h | dma_outb( (a>>1) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE ); |
a | 221 | include/asm-alpha/dma.h | dma_outb( (a>>9) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE ); |
a | 19 | include/asm-i386/bitops.h | struct __dummy { unsigned long a[100]; }; |
a | 35 | include/asm-i386/delay.h | extern __inline__ unsigned long muldiv(unsigned long a, unsigned long b, unsigned long c) |
a | 38 | include/asm-i386/delay.h | :"=a" (a) |
a | 41 | include/asm-i386/delay.h | "0" (a) |
a | 43 | include/asm-i386/delay.h | return a; |
a | 209 | include/asm-i386/dma.h | static __inline__ void set_dma_addr(unsigned int dmanr, unsigned int a) |
a | 211 | include/asm-i386/dma.h | set_dma_page(dmanr, a>>16); |
a | 213 | include/asm-i386/dma.h | dma_outb( a & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE ); |
a | 214 | include/asm-i386/dma.h | dma_outb( (a>>8) & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE ); |
a | 216 | include/asm-i386/dma.h | dma_outb( (a>>1) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE ); |
a | 217 | include/asm-i386/dma.h | dma_outb( (a>>9) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE ); |
a | 200 | include/asm-i386/system.h | #define set_call_gate(a,addr) \ |
a | 201 | include/asm-i386/system.h | _set_gate(a,12,3,addr) |
a | 19 | include/asm-m68k/unistd.h | #define _syscall1(type,name,atype,a) \ |
a | 20 | include/asm-m68k/unistd.h | type name(atype a) \ |
a | 26 | include/asm-m68k/unistd.h | : "0" (__NR_##name), "g" ((long)(a)) \ |
a | 34 | include/asm-m68k/unistd.h | #define _syscall2(type,name,atype,a,btype,b) \ |
a | 35 | include/asm-m68k/unistd.h | type name(atype a,btype b) \ |
a | 42 | include/asm-m68k/unistd.h | : "0" (__NR_##name), "g" ((long)(a)), \ |
a | 51 | include/asm-m68k/unistd.h | #define _syscall3(type,name,atype,a,btype,b,ctype,c) \ |
a | 52 | include/asm-m68k/unistd.h | type name(atype a,btype b,ctype c) \ |
a | 60 | include/asm-m68k/unistd.h | : "0" (__NR_##name), "g" ((long)(a)), \ |
a | 70 | include/asm-m68k/unistd.h | #define _syscall4(type,name,atype,a,btype,b,ctype,c,dtype,d) \ |
a | 71 | include/asm-m68k/unistd.h | type name (atype a, btype b, ctype c, dtype d) \ |
a | 80 | include/asm-m68k/unistd.h | : "0" (__NR_##name), "g" ((long)(a)), \ |
a | 91 | include/asm-m68k/unistd.h | #define _syscall5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \ |
a | 92 | include/asm-m68k/unistd.h | type name (atype a,btype b,ctype c,dtype d,etype e) \ |
a | 102 | include/asm-m68k/unistd.h | : "0" (__NR_##name), "g" ((long)(a)), \ |
a | 83 | include/asm-mips/bitops.h | int *a = addr; |
a | 86 | include/asm-mips/bitops.h | a += nr >> 5; |
a | 90 | include/asm-mips/bitops.h | retval = (mask & *a) != 0; |
a | 91 | include/asm-mips/bitops.h | *a |= mask; |
a | 100 | include/asm-mips/bitops.h | int *a = addr; |
a | 103 | include/asm-mips/bitops.h | a += nr >> 5; |
a | 107 | include/asm-mips/bitops.h | retval = (mask & *a) != 0; |
a | 108 | include/asm-mips/bitops.h | *a &= ~mask; |
a | 117 | include/asm-mips/bitops.h | int *a = addr; |
a | 120 | include/asm-mips/bitops.h | a += nr >> 5; |
a | 124 | include/asm-mips/bitops.h | retval = (mask & *a) != 0; |
a | 125 | include/asm-mips/bitops.h | *a ^= mask; |
a | 141 | include/asm-mips/bitops.h | unsigned long *a; |
a | 143 | include/asm-mips/bitops.h | a = addr; |
a | 146 | include/asm-mips/bitops.h | return ((mask & *a) != 0); |
a | 40 | include/asm-mips/delay.h | extern __inline__ unsigned long muldiv(unsigned long a, unsigned long b, unsigned long c) |
a | 42 | include/asm-mips/delay.h | return (a*b)/c; |
a | 212 | include/asm-mips/dma.h | static __inline__ void set_dma_addr(unsigned int dmanr, unsigned int a) |
a | 214 | include/asm-mips/dma.h | set_dma_page(dmanr, a>>16); |
a | 216 | include/asm-mips/dma.h | dma_outb( a & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE ); |
a | 217 | include/asm-mips/dma.h | dma_outb( (a>>8) & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE ); |
a | 219 | include/asm-mips/dma.h | dma_outb( (a>>1) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE ); |
a | 220 | include/asm-mips/dma.h | dma_outb( (a>>9) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE ); |
a | 26 | include/asm-mips/segment.h | #define KSEGX(a) (a & 0xe0000000) |
a | 29 | include/asm-mips/unistd.h | #define _syscall1(type,name,atype,a) \ |
a | 30 | include/asm-mips/unistd.h | type name(atype a) \ |
a | 36 | include/asm-mips/unistd.h | : "0" (__NR_##name),"r" ((long)(a)) \ |
a | 44 | include/asm-mips/unistd.h | #define _syscall2(type,name,atype,a,btype,b) \ |
a | 45 | include/asm-mips/unistd.h | type name(atype a,btype b) \ |
a | 52 | include/asm-mips/unistd.h | : "0" (__NR_##name),"r" ((long)(a)), \ |
a | 61 | include/asm-mips/unistd.h | #define _syscall3(type,name,atype,a,btype,b,ctype,c) \ |
a | 62 | include/asm-mips/unistd.h | type name (atype a, btype b, ctype c) \ |
a | 70 | include/asm-mips/unistd.h | : "0" (__NR_##name),"r" ((long)(a)), \ |
a | 80 | include/asm-mips/unistd.h | #define _syscall4(type,name,atype,a,btype,b,ctype,c,dtype,d) \ |
a | 81 | include/asm-mips/unistd.h | type name (atype a, btype b, ctype c, dtype d) \ |
a | 91 | include/asm-mips/unistd.h | : "0" (__NR_##name),"r" ((long)(a)), \ |
a | 102 | include/asm-mips/unistd.h | #define _syscall5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \ |
a | 103 | include/asm-mips/unistd.h | type name (atype a,btype b,ctype c,dtype d,etype e) \ |
a | 114 | include/asm-mips/unistd.h | : "0" (__NR_##name),"r" ((long)(a)), \ |
a | 17 | include/asm-sparc/cprefix.h | #define CONCAT1(a, b) CONCAT2(a, b) |
a | 18 | include/asm-sparc/cprefix.h | #define CONCAT2(a, b) a##b |
a | 34 | include/asm-sparc/delay.h | extern __inline__ unsigned long muldiv(unsigned long a, unsigned long b, unsigned long c) |
a | 36 | include/asm-sparc/delay.h | return ((a*b)/c); |
a | 88 | include/asm-sparc/system.h | #define set_call_gate(a,addr) \ |
a | 89 | include/asm-sparc/system.h | _set_gate(a,12,3,addr) |
a | 54 | include/linux/binfmts.h | #define change_ldt(a,b) setup_arg_pages(a,b) |
a | 60 | include/linux/ext2_fs.h | # define ext2_debug(f, a...) { \ |
a | 63 | include/linux/ext2_fs.h | printk (f, ## a); \ |
a | 66 | include/linux/ext2_fs.h | # define ext2_debug(f, a...) /**/ |
a | 49 | include/linux/fs.h | #define MAJOR(a) (int)((unsigned short)(a) >> 8) |
a | 50 | include/linux/fs.h | #define MINOR(a) (int)((unsigned short)(a) & 0xFF) |
a | 51 | 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 | 72 | include/linux/in.h | #define IN_CLASSA(a) ((((long int) (a)) & 0x80000000) == 0) |
a | 78 | include/linux/in.h | #define IN_CLASSB(a) ((((long int) (a)) & 0xc0000000) == 0x80000000) |
a | 84 | include/linux/in.h | #define IN_CLASSC(a) ((((long int) (a)) & 0xe0000000) == 0xc0000000) |
a | 89 | include/linux/in.h | #define IN_CLASSD(a) ((((long int) (a)) & 0xf0000000) == 0xe0000000) |
a | 90 | include/linux/in.h | #define IN_MULTICAST(a) IN_CLASSD(a) |
a | 93 | include/linux/in.h | #define IN_EXPERIMENTAL(a) ((((long int) (a)) & 0xe0000000) == 0xe0000000) |
a | 94 | include/linux/in.h | #define IN_BADCLASS(a) ((((long int) (a)) & 0xf0000000) == 0xf0000000) |
a | 8 | include/linux/malloc.h | #define kmalloc(a,b) deb_kmalloc(__FILE__,__LINE__,a,b) |
a | 9 | include/linux/malloc.h | #define kfree_s(a,b) deb_kfree_s(__FILE__,__LINE__,a,b) |
a | 15 | include/linux/malloc.h | #define kfree(a) deb_kfree_s(__FILE__,__LINE__, a,0) |
a | 16 | include/linux/malloc.h | #define kcheck(a) deb_kcheck_s(__FILE__,__LINE__, a,0) |
a | 17 | include/linux/malloc.h | #define kcheck_s(a,b) deb_kcheck_s(__FILE__,__LINE__, a,b) |
a | 24 | 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 | 10 | include/linux/symtab_begin.h | #define X(a) a |
a | 6 | include/linux/symtab_end.h | #define _set_ver(a,b) a |
a | 40 | kernel/module.c | #define PRINTK(a) printk a |
a | 42 | kernel/module.c | #define PRINTK(a) /* */ |
a | 119 | lib/string.c | const char *a; |
a | 123 | lib/string.c | for (a = accept; *a != '\0'; ++a) { |
a | 124 | lib/string.c | if (*p == *a) |
a | 127 | lib/string.c | if (*a == '\0') |
a | 76 | net/inet/af_inet.c | #define min(a,b) ((a)<(b)?(a):(b)) |
a | 103 | net/inet/dev.c | static __inline__ unsigned long min(unsigned long a, unsigned long b) |
a | 105 | net/inet/dev.c | return (a < b)? a : b; |
a | 65 | net/inet/icmp.c | #define min(a,b) ((a)<(b)?(a):(b)) |
a | 127 | net/inet/ip.c | #define min(a,b) ((a)<(b)?(a):(b)) |
a | 71 | net/inet/ip_fw.c | #define dprintf1(a) printk(a) |
a | 76 | net/inet/ip_fw.c | #define dprintf1(a) |
a | 82 | net/inet/ip_fw.c | #define print_ip(a) printf("%d.%d.%d.%d",(ntohl(a.s_addr)>>24)&0xFF,\ |
a | 83 | net/inet/ip_fw.c | (ntohl(a.s_addr)>>16)&0xFF,\ |
a | 84 | net/inet/ip_fw.c | (ntohl(a.s_addr)>>8)&0xFF,\ |
a | 85 | net/inet/ip_fw.c | (ntohl(a.s_addr))&0xFF); |
a | 88 | net/inet/ip_fw.c | #define dprint_ip(a) print_ip(a) |
a | 90 | net/inet/ip_fw.c | #define dprint_ip(a) |
a | 59 | net/inet/packet.c | static unsigned long min(unsigned long a, unsigned long b) |
a | 61 | net/inet/packet.c | if (a < b) |
a | 62 | net/inet/packet.c | return(a); |
a | 57 | net/inet/raw.c | static inline unsigned long min(unsigned long a, unsigned long b) |
a | 59 | net/inet/raw.c | if (a < b) |
a | 60 | net/inet/raw.c | return(a); |
a | 110 | net/inet/sock.c | #define min(a,b) ((a)<(b)?(a):(b)) |
a | 253 | net/inet/tcp.c | static __inline__ int min(unsigned int a, unsigned int b) |
a | 255 | net/inet/tcp.c | if (a < b) |
a | 256 | net/inet/tcp.c | return(a); |
a | 85 | net/inet/udp.c | #define min(a,b) ((a)<(b)?(a):(b)) |
a | 99 | net/unix/sock.c | static inline int min(int a, int b) |
a | 101 | net/unix/sock.c | if (a < b) |
a | 102 | net/unix/sock.c | return(a); |