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 | 185 | arch/alpha/kernel/setup.c | # define N(a) (sizeof(a)/sizeof(a[0])) |
a | 83 | arch/alpha/math-emu/ieee-math.c | sign (unsigned long a) |
a | 85 | arch/alpha/math-emu/ieee-math.c | if ((long) a < 0) |
a | 93 | arch/alpha/math-emu/ieee-math.c | cmp128 (const long a[2], const long b[2]) |
a | 95 | arch/alpha/math-emu/ieee-math.c | if (a[1] < b[1]) return -1; |
a | 96 | arch/alpha/math-emu/ieee-math.c | if (a[1] > b[1]) return 1; |
a | 97 | arch/alpha/math-emu/ieee-math.c | return a[0] - b[0]; |
a | 102 | arch/alpha/math-emu/ieee-math.c | sll128 (unsigned long a[2]) |
a | 104 | arch/alpha/math-emu/ieee-math.c | a[1] = (a[1] << 1) | (a[0] >> 63); |
a | 105 | arch/alpha/math-emu/ieee-math.c | a[0] <<= 1; |
a | 110 | arch/alpha/math-emu/ieee-math.c | srl128 (unsigned long a[2]) |
a | 112 | arch/alpha/math-emu/ieee-math.c | a[0] = (a[0] >> 1) | (a[1] << 63); |
a | 113 | arch/alpha/math-emu/ieee-math.c | a[1] >>= 1; |
a | 118 | arch/alpha/math-emu/ieee-math.c | add128 (const unsigned long a[2], const unsigned long b[2], unsigned long c[2]) |
a | 120 | arch/alpha/math-emu/ieee-math.c | unsigned long carry = a[0] > (0xffffffffffffffff - b[0]); |
a | 122 | arch/alpha/math-emu/ieee-math.c | c[0] = a[0] + b[0]; |
a | 123 | arch/alpha/math-emu/ieee-math.c | c[1] = a[1] + b[1] + carry; |
a | 128 | arch/alpha/math-emu/ieee-math.c | sub128 (const unsigned long a[2], const unsigned long b[2], unsigned long c[2]) |
a | 130 | arch/alpha/math-emu/ieee-math.c | unsigned long borrow = a[0] < b[0]; |
a | 132 | arch/alpha/math-emu/ieee-math.c | c[0] = a[0] - b[0]; |
a | 133 | arch/alpha/math-emu/ieee-math.c | c[1] = a[1] - b[1] - borrow; |
a | 138 | arch/alpha/math-emu/ieee-math.c | mul64 (const unsigned long a, const unsigned long b, unsigned long c[2]) |
a | 142 | arch/alpha/math-emu/ieee-math.c | : "r="(c[0]), "r="(c[1]) : "r"(a), "r"(b)); |
a | 147 | arch/alpha/math-emu/ieee-math.c | div128 (unsigned long a[2], unsigned long b[2], unsigned long c[2]) |
a | 155 | arch/alpha/math-emu/ieee-math.c | while (cmp128(b, a) < 0 && sign(b[1]) >= 0) { |
a | 161 | arch/alpha/math-emu/ieee-math.c | if (cmp128(a, b) >= 0) { |
a | 162 | arch/alpha/math-emu/ieee-math.c | sub128(a, b, a); |
a | 172 | arch/alpha/math-emu/ieee-math.c | normalize (EXTENDED *a) |
a | 174 | arch/alpha/math-emu/ieee-math.c | if (!a->f[0] && !a->f[1]) |
a | 182 | arch/alpha/math-emu/ieee-math.c | if ((a->f[0] & 0xff00000000000000) != 0 || a->f[1] != 0) { |
a | 186 | arch/alpha/math-emu/ieee-math.c | while ((a->f[0] & 0xff80000000000000) != 0x0080000000000000 || |
a | 187 | arch/alpha/math-emu/ieee-math.c | a->f[1] != 0) |
a | 191 | arch/alpha/math-emu/ieee-math.c | ++a->e; |
a | 192 | arch/alpha/math-emu/ieee-math.c | sticky = a->f[0] & 1; |
a | 193 | arch/alpha/math-emu/ieee-math.c | srl128(a->f); |
a | 194 | arch/alpha/math-emu/ieee-math.c | a->f[0] |= sticky; |
a | 199 | arch/alpha/math-emu/ieee-math.c | if (!(a->f[0] & 0x0080000000000000)) { |
a | 203 | arch/alpha/math-emu/ieee-math.c | while (!(a->f[0] & 0x0080000000000000)) { |
a | 204 | arch/alpha/math-emu/ieee-math.c | --a->e; |
a | 205 | arch/alpha/math-emu/ieee-math.c | a->f[0] <<= 1; |
a | 213 | arch/alpha/math-emu/ieee-math.c | ieee_fpclass (unsigned long a) |
a | 217 | arch/alpha/math-emu/ieee-math.c | exp = (a >> 52) & 0x7ff; /* 11 bits of exponent */ |
a | 218 | arch/alpha/math-emu/ieee-math.c | fract = a & 0x000fffffffffffff; /* 52 bits of fraction */ |
a | 239 | arch/alpha/math-emu/ieee-math.c | extend_ieee (unsigned long a, EXTENDED *b, int prec) |
a | 243 | arch/alpha/math-emu/ieee-math.c | b->s = a >> 63; |
a | 244 | arch/alpha/math-emu/ieee-math.c | b->e = ((a >> 52) & 0x7ff) - 0x3ff; /* remove bias */ |
a | 250 | arch/alpha/math-emu/ieee-math.c | b->f[0] = (a & 0x000fffffffffffff) << 3; |
a | 251 | arch/alpha/math-emu/ieee-math.c | result_kind = ieee_fpclass(a); |
a | 275 | arch/alpha/math-emu/ieee-math.c | make_s_ieee (long f, EXTENDED *a, unsigned long *b) |
a | 279 | arch/alpha/math-emu/ieee-math.c | if (!a->f[0] && !a->f[1]) { |
a | 280 | arch/alpha/math-emu/ieee-math.c | *b = (unsigned long) a->s << 63; /* return +/-0 */ |
a | 284 | arch/alpha/math-emu/ieee-math.c | normalize(a); |
a | 287 | arch/alpha/math-emu/ieee-math.c | if (a->e < -0x7e) { |
a | 291 | arch/alpha/math-emu/ieee-math.c | a->e += 0xc0; /* scale up result by 2^alpha */ |
a | 294 | arch/alpha/math-emu/ieee-math.c | while (a->e < -0x7e) { |
a | 295 | arch/alpha/math-emu/ieee-math.c | ++a->e; |
a | 296 | arch/alpha/math-emu/ieee-math.c | sticky = a->f[0] & 1; |
a | 297 | arch/alpha/math-emu/ieee-math.c | srl128(a->f); |
a | 298 | arch/alpha/math-emu/ieee-math.c | if (!a->f[0] && !a->f[0]) { |
a | 303 | arch/alpha/math-emu/ieee-math.c | a->f[0] |= sticky; |
a | 305 | arch/alpha/math-emu/ieee-math.c | a->e = -0x3ff; |
a | 308 | arch/alpha/math-emu/ieee-math.c | if (a->e >= 0x80) { |
a | 311 | arch/alpha/math-emu/ieee-math.c | a->e -= 0xc0; /* scale down result by 2^alpha */ |
a | 327 | arch/alpha/math-emu/ieee-math.c | if (a->s) { |
a | 335 | arch/alpha/math-emu/ieee-math.c | if (a->s) { |
a | 342 | arch/alpha/math-emu/ieee-math.c | *b |= ((unsigned long) a->s << 63); |
a | 347 | arch/alpha/math-emu/ieee-math.c | *b = (((unsigned long) a->s << 63) | |
a | 348 | arch/alpha/math-emu/ieee-math.c | (((unsigned long) a->e + 0x3ff) << 52) | |
a | 349 | arch/alpha/math-emu/ieee-math.c | ((a->f[0] >> 3) & 0x000fffffe0000000)); |
a | 355 | arch/alpha/math-emu/ieee-math.c | make_t_ieee (long f, EXTENDED *a, unsigned long *b) |
a | 359 | arch/alpha/math-emu/ieee-math.c | if (!a->f[0] && !a->f[1]) { |
a | 360 | arch/alpha/math-emu/ieee-math.c | *b = (unsigned long) a->s << 63; /* return +/-0 */ |
a | 364 | arch/alpha/math-emu/ieee-math.c | normalize(a); |
a | 366 | arch/alpha/math-emu/ieee-math.c | if (a->e < -0x3fe) { |
a | 370 | arch/alpha/math-emu/ieee-math.c | a->e += 0x600; |
a | 373 | arch/alpha/math-emu/ieee-math.c | while (a->e < -0x3fe) { |
a | 374 | arch/alpha/math-emu/ieee-math.c | ++a->e; |
a | 375 | arch/alpha/math-emu/ieee-math.c | sticky = a->f[0] & 1; |
a | 376 | arch/alpha/math-emu/ieee-math.c | srl128(a->f); |
a | 377 | arch/alpha/math-emu/ieee-math.c | if (!a->f[0] && !a->f[0]) { |
a | 382 | arch/alpha/math-emu/ieee-math.c | a->f[0] |= sticky; |
a | 384 | arch/alpha/math-emu/ieee-math.c | a->e = -0x3ff; |
a | 387 | arch/alpha/math-emu/ieee-math.c | if (a->e > 0x3ff) { |
a | 390 | arch/alpha/math-emu/ieee-math.c | a->e -= 0x600; /* scale down result by 2^alpha */ |
a | 406 | arch/alpha/math-emu/ieee-math.c | if (a->s) { |
a | 414 | arch/alpha/math-emu/ieee-math.c | if (a->s) { |
a | 421 | arch/alpha/math-emu/ieee-math.c | *b |= ((unsigned long) a->s << 63); |
a | 425 | arch/alpha/math-emu/ieee-math.c | *b = (((unsigned long) a->s << 63) | |
a | 426 | arch/alpha/math-emu/ieee-math.c | (((unsigned long) a->e + 0x3ff) << 52) | |
a | 427 | arch/alpha/math-emu/ieee-math.c | ((a->f[0] >> 3) & 0x000fffffffffffff)); |
a | 444 | arch/alpha/math-emu/ieee-math.c | round_s_ieee (int f, EXTENDED *a, unsigned long *b) |
a | 449 | arch/alpha/math-emu/ieee-math.c | if (!(a->f[0] & 0xffffffff)) { |
a | 450 | arch/alpha/math-emu/ieee-math.c | return make_s_ieee(f, a, b); /* no rounding error */ |
a | 457 | arch/alpha/math-emu/ieee-math.c | z1.s = z2.s = a->s; |
a | 458 | arch/alpha/math-emu/ieee-math.c | z1.e = z2.e = a->e; |
a | 459 | arch/alpha/math-emu/ieee-math.c | z1.f[0] = z2.f[0] = a->f[0] & 0xffffffff00000000; |
a | 465 | arch/alpha/math-emu/ieee-math.c | diff1 = a->f[0] - z1.f[0]; |
a | 466 | arch/alpha/math-emu/ieee-math.c | diff2 = z2.f[0] - a->f[0]; |
a | 484 | arch/alpha/math-emu/ieee-math.c | if (a->s) { |
a | 492 | arch/alpha/math-emu/ieee-math.c | if (a->s) { |
a | 504 | arch/alpha/math-emu/ieee-math.c | round_t_ieee (int f, EXTENDED *a, unsigned long *b) |
a | 509 | arch/alpha/math-emu/ieee-math.c | if (!(a->f[0] & 0x7)) { |
a | 511 | arch/alpha/math-emu/ieee-math.c | return make_t_ieee(f, a, b); |
a | 514 | arch/alpha/math-emu/ieee-math.c | z1.s = z2.s = a->s; |
a | 515 | arch/alpha/math-emu/ieee-math.c | z1.e = z2.e = a->e; |
a | 516 | arch/alpha/math-emu/ieee-math.c | z1.f[0] = z2.f[0] = a->f[0] & ~0x7; |
a | 523 | arch/alpha/math-emu/ieee-math.c | diff1 = a->f[0] - z1.f[0]; |
a | 524 | arch/alpha/math-emu/ieee-math.c | diff2 = z2.f[0] - a->f[0]; |
a | 542 | arch/alpha/math-emu/ieee-math.c | if (a->s) { |
a | 550 | arch/alpha/math-emu/ieee-math.c | if (a->s) { |
a | 615 | arch/alpha/math-emu/ieee-math.c | ieee_CVTST (int f, unsigned long a, unsigned long *b) |
a | 620 | arch/alpha/math-emu/ieee-math.c | a_type = extend_ieee(a, &temp, SINGLE); |
a | 622 | arch/alpha/math-emu/ieee-math.c | *b = a; |
a | 646 | arch/alpha/math-emu/ieee-math.c | ieee_CVTTS (int f, unsigned long a, unsigned long *b) |
a | 651 | arch/alpha/math-emu/ieee-math.c | a_type = extend_ieee(a, &temp, DOUBLE); |
a | 653 | arch/alpha/math-emu/ieee-math.c | *b = a; |
a | 677 | arch/alpha/math-emu/ieee-math.c | ieee_CVTQS (int f, unsigned long a, unsigned long *b) |
a | 682 | arch/alpha/math-emu/ieee-math.c | op_b.f[0] = a; |
a | 684 | arch/alpha/math-emu/ieee-math.c | if (sign(a) < 0) { |
a | 686 | arch/alpha/math-emu/ieee-math.c | op_b.f[0] = -a; |
a | 707 | arch/alpha/math-emu/ieee-math.c | ieee_CVTQT (int f, unsigned long a, unsigned long *b) |
a | 712 | arch/alpha/math-emu/ieee-math.c | op_b.f[0] = a; |
a | 714 | arch/alpha/math-emu/ieee-math.c | if (sign(a) < 0) { |
a | 716 | arch/alpha/math-emu/ieee-math.c | op_b.f[0] = -a; |
a | 737 | arch/alpha/math-emu/ieee-math.c | ieee_CVTTQ (int f, unsigned long a, unsigned long *b) |
a | 745 | arch/alpha/math-emu/ieee-math.c | a_type = extend_ieee(a, &temp, DOUBLE); |
a | 809 | arch/alpha/math-emu/ieee-math.c | ieee_CMPTEQ (unsigned long a, unsigned long b, unsigned long *c) |
a | 815 | arch/alpha/math-emu/ieee-math.c | a_type = extend_ieee(a, &op_a, DOUBLE); |
a | 831 | arch/alpha/math-emu/ieee-math.c | ieee_CMPTLT (unsigned long a, unsigned long b, unsigned long *c) |
a | 837 | arch/alpha/math-emu/ieee-math.c | a_type = extend_ieee(a, &op_a, DOUBLE); |
a | 858 | arch/alpha/math-emu/ieee-math.c | ieee_CMPTLE (unsigned long a, unsigned long b, unsigned long *c) |
a | 864 | arch/alpha/math-emu/ieee-math.c | a_type = extend_ieee(a, &op_a, DOUBLE); |
a | 885 | arch/alpha/math-emu/ieee-math.c | ieee_CMPTUN (unsigned long a, unsigned long b, unsigned long *c) |
a | 891 | arch/alpha/math-emu/ieee-math.c | a_type = extend_ieee(a, &op_a, DOUBLE); |
a | 907 | arch/alpha/math-emu/ieee-math.c | ieee_ADDS (int f, unsigned long a, unsigned long b, unsigned long *c) |
a | 912 | arch/alpha/math-emu/ieee-math.c | a_type = extend_ieee(a, &op_a, SINGLE); |
a | 923 | arch/alpha/math-emu/ieee-math.c | *c = a; |
a | 925 | arch/alpha/math-emu/ieee-math.c | *c = a | (1UL << 51); |
a | 932 | arch/alpha/math-emu/ieee-math.c | if (a_type == INFTY && b_type == INFTY && sign(a) != sign(b)) { |
a | 937 | arch/alpha/math-emu/ieee-math.c | *c = a; |
a | 956 | arch/alpha/math-emu/ieee-math.c | ieee_ADDT (int f, unsigned long a, unsigned long b, unsigned long *c) |
a | 961 | arch/alpha/math-emu/ieee-math.c | a_type = extend_ieee(a, &op_a, DOUBLE); |
a | 972 | arch/alpha/math-emu/ieee-math.c | *c = a; |
a | 974 | arch/alpha/math-emu/ieee-math.c | *c = a | (1UL << 51); |
a | 981 | arch/alpha/math-emu/ieee-math.c | if (a_type == INFTY && b_type == INFTY && sign(a) != sign(b)) { |
a | 986 | arch/alpha/math-emu/ieee-math.c | *c = a; |
a | 1005 | arch/alpha/math-emu/ieee-math.c | ieee_SUBS (int f, unsigned long a, unsigned long b, unsigned long *c) |
a | 1010 | arch/alpha/math-emu/ieee-math.c | a_type = extend_ieee(a, &op_a, SINGLE); |
a | 1021 | arch/alpha/math-emu/ieee-math.c | *c = a; |
a | 1023 | arch/alpha/math-emu/ieee-math.c | *c = a | (1UL << 51); |
a | 1030 | arch/alpha/math-emu/ieee-math.c | if (a_type == INFTY && b_type == INFTY && sign(a) == sign(b)) { |
a | 1035 | arch/alpha/math-emu/ieee-math.c | *c = a; |
a | 1055 | arch/alpha/math-emu/ieee-math.c | ieee_SUBT (int f, unsigned long a, unsigned long b, unsigned long *c) |
a | 1060 | arch/alpha/math-emu/ieee-math.c | a_type = extend_ieee(a, &op_a, DOUBLE); |
a | 1071 | arch/alpha/math-emu/ieee-math.c | *c = a; |
a | 1073 | arch/alpha/math-emu/ieee-math.c | *c = a | (1UL << 51); |
a | 1080 | arch/alpha/math-emu/ieee-math.c | if (a_type == INFTY && b_type == INFTY && sign(a) == sign(b)) { |
a | 1085 | arch/alpha/math-emu/ieee-math.c | *c = a; |
a | 1105 | arch/alpha/math-emu/ieee-math.c | ieee_MULS (int f, unsigned long a, unsigned long b, unsigned long *c) |
a | 1110 | arch/alpha/math-emu/ieee-math.c | a_type = extend_ieee(a, &op_a, SINGLE); |
a | 1121 | arch/alpha/math-emu/ieee-math.c | *c = a; |
a | 1123 | arch/alpha/math-emu/ieee-math.c | *c = a | (1UL << 51); |
a | 1137 | arch/alpha/math-emu/ieee-math.c | *c = a ^ ((b >> 63) << 63); |
a | 1139 | arch/alpha/math-emu/ieee-math.c | *c = b ^ ((a >> 63) << 63); |
a | 1161 | arch/alpha/math-emu/ieee-math.c | ieee_MULT (int f, unsigned long a, unsigned long b, unsigned long *c) |
a | 1167 | arch/alpha/math-emu/ieee-math.c | a_type = extend_ieee(a, &op_a, DOUBLE); |
a | 1178 | arch/alpha/math-emu/ieee-math.c | *c = a; |
a | 1180 | arch/alpha/math-emu/ieee-math.c | *c = a | (1UL << 51); |
a | 1194 | arch/alpha/math-emu/ieee-math.c | *c = a ^ ((b >> 63) << 63); |
a | 1196 | arch/alpha/math-emu/ieee-math.c | *c = b ^ ((a >> 63) << 63); |
a | 1218 | arch/alpha/math-emu/ieee-math.c | ieee_DIVS (int f, unsigned long a, unsigned long b, unsigned long *c) |
a | 1223 | arch/alpha/math-emu/ieee-math.c | a_type = extend_ieee(a, &op_a, SINGLE); |
a | 1236 | arch/alpha/math-emu/ieee-math.c | *c = a; |
a | 1238 | arch/alpha/math-emu/ieee-math.c | *c = a | (1UL << 51); |
a | 1284 | arch/alpha/math-emu/ieee-math.c | ieee_DIVT (int f, unsigned long a, unsigned long b, unsigned long *c) |
a | 1290 | arch/alpha/math-emu/ieee-math.c | a_type = extend_ieee(a, &op_a, DOUBLE); |
a | 1303 | arch/alpha/math-emu/ieee-math.c | *c = a; |
a | 1305 | arch/alpha/math-emu/ieee-math.c | *c = a | (1UL << 51); |
a | 20 | arch/alpha/math-emu/ieee-math.h | extern unsigned long ieee_CVTST (int rm, unsigned long a, unsigned long *b); |
a | 21 | arch/alpha/math-emu/ieee-math.h | extern unsigned long ieee_CVTTS (int rm, unsigned long a, unsigned long *b); |
a | 22 | arch/alpha/math-emu/ieee-math.h | extern unsigned long ieee_CVTQS (int rm, unsigned long a, unsigned long *b); |
a | 23 | arch/alpha/math-emu/ieee-math.h | extern unsigned long ieee_CVTQT (int rm, unsigned long a, unsigned long *b); |
a | 24 | arch/alpha/math-emu/ieee-math.h | extern unsigned long ieee_CVTTQ (int rm, unsigned long a, unsigned long *b); |
a | 26 | arch/alpha/math-emu/ieee-math.h | extern unsigned long ieee_CMPTEQ (unsigned long a, unsigned long b, |
a | 28 | arch/alpha/math-emu/ieee-math.h | extern unsigned long ieee_CMPTLT (unsigned long a, unsigned long b, |
a | 30 | arch/alpha/math-emu/ieee-math.h | extern unsigned long ieee_CMPTLE (unsigned long a, unsigned long b, |
a | 32 | arch/alpha/math-emu/ieee-math.h | extern unsigned long ieee_CMPTUN (unsigned long a, unsigned long b, |
a | 35 | arch/alpha/math-emu/ieee-math.h | extern unsigned long ieee_ADDS (int rm, unsigned long a, unsigned long b, |
a | 37 | arch/alpha/math-emu/ieee-math.h | extern unsigned long ieee_ADDT (int rm, unsigned long a, unsigned long b, |
a | 39 | arch/alpha/math-emu/ieee-math.h | extern unsigned long ieee_SUBS (int rm, unsigned long a, unsigned long b, |
a | 41 | arch/alpha/math-emu/ieee-math.h | extern unsigned long ieee_SUBT (int rm, unsigned long a, unsigned long b, |
a | 43 | arch/alpha/math-emu/ieee-math.h | extern unsigned long ieee_MULS (int rm, unsigned long a, unsigned long b, |
a | 45 | arch/alpha/math-emu/ieee-math.h | extern unsigned long ieee_MULT (int rm, unsigned long a, unsigned long b, |
a | 47 | arch/alpha/math-emu/ieee-math.h | extern unsigned long ieee_DIVS (int rm, unsigned long a, unsigned long b, |
a | 49 | arch/alpha/math-emu/ieee-math.h | extern unsigned long ieee_DIVT (int rm, unsigned long a, unsigned long b, |
a | 307 | arch/i386/boot/compressed/misc.c | long * a; |
a | 43 | arch/i386/kernel/smp.c | extern __inline int max(int a,int b) |
a | 45 | arch/i386/kernel/smp.c | if(a>b) |
a | 46 | arch/i386/kernel/smp.c | return a; |
a | 392 | arch/i386/kernel/traps.c | p->a=p->b=0; |
a | 394 | 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 | 63 | arch/mips/kernel/jazz-c.c | void jazz_fd_set_dma_addr(unsigned int a) |
a | 65 | arch/mips/kernel/jazz-c.c | vdma_set_addr(JAZZ_FLOPPY_DMA, vdma_phys2log(PHYSADDR(a))); |
a | 51 | arch/mips/kernel/setup.c | void jazz_fd_set_dma_addr(unsigned int a); |
a | 138 | arch/mips/kernel/setup.c | void jazz_fd_set_dma_addr(unsigned int a); |
a | 64 | arch/mips/kernel/tyne-c.c | void deskstation_tyne_fd_set_dma_addr(unsigned int a) |
a | 171 | arch/ppc/kernel/process.c | char *a; |
a | 176 | arch/ppc/kernel/process.c | a = kmalloc(i,GFP_KERNEL); |
a | 177 | arch/ppc/kernel/process.c | a = kmalloc(i,GFP_KERNEL); |
a | 178 | arch/ppc/kernel/process.c | printk("a = %x\n",a); |
a | 107 | arch/sparc/kernel/smp.c | inline void smp_invalidate(int type, unsigned long a, unsigned long b, unsigned long c) |
a | 464 | drivers/block/cmd640.c | static int a = 0; |
a | 467 | drivers/block/cmd640.c | if (bus_type == none || a == 1) |
a | 469 | drivers/block/cmd640.c | a = 1; |
a | 563 | drivers/block/cmd640.c | inline int max(int a, int b) { return a > b ? a : b; } |
a | 626 | drivers/block/cmd640.c | int a, b; |
a | 630 | drivers/block/cmd640.c | a = (av_time + clock_time - 1)/clock_time; |
a | 631 | drivers/block/cmd640.c | if (a < 2) |
a | 632 | drivers/block/cmd640.c | a = 2; |
a | 633 | drivers/block/cmd640.c | b = (ds_time + clock_time - 1)/clock_time - a; |
a | 637 | drivers/block/cmd640.c | a += b - 0x11; |
a | 640 | drivers/block/cmd640.c | if (a > 0x10) |
a | 641 | drivers/block/cmd640.c | a = 0x10; |
a | 647 | drivers/block/cmd640.c | a_count[drv_idx] = a; |
a | 589 | drivers/block/floppy.c | static int maximum(int a, int b) |
a | 591 | drivers/block/floppy.c | if(a > b) |
a | 592 | drivers/block/floppy.c | return a; |
a | 596 | drivers/block/floppy.c | #define INFBOUND(a,b) (a)=maximum((a),(b)); |
a | 598 | drivers/block/floppy.c | static int minimum(int a, int b) |
a | 600 | drivers/block/floppy.c | if(a < b) |
a | 601 | drivers/block/floppy.c | return a; |
a | 605 | drivers/block/floppy.c | #define SUPBOUND(a,b) (a)=minimum((a),(b)); |
a | 159 | drivers/block/ide-cd.c | #define MIN(a,b) ((a) < (b) ? (a) : (b)) |
a | 272 | drivers/block/ide-cd.c | #define ARY_LEN(a) ((sizeof(a) / sizeof(a[0]))) |
a | 947 | drivers/block/ide-tape.c | #define IDETAPE_MIN(a,b) ((a)<(b) ? (a):(b)) |
a | 686 | drivers/cdrom/cdu31a.c | unsigned char a, b; |
a | 718 | drivers/cdrom/cdu31a.c | a = read_result_register(); |
a | 719 | drivers/cdrom/cdu31a.c | *result_buffer = a; |
a | 723 | drivers/cdrom/cdu31a.c | if ((a & 0xf0) == 0x50) |
a | 742 | drivers/cdrom/cdu31a.c | if ((a & 0xf0) != 0x20) |
a | 136 | drivers/cdrom/cm206.c | #define debug(a) printk a |
a | 138 | drivers/cdrom/cm206.c | #define debug(a) (void) 0 |
a | 555 | drivers/cdrom/mcd.c | char a, b, c, d; |
a | 557 | drivers/cdrom/mcd.c | getValue(&a); |
a | 336 | drivers/cdrom/sbpcd.c | #define DO_SBPCD_REQUEST(a) do_sbpcd_request(a) |
a | 337 | drivers/cdrom/sbpcd.c | #define SBPCD_INIT(a) sbpcd_init(a) |
a | 340 | drivers/cdrom/sbpcd.c | #define DO_SBPCD_REQUEST(a) do_sbpcd2_request(a) |
a | 341 | drivers/cdrom/sbpcd.c | #define SBPCD_INIT(a) sbpcd2_init(a) |
a | 344 | drivers/cdrom/sbpcd.c | #define DO_SBPCD_REQUEST(a) do_sbpcd3_request(a) |
a | 345 | drivers/cdrom/sbpcd.c | #define SBPCD_INIT(a) sbpcd3_init(a) |
a | 348 | drivers/cdrom/sbpcd.c | #define DO_SBPCD_REQUEST(a) do_sbpcd4_request(a) |
a | 349 | drivers/cdrom/sbpcd.c | #define SBPCD_INIT(a) sbpcd4_init(a) |
a | 207 | drivers/cdrom/sjcd.c | static void sjcd_send_1_cmd( unsigned char cmd, unsigned char a ){ |
a | 209 | drivers/cdrom/sjcd.c | printk( "SJCD: send_1_cmd( 0x%x, 0x%x )\n", cmd, a ); |
a | 212 | drivers/cdrom/sjcd.c | outb( a, SJCDPORT( 0 ) ); |
a | 221 | drivers/cdrom/sjcd.c | static void sjcd_send_4_cmd( unsigned char cmd, unsigned char a, |
a | 227 | drivers/cdrom/sjcd.c | outb( a, SJCDPORT( 0 ) ); |
a | 204 | drivers/char/atixlmouse.c | unsigned char a,b,c; |
a | 206 | drivers/char/atixlmouse.c | a = inb( ATIXL_MSE_SIGNATURE_PORT ); /* Get signature */ |
a | 209 | drivers/char/atixlmouse.c | if (( a != b ) && ( a == c )) |
a | 118 | drivers/char/console.c | #define MIN(a,b) ((a) < (b) ? (a) : (b)) |
a | 201 | drivers/char/console.c | #define serial_echo_outb(v,a) outb((v),(a)+serial_echo_port) |
a | 202 | drivers/char/console.c | #define serial_echo_inb(a) inb((a)+serial_echo_port) |
a | 287 | drivers/char/cyclades.c | #define MIN(a,b) ((a) < (b) ? (a) : (b)) |
a | 269 | drivers/char/ftape/ecc.c | static inline unsigned char gfadd(unsigned char a, unsigned char b) |
a | 271 | drivers/char/ftape/ecc.c | return a ^ b; |
a | 279 | drivers/char/ftape/ecc.c | static inline unsigned long gfadd_long(unsigned long a, unsigned long b) |
a | 281 | drivers/char/ftape/ecc.c | return a ^ b; |
a | 288 | drivers/char/ftape/ecc.c | static inline unsigned char gfmul(unsigned char a, unsigned char b) |
a | 290 | drivers/char/ftape/ecc.c | if (a && b) { |
a | 291 | drivers/char/ftape/ecc.c | return gfpow[mod255(gflog[a] + gflog[b])]; |
a | 302 | drivers/char/ftape/ecc.c | static inline unsigned char gfmul_exp(unsigned char a, int b) |
a | 304 | drivers/char/ftape/ecc.c | if (a) { |
a | 305 | drivers/char/ftape/ecc.c | return gfpow[mod255(gflog[a] + b)]; |
a | 316 | drivers/char/ftape/ecc.c | static inline unsigned long gfmul_exp_long(unsigned long a, int b) |
a | 324 | drivers/char/ftape/ecc.c | ((t = a >> 24 & 0xff) ? (((unsigned long) gfpow[mod255(gflog[t] + b)]) << 24) : 0) | |
a | 325 | drivers/char/ftape/ecc.c | ((t = a >> 16 & 0xff) ? (((unsigned long) gfpow[mod255(gflog[t] + b)]) << 16) : 0) | |
a | 326 | drivers/char/ftape/ecc.c | ((t = a >> 8 & 0xff) ? (((unsigned long) gfpow[mod255(gflog[t] + b)]) << 8) : 0) | |
a | 327 | drivers/char/ftape/ecc.c | ((t = a >> 0 & 0xff) ? (((unsigned long) gfpow[mod255(gflog[t] + b)]) << 0) : 0); |
a | 332 | drivers/char/ftape/ecc.c | ((t = a >> 56 & 0xff) ? (((unsigned long) gfpow[mod255(gflog[t] + b)]) << 56) : 0) | |
a | 333 | drivers/char/ftape/ecc.c | ((t = a >> 48 & 0xff) ? (((unsigned long) gfpow[mod255(gflog[t] + b)]) << 48) : 0) | |
a | 334 | drivers/char/ftape/ecc.c | ((t = a >> 40 & 0xff) ? (((unsigned long) gfpow[mod255(gflog[t] + b)]) << 40) : 0) | |
a | 335 | drivers/char/ftape/ecc.c | ((t = a >> 32 & 0xff) ? (((unsigned long) gfpow[mod255(gflog[t] + b)]) << 32) : 0) | |
a | 336 | drivers/char/ftape/ecc.c | ((t = a >> 24 & 0xff) ? (((unsigned long) gfpow[mod255(gflog[t] + b)]) << 24) : 0) | |
a | 337 | drivers/char/ftape/ecc.c | ((t = a >> 16 & 0xff) ? (((unsigned long) gfpow[mod255(gflog[t] + b)]) << 16) : 0) | |
a | 338 | drivers/char/ftape/ecc.c | ((t = a >> 8 & 0xff) ? (((unsigned long) gfpow[mod255(gflog[t] + b)]) << 8) : 0) | |
a | 339 | drivers/char/ftape/ecc.c | ((t = a >> 0 & 0xff) ? (((unsigned long) gfpow[mod255(gflog[t] + b)]) << 0) : 0); |
a | 352 | drivers/char/ftape/ecc.c | static inline unsigned char gfdiv(unsigned char a, unsigned char b) |
a | 358 | drivers/char/ftape/ecc.c | } else if (a == 0) { |
a | 361 | drivers/char/ftape/ecc.c | return gfpow[mod255(gflog[a] - gflog[b])]; |
a | 46 | drivers/char/ftape/tracing.h | #define TRACEx1(l,m,a) trace_dummy() |
a | 47 | drivers/char/ftape/tracing.h | #define TRACEx2(l,m,a,b) trace_dummy() |
a | 48 | drivers/char/ftape/tracing.h | #define TRACEx3(l,m,a,b,c) trace_dummy() |
a | 49 | drivers/char/ftape/tracing.h | #define TRACEx4(l,m,a,b,c,d) trace_dummy() |
a | 50 | drivers/char/ftape/tracing.h | #define TRACEx5(l,m,a,b,c,d,e) trace_dummy() |
a | 51 | drivers/char/ftape/tracing.h | #define TRACEx6(l,m,a,b,c,d,e,f) trace_dummy() |
a | 78 | drivers/char/ftape/tracing.h | #define TRACEx1(l,m,a) TRACE_(l,printk(m".\n",a)) |
a | 79 | drivers/char/ftape/tracing.h | #define TRACEx2(l,m,a,b) TRACE_(l,printk(m".\n",a,b)) |
a | 80 | drivers/char/ftape/tracing.h | #define TRACEx3(l,m,a,b,c) TRACE_(l,printk(m".\n",a,b,c)) |
a | 81 | drivers/char/ftape/tracing.h | #define TRACEx4(l,m,a,b,c,d) TRACE_(l,printk(m".\n",a,b,c,d)) |
a | 82 | drivers/char/ftape/tracing.h | #define TRACEx5(l,m,a,b,c,d,e) TRACE_(l,printk(m".\n",a,b,c,d,e)) |
a | 83 | drivers/char/ftape/tracing.h | #define TRACEx6(l,m,a,b,c,d,e,f) TRACE_(l,printk(m".\n",a,b,c,d,e,f)) |
a | 615 | drivers/char/istallion.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 | 62 | drivers/char/pty.c | #define MIN(a,b) ((a) < (b) ? (a) : (b)) |
a | 247 | drivers/char/random.c | #define MIN(a,b) (((a) < (b)) ? (a) : (b)) |
a | 481 | drivers/char/random.c | __u32 a, b, c, d; |
a | 483 | drivers/char/random.c | a = buf[0]; |
a | 488 | drivers/char/random.c | MD5STEP(F1, a, b, c, d, in[ 0]+0xd76aa478, 7); |
a | 489 | drivers/char/random.c | MD5STEP(F1, d, a, b, c, in[ 1]+0xe8c7b756, 12); |
a | 490 | drivers/char/random.c | MD5STEP(F1, c, d, a, b, in[ 2]+0x242070db, 17); |
a | 491 | drivers/char/random.c | MD5STEP(F1, b, c, d, a, in[ 3]+0xc1bdceee, 22); |
a | 492 | drivers/char/random.c | MD5STEP(F1, a, b, c, d, in[ 4]+0xf57c0faf, 7); |
a | 493 | drivers/char/random.c | MD5STEP(F1, d, a, b, c, in[ 5]+0x4787c62a, 12); |
a | 494 | drivers/char/random.c | MD5STEP(F1, c, d, a, b, in[ 6]+0xa8304613, 17); |
a | 495 | drivers/char/random.c | MD5STEP(F1, b, c, d, a, in[ 7]+0xfd469501, 22); |
a | 496 | drivers/char/random.c | MD5STEP(F1, a, b, c, d, in[ 8]+0x698098d8, 7); |
a | 497 | drivers/char/random.c | MD5STEP(F1, d, a, b, c, in[ 9]+0x8b44f7af, 12); |
a | 498 | drivers/char/random.c | MD5STEP(F1, c, d, a, b, in[10]+0xffff5bb1, 17); |
a | 499 | drivers/char/random.c | MD5STEP(F1, b, c, d, a, in[11]+0x895cd7be, 22); |
a | 500 | drivers/char/random.c | MD5STEP(F1, a, b, c, d, in[12]+0x6b901122, 7); |
a | 501 | drivers/char/random.c | MD5STEP(F1, d, a, b, c, in[13]+0xfd987193, 12); |
a | 502 | drivers/char/random.c | MD5STEP(F1, c, d, a, b, in[14]+0xa679438e, 17); |
a | 503 | drivers/char/random.c | MD5STEP(F1, b, c, d, a, in[15]+0x49b40821, 22); |
a | 505 | drivers/char/random.c | MD5STEP(F2, a, b, c, d, in[ 1]+0xf61e2562, 5); |
a | 506 | drivers/char/random.c | MD5STEP(F2, d, a, b, c, in[ 6]+0xc040b340, 9); |
a | 507 | drivers/char/random.c | MD5STEP(F2, c, d, a, b, in[11]+0x265e5a51, 14); |
a | 508 | drivers/char/random.c | MD5STEP(F2, b, c, d, a, in[ 0]+0xe9b6c7aa, 20); |
a | 509 | drivers/char/random.c | MD5STEP(F2, a, b, c, d, in[ 5]+0xd62f105d, 5); |
a | 510 | drivers/char/random.c | MD5STEP(F2, d, a, b, c, in[10]+0x02441453, 9); |
a | 511 | drivers/char/random.c | MD5STEP(F2, c, d, a, b, in[15]+0xd8a1e681, 14); |
a | 512 | drivers/char/random.c | MD5STEP(F2, b, c, d, a, in[ 4]+0xe7d3fbc8, 20); |
a | 513 | drivers/char/random.c | MD5STEP(F2, a, b, c, d, in[ 9]+0x21e1cde6, 5); |
a | 514 | drivers/char/random.c | MD5STEP(F2, d, a, b, c, in[14]+0xc33707d6, 9); |
a | 515 | drivers/char/random.c | MD5STEP(F2, c, d, a, b, in[ 3]+0xf4d50d87, 14); |
a | 516 | drivers/char/random.c | MD5STEP(F2, b, c, d, a, in[ 8]+0x455a14ed, 20); |
a | 517 | drivers/char/random.c | MD5STEP(F2, a, b, c, d, in[13]+0xa9e3e905, 5); |
a | 518 | drivers/char/random.c | MD5STEP(F2, d, a, b, c, in[ 2]+0xfcefa3f8, 9); |
a | 519 | drivers/char/random.c | MD5STEP(F2, c, d, a, b, in[ 7]+0x676f02d9, 14); |
a | 520 | drivers/char/random.c | MD5STEP(F2, b, c, d, a, in[12]+0x8d2a4c8a, 20); |
a | 522 | drivers/char/random.c | MD5STEP(F3, a, b, c, d, in[ 5]+0xfffa3942, 4); |
a | 523 | drivers/char/random.c | MD5STEP(F3, d, a, b, c, in[ 8]+0x8771f681, 11); |
a | 524 | drivers/char/random.c | MD5STEP(F3, c, d, a, b, in[11]+0x6d9d6122, 16); |
a | 525 | drivers/char/random.c | MD5STEP(F3, b, c, d, a, in[14]+0xfde5380c, 23); |
a | 526 | drivers/char/random.c | MD5STEP(F3, a, b, c, d, in[ 1]+0xa4beea44, 4); |
a | 527 | drivers/char/random.c | MD5STEP(F3, d, a, b, c, in[ 4]+0x4bdecfa9, 11); |
a | 528 | drivers/char/random.c | MD5STEP(F3, c, d, a, b, in[ 7]+0xf6bb4b60, 16); |
a | 529 | drivers/char/random.c | MD5STEP(F3, b, c, d, a, in[10]+0xbebfbc70, 23); |
a | 530 | drivers/char/random.c | MD5STEP(F3, a, b, c, d, in[13]+0x289b7ec6, 4); |
a | 531 | drivers/char/random.c | MD5STEP(F3, d, a, b, c, in[ 0]+0xeaa127fa, 11); |
a | 532 | drivers/char/random.c | MD5STEP(F3, c, d, a, b, in[ 3]+0xd4ef3085, 16); |
a | 533 | drivers/char/random.c | MD5STEP(F3, b, c, d, a, in[ 6]+0x04881d05, 23); |
a | 534 | drivers/char/random.c | MD5STEP(F3, a, b, c, d, in[ 9]+0xd9d4d039, 4); |
a | 535 | drivers/char/random.c | MD5STEP(F3, d, a, b, c, in[12]+0xe6db99e5, 11); |
a | 536 | drivers/char/random.c | MD5STEP(F3, c, d, a, b, in[15]+0x1fa27cf8, 16); |
a | 537 | drivers/char/random.c | MD5STEP(F3, b, c, d, a, in[ 2]+0xc4ac5665, 23); |
a | 539 | drivers/char/random.c | MD5STEP(F4, a, b, c, d, in[ 0]+0xf4292244, 6); |
a | 540 | drivers/char/random.c | MD5STEP(F4, d, a, b, c, in[ 7]+0x432aff97, 10); |
a | 541 | drivers/char/random.c | MD5STEP(F4, c, d, a, b, in[14]+0xab9423a7, 15); |
a | 542 | drivers/char/random.c | MD5STEP(F4, b, c, d, a, in[ 5]+0xfc93a039, 21); |
a | 543 | drivers/char/random.c | MD5STEP(F4, a, b, c, d, in[12]+0x655b59c3, 6); |
a | 544 | drivers/char/random.c | MD5STEP(F4, d, a, b, c, in[ 3]+0x8f0ccc92, 10); |
a | 545 | drivers/char/random.c | MD5STEP(F4, c, d, a, b, in[10]+0xffeff47d, 15); |
a | 546 | drivers/char/random.c | MD5STEP(F4, b, c, d, a, in[ 1]+0x85845dd1, 21); |
a | 547 | drivers/char/random.c | MD5STEP(F4, a, b, c, d, in[ 8]+0x6fa87e4f, 6); |
a | 548 | drivers/char/random.c | MD5STEP(F4, d, a, b, c, in[15]+0xfe2ce6e0, 10); |
a | 549 | drivers/char/random.c | MD5STEP(F4, c, d, a, b, in[ 6]+0xa3014314, 15); |
a | 550 | drivers/char/random.c | MD5STEP(F4, b, c, d, a, in[13]+0x4e0811a1, 21); |
a | 551 | drivers/char/random.c | MD5STEP(F4, a, b, c, d, in[ 4]+0xf7537e82, 6); |
a | 552 | drivers/char/random.c | MD5STEP(F4, d, a, b, c, in[11]+0xbd3af235, 10); |
a | 553 | drivers/char/random.c | MD5STEP(F4, c, d, a, b, in[ 2]+0x2ad7d2bb, 15); |
a | 554 | drivers/char/random.c | MD5STEP(F4, b, c, d, a, in[ 9]+0xeb86d391, 21); |
a | 556 | drivers/char/random.c | buf[0] += a; |
a | 27 | drivers/char/selection.c | #define MIN(a,b) ((a) < (b) ? (a) : (b)) |
a | 51 | drivers/char/selection.h | #define reverse_video_char(a) (((a) & 0x88) | ((((a) >> 4) | ((a) << 4)) & 0x77)) |
a | 52 | drivers/char/selection.h | #define reverse_video_short(a) (((a) & 0x88ff) | \ |
a | 53 | drivers/char/selection.h | (((a) & 0x7000) >> 4) | (((a) & 0x0700) << 4)) |
a | 195 | drivers/char/serial.c | #define MIN(a,b) ((a) < (b) ? (a) : (b)) |
a | 461 | drivers/char/stallion.c | #define MIN(a,b) (((a) <= (b)) ? (a) : (b)) |
a | 187 | drivers/char/tga.c | #define BT463_LOAD_ADDR(a) \ |
a | 189 | drivers/char/tga.c | TGA_WRITE_REG((BT463_ADDR_LO<<10)|((a)&0xff), TGA_RAMDAC_REG); \ |
a | 191 | drivers/char/tga.c | TGA_WRITE_REG((BT463_ADDR_HI<<10)|(((a)>>8)&0xff), TGA_RAMDAC_REG); |
a | 193 | drivers/char/tga.c | #define BT463_WRITE(m,a,v) \ |
a | 194 | drivers/char/tga.c | BT463_LOAD_ADDR((a)); \ |
a | 2803 | drivers/char/tpqic02.c | static inline unsigned long const align_buffer(unsigned long a, unsigned size) |
a | 2805 | drivers/char/tpqic02.c | if (a & (size-1)) /* if not aligned */ |
a | 2806 | drivers/char/tpqic02.c | return (a | (size-1)) + 1; |
a | 2808 | drivers/char/tpqic02.c | return a; |
a | 126 | drivers/char/tty_io.c | #define MIN(a,b) ((a) < (b) ? (a) : (b)) |
a | 383 | drivers/char/vt.c | struct kbkeycode * const a = (struct kbkeycode *)arg; |
a | 387 | drivers/char/vt.c | i = verify_area(VERIFY_WRITE, (void *)a, sizeof(struct kbkeycode)); |
a | 390 | drivers/char/vt.c | sc = get_user(&a->scancode); |
a | 394 | drivers/char/vt.c | put_user(kc, &a->keycode); |
a | 400 | drivers/char/vt.c | struct kbkeycode * const a = (struct kbkeycode *)arg; |
a | 405 | drivers/char/vt.c | i = verify_area(VERIFY_READ, (void *)a, sizeof(struct kbkeycode)); |
a | 408 | drivers/char/vt.c | sc = get_user(&a->scancode); |
a | 409 | drivers/char/vt.c | kc = get_user(&a->keycode); |
a | 415 | drivers/char/vt.c | struct kbentry * const a = (struct kbentry *)arg; |
a | 419 | drivers/char/vt.c | i = verify_area(VERIFY_WRITE, (void *)a, sizeof(struct kbentry)); |
a | 422 | drivers/char/vt.c | if ((i = get_user(&a->kb_index)) >= NR_KEYS) |
a | 424 | drivers/char/vt.c | if ((s = get_user(&a->kb_table)) >= MAX_NR_KEYMAPS) |
a | 433 | drivers/char/vt.c | put_user(val, &a->kb_value); |
a | 439 | drivers/char/vt.c | const struct kbentry * a = (struct kbentry *)arg; |
a | 446 | drivers/char/vt.c | i = verify_area(VERIFY_READ, (const void *)a, sizeof(struct kbentry)); |
a | 449 | drivers/char/vt.c | if ((i = get_user(&a->kb_index)) >= NR_KEYS) |
a | 451 | drivers/char/vt.c | if ((s = get_user(&a->kb_table)) >= MAX_NR_KEYMAPS) |
a | 453 | drivers/char/vt.c | v = get_user(&a->kb_value); |
a | 511 | drivers/char/vt.c | struct kbsentry *a = (struct kbsentry *)arg; |
a | 516 | drivers/char/vt.c | i = verify_area(VERIFY_WRITE, (void *)a, sizeof(struct kbsentry)); |
a | 519 | drivers/char/vt.c | if ((i = get_user(&a->kb_func)) >= MAX_NR_FUNC || i < 0) |
a | 521 | drivers/char/vt.c | sz = sizeof(a->kb_string) - 1; /* sz should have been |
a | 523 | drivers/char/vt.c | q = a->kb_string; |
a | 534 | drivers/char/vt.c | struct kbsentry * const a = (struct kbsentry *)arg; |
a | 543 | drivers/char/vt.c | i = verify_area(VERIFY_READ, (void *)a, sizeof(struct kbsentry)); |
a | 546 | drivers/char/vt.c | if ((i = get_user(&a->kb_func)) >= MAX_NR_FUNC) |
a | 558 | drivers/char/vt.c | sz = sizeof(a->kb_string); /* sz should have been |
a | 560 | drivers/char/vt.c | for (p = a->kb_string; get_user(p) && sz; p++,sz--) |
a | 602 | drivers/char/vt.c | for (p = a->kb_string, q = func_table[i]; ; p++, q++) |
a | 610 | drivers/char/vt.c | struct kbdiacrs *a = (struct kbdiacrs *)arg; |
a | 612 | drivers/char/vt.c | i = verify_area(VERIFY_WRITE, (void *) a, sizeof(struct kbdiacrs)); |
a | 615 | drivers/char/vt.c | put_user(accent_table_size, &a->kb_cnt); |
a | 616 | drivers/char/vt.c | memcpy_tofs(a->kbdiacr, accent_table, |
a | 623 | drivers/char/vt.c | struct kbdiacrs *a = (struct kbdiacrs *)arg; |
a | 628 | drivers/char/vt.c | i = verify_area(VERIFY_READ, (void *) a, sizeof(struct kbdiacrs)); |
a | 631 | drivers/char/vt.c | ct = get_user(&a->kb_cnt); |
a | 635 | drivers/char/vt.c | memcpy_fromfs(accent_table, a->kbdiacr, ct*sizeof(struct kbdiacr)); |
a | 1049 | drivers/isdn/icn/icn.c | ulong a; |
a | 1057 | drivers/isdn/icn/icn.c | memcpy(&a, c->num, sizeof(ulong)); |
a | 1060 | drivers/isdn/icn/icn.c | if ((unsigned long) dev->shmem != (a & 0x0ffc000)) { |
a | 1061 | drivers/isdn/icn/icn.c | if (check_shmem((ulong) (a & 0x0ffc000), 0x4000)) { |
a | 1063 | drivers/isdn/icn/icn.c | (ulong) (a & 0x0ffc000)); |
a | 1074 | drivers/isdn/icn/icn.c | dev->shmem = (icn_shmem *) (a & 0x0ffc000); |
a | 1076 | drivers/isdn/icn/icn.c | dev2->shmem = (icn_shmem *) (a & 0x0ffc000); |
a | 1085 | drivers/isdn/icn/icn.c | if (a == 0x300 || a == 0x310 || a == 0x320 || a == 0x330 |
a | 1086 | drivers/isdn/icn/icn.c | || a == 0x340 || a == 0x350 || a == 0x360 || |
a | 1087 | drivers/isdn/icn/icn.c | a == 0x308 || a == 0x318 || a == 0x328 || a == 0x338 |
a | 1088 | drivers/isdn/icn/icn.c | || a == 0x348 || a == 0x358 || a == 0x368) { |
a | 1089 | drivers/isdn/icn/icn.c | if (dev->port != (unsigned short) a) { |
a | 1090 | drivers/isdn/icn/icn.c | if (check_region((unsigned short) a, ICN_PORTLEN)) { |
a | 1092 | drivers/isdn/icn/icn.c | (int) a, (int) a + ICN_PORTLEN); |
a | 1102 | drivers/isdn/icn/icn.c | dev->port = (unsigned short) a; |
a | 1105 | drivers/isdn/icn/icn.c | dev2->port = (unsigned short) a; |
a | 1125 | drivers/isdn/icn/icn.c | return (icn_loadboot((u_char *) a, dev)); |
a | 1130 | drivers/isdn/icn/icn.c | if ((i = (icn_loadproto((u_char *) a, dev)))) |
a | 1133 | drivers/isdn/icn/icn.c | i = icn_loadproto((u_char *) (a + ICN_CODE_STAGE2), dev2); |
a | 1137 | drivers/isdn/icn/icn.c | if (a) { |
a | 1182 | drivers/isdn/icn/icn.c | a = c->arg; |
a | 1202 | drivers/isdn/icn/icn.c | sprintf(cbuf, "%02d;D%s_R%s,%02d,%02d,%s\n", (int) (a + 1), dcode, dial, si1, |
a | 1209 | drivers/isdn/icn/icn.c | a = c->arg + 1; |
a | 1210 | drivers/isdn/icn/icn.c | sprintf(cbuf, "%02d;DCON_R\n", (int) a); |
a | 1216 | drivers/isdn/icn/icn.c | a = c->arg + 1; |
a | 1217 | drivers/isdn/icn/icn.c | sprintf(cbuf, "%02d;BCON_R\n", (int) a); |
a | 1223 | drivers/isdn/icn/icn.c | a = c->arg + 1; |
a | 1224 | drivers/isdn/icn/icn.c | sprintf(cbuf, "%02d;BDIS_R\n%02d;DDIS_R\n", (int) a, (int) a); |
a | 1232 | drivers/isdn/icn/icn.c | a = c->arg + 1; |
a | 1234 | drivers/isdn/icn/icn.c | sprintf(cbuf, "%02d;MS%s%s\n", (int) a, c->num[0] ? "N" : "ALL", c->num); |
a | 1236 | drivers/isdn/icn/icn.c | sprintf(cbuf, "%02d;EAZ%s\n", (int) a, c->num[0] ? c->num : "0123456789"); |
a | 1244 | drivers/isdn/icn/icn.c | a = c->arg + 1; |
a | 1246 | drivers/isdn/icn/icn.c | sprintf(cbuf, "%02d;MSNC\n", (int) a); |
a | 1248 | drivers/isdn/icn/icn.c | sprintf(cbuf, "%02d;EAZC\n", (int) a); |
a | 1254 | drivers/isdn/icn/icn.c | a = c->arg; |
a | 1255 | drivers/isdn/icn/icn.c | switch (a >> 8) { |
a | 1257 | drivers/isdn/icn/icn.c | sprintf(cbuf, "%02d;BX75\n", (int) (a & 255) + 1); |
a | 1260 | drivers/isdn/icn/icn.c | sprintf(cbuf, "%02d;BTRA\n", (int) (a & 255) + 1); |
a | 1266 | drivers/isdn/icn/icn.c | ldev->l2_proto[a & 255] = (a >> 8); |
a | 282 | drivers/isdn/icn/icn.h | #define MIN(a,b) ((a<b)?a:b) |
a | 283 | drivers/isdn/icn/icn.h | #define MAX(a,b) ((a>b)?a:b) |
a | 624 | drivers/net/de4x5.c | static int de4x5_strncmp(char *a, char *b, int n); |
a | 2928 | drivers/net/de4x5.c | static int de4x5_strncmp(char *a, char *b, int n) |
a | 2933 | drivers/net/de4x5.c | ret = *a++ - *b++; |
a | 2974 | drivers/net/de4x5.c | char a; |
a | 2976 | drivers/net/de4x5.c | a = (char)(offset << 2); |
a | 2977 | drivers/net/de4x5.c | for (i=0; i<6; i++, a <<= 1) { |
a | 2978 | drivers/net/de4x5.c | srom_latch(command | ((a < 0) ? DT_IN : 0), addr); |
a | 304 | drivers/net/de600.c | #define tx_page_adr(a) (((a) + 1) * MEM_2K) |
a | 805 | drivers/net/de600.c | #define min(a,b) ((a)<(b)?(a):(b)) |
a | 1453 | drivers/net/depca.c | u32 a; |
a | 1472 | drivers/net/depca.c | dev.llsig.a = ETH_PROM_SIG; |
a | 101 | drivers/net/eth16i.c | #define BIT(a) ( (1 << (a)) ) |
a | 1556 | drivers/net/ewrk3.c | u32 a; |
a | 1565 | drivers/net/ewrk3.c | dev.llsig.a = ETH_PROM_SIG; |
a | 287 | drivers/net/ewrk3.h | #define EEPROM_OFFSET(a) ((u_short)((u_long)(a))) |
a | 946 | drivers/net/pi2.c | int a = 1; |
a | 969 | drivers/net/pi2.c | a = inb_p(tmr1); |
a | 976 | drivers/net/pi2.c | a = inb_p(tmr1); |
a | 206 | drivers/net/ppp.c | #define CHECK_PPP(a) if (!ppp->inuse) { printk (ppp_warning, __LINE__); return a;} |
a | 581 | drivers/net/pt.c | int a = 1; |
a | 602 | drivers/net/pt.c | a = inb_p(ioaddr + TMR1); |
a | 610 | drivers/net/pt.c | a = inb_p(ioaddr + TMR1); |
a | 1142 | drivers/net/smc9194.c | byte a, b; |
a | 1144 | drivers/net/smc9194.c | a = *(buf ++ ); |
a | 1146 | drivers/net/smc9194.c | printk("%02x%02x ", a, b ); |
a | 1151 | drivers/net/smc9194.c | byte a, b; |
a | 1153 | drivers/net/smc9194.c | a = *(buf ++ ); |
a | 1155 | drivers/net/smc9194.c | printk("%02x%02x ", a, b ); |
a | 42 | drivers/net/wavelan.c | #define nels(a) (sizeof(a) / sizeof(a[0])) |
a | 1372 | drivers/net/wavelan.c | unsigned char *a; |
a | 1374 | drivers/net/wavelan.c | a = (unsigned char *)buf; |
a | 1380 | drivers/net/wavelan.c | a[0], a[1], a[2], a[3], a[4], a[5], |
a | 1814 | drivers/net/wavelan.c | wavelan_watchdog(unsigned long a) |
a | 1824 | drivers/net/wavelan.c | dev = (device *)a; |
a | 325 | drivers/scsi/AM53C974.h | #define AM53C974_PCIREG_READ_BYTE(instance,a) ( inb((a) + (instance)->io_port) ) |
a | 326 | drivers/scsi/AM53C974.h | #define AM53C974_PCIREG_READ_WORD(instance,a) ( inw((a) + (instance)->io_port) ) |
a | 327 | drivers/scsi/AM53C974.h | #define AM53C974_PCIREG_READ_DWORD(instance,a) ( inl((a) + (instance)->io_port) ) |
a | 328 | drivers/scsi/AM53C974.h | #define AM53C974_PCIREG_WRITE_BYTE(instance,x,a) ( outb((x), (a) + (instance)->io_port) ) |
a | 329 | drivers/scsi/AM53C974.h | #define AM53C974_PCIREG_WRITE_WORD(instance,x,a) ( outw((x), (a) + (instance)->io_port) ) |
a | 330 | drivers/scsi/AM53C974.h | #define AM53C974_PCIREG_WRITE_DWORD(instance,x,a) ( outl((x), (a) + (instance)->io_port) ) |
a | 2156 | drivers/scsi/advansys.c | #define min(a, b) (((a) < (b)) ? (a) : (b)) |
a | 2280 | drivers/scsi/advansys.c | #define ASC_ASSERT(a) |
a | 2377 | drivers/scsi/advansys.c | #define ASC_ASSERT(a) \ |
a | 2379 | drivers/scsi/advansys.c | if (!(a)) { \ |
a | 80 | drivers/scsi/aic7xxx.c | #define MIN(a,b) ((a < b) ? a : b) |
a | 223 | drivers/scsi/aic7xxx_asm.c | static char *a[MAXTOKEN]; |
a | 244 | drivers/scsi/aic7xxx_asm.c | a[i++] = p; |
a | 253 | drivers/scsi/aic7xxx_asm.c | a[i++] = quote; |
a | 263 | drivers/scsi/aic7xxx_asm.c | return(a); |
a | 341 | drivers/scsi/aic7xxx_asm.c | eval_operand(char **a, int spec) |
a | 365 | drivers/scsi/aic7xxx_asm.c | !strcmp(jmptab[i].name, a[spec])) |
a | 377 | drivers/scsi/aic7xxx_asm.c | eval_sdi(char **a, int spec) |
a | 390 | drivers/scsi/aic7xxx_asm.c | if (isdigit(*a[spec &~ (SL|SR|RL|RR)])) |
a | 391 | drivers/scsi/aic7xxx_asm.c | val = strtol(a[spec &~ (SL|SR|RL|RR)], NULL, 0); |
a | 393 | drivers/scsi/aic7xxx_asm.c | p = lookup(a[spec &~ (SL|SR|RL|RR)]); |
a | 426 | drivers/scsi/aic7xxx_asm.c | if (!strcmp("A", a[spec])) |
a | 428 | drivers/scsi/aic7xxx_asm.c | if (isdigit(*a[spec]) && |
a | 429 | drivers/scsi/aic7xxx_asm.c | strtol(a[spec], NULL, 0) == 0) |
a | 435 | drivers/scsi/aic7xxx_asm.c | if (isdigit(*a[spec])) |
a | 436 | drivers/scsi/aic7xxx_asm.c | return(strtol(a[spec], NULL, 0)); |
a | 437 | drivers/scsi/aic7xxx_asm.c | p = lookup(a[spec]); |
a | 447 | drivers/scsi/aic7xxx_asm.c | eval_addr(char **a, int spec) |
a | 453 | drivers/scsi/aic7xxx_asm.c | if (isdigit(*a[spec])) |
a | 454 | drivers/scsi/aic7xxx_asm.c | return(strtol(a[spec], NULL, 0)); |
a | 456 | drivers/scsi/aic7xxx_asm.c | p = lookup(a[spec]); |
a | 463 | drivers/scsi/aic7xxx_asm.c | define(a[spec], NOVALUE); |
a | 464 | drivers/scsi/aic7xxx_asm.c | p = lookup(a[spec]); |
a | 472 | drivers/scsi/aic7xxx_asm.c | crack(char **a, int n) |
a | 483 | drivers/scsi/aic7xxx_asm.c | I_ret = (strcmp(a[n-1], "ret") ? 0 : !0); |
a | 493 | drivers/scsi/aic7xxx_asm.c | if (!strcmp(instr[i].name, *a) && instr[i].n == n) |
a | 499 | drivers/scsi/aic7xxx_asm.c | I_op = eval_operand(a, instr[i].op); |
a | 500 | drivers/scsi/aic7xxx_asm.c | I_src = eval_sdi(a, instr[i].src); |
a | 501 | drivers/scsi/aic7xxx_asm.c | I_imm = eval_sdi(a, instr[i].imm); |
a | 502 | drivers/scsi/aic7xxx_asm.c | I_dest = eval_sdi(a, instr[i].dest); |
a | 503 | drivers/scsi/aic7xxx_asm.c | I_addr = eval_addr(a, instr[i].addr); |
a | 543 | drivers/scsi/aic7xxx_asm.c | char **a; |
a | 546 | drivers/scsi/aic7xxx_asm.c | while ((a = getl(&n))) { |
a | 548 | drivers/scsi/aic7xxx_asm.c | while (a[0][strlen(*a)-1] == ':') { |
a | 549 | drivers/scsi/aic7xxx_asm.c | a[0][strlen(*a)-1] = '\0'; |
a | 550 | drivers/scsi/aic7xxx_asm.c | p = lookup(*a); |
a | 554 | drivers/scsi/aic7xxx_asm.c | define(*a, LC); |
a | 555 | drivers/scsi/aic7xxx_asm.c | a += 1; |
a | 562 | drivers/scsi/aic7xxx_asm.c | if (n == 3 && !strcmp("VERSION", *a)) |
a | 563 | drivers/scsi/aic7xxx_asm.c | fprintf(ofile, "#define %s \"%s\"\n", a[1], a[2]); |
a | 565 | drivers/scsi/aic7xxx_asm.c | if (n == 3 && !strcmp("=", a[1])) |
a | 566 | drivers/scsi/aic7xxx_asm.c | define(*a, strtol(a[2], NULL, 0)); |
a | 568 | drivers/scsi/aic7xxx_asm.c | LC += crack(a, n); |
a | 26 | drivers/scsi/eata_generic.h | #define min(a,b) ((a<b)?(a):(b)) |
a | 28 | drivers/scsi/scsi_ioctl.c | #define max(a,b) (((a) > (b)) ? (a) : (b)) |
a | 47 | drivers/sound/cs4232.c | CS_OUT (unsigned char a) |
a | 49 | drivers/sound/cs4232.c | outb (a, KEY_PORT); |
a | 51 | drivers/sound/cs4232.c | #define CS_OUT2(a, b) {CS_OUT(a);CS_OUT(b);} |
a | 52 | drivers/sound/cs4232.c | #define CS_OUT3(a, b, c) {CS_OUT(a);CS_OUT(b);CS_OUT(c);} |
a | 56 | fs/dquot.c | #define min(a,b) ((a) < (b)) ? (a) : (b) |
a | 29 | fs/ext/file.c | #define MIN(a,b) (((a)<(b))?(a):(b)) |
a | 30 | fs/ext/file.c | #define MAX(a,b) (((a)>(b))?(a):(b)) |
a | 33 | fs/ext2/file.c | #define MIN(a,b) (((a)<(b))?(a):(b)) |
a | 34 | fs/ext2/file.c | #define MAX(a,b) (((a)>(b))?(a):(b)) |
a | 24 | fs/fat/file.c | #define MIN(a,b) (((a) < (b)) ? (a) : (b)) |
a | 25 | fs/fat/file.c | #define MAX(a,b) (((a) > (b)) ? (a) : (b)) |
a | 24 | fs/minix/file.c | #define MIN(a,b) (((a)<(b))?(a):(b)) |
a | 25 | fs/minix/file.c | #define MAX(a,b) (((a)>(b))?(a):(b)) |
a | 21 | fs/ncpfs/file.c | static inline int min(int a, int b) |
a | 23 | fs/ncpfs/file.c | return a<b ? a : b; |
a | 24 | fs/ncpfs/mmap.c | static inline int min(int a, int b) |
a | 26 | fs/ncpfs/mmap.c | return a<b ? a : b; |
a | 14 | fs/ncpfs/ncplib_kernel.c | static inline int min(int a, int b) |
a | 16 | fs/ncpfs/ncplib_kernel.c | return a<b ? a : b; |
a | 25 | fs/noquot.c | #define min(a,b) ((a) < (b)) ? (a) : (b) |
a | 181 | fs/proc/array.c | int a, b, c; |
a | 183 | fs/proc/array.c | a = avenrun[0] + (FIXED_1/200); |
a | 187 | fs/proc/array.c | LOAD_INT(a), LOAD_FRAC(a), |
a | 20 | fs/smbfs/file.c | static inline int min(int a, int b) |
a | 22 | fs/smbfs/file.c | return a<b ? a : b; |
a | 35 | fs/smbfs/proc.c | static inline int min(int a, int b) |
a | 37 | fs/smbfs/proc.c | return a<b ? a : b; |
a | 30 | fs/sysv/file.c | #define MIN(a,b) (((a)<(b))?(a):(b)) |
a | 31 | fs/sysv/file.c | #define MAX(a,b) (((a)>(b))?(a):(b)) |
a | 29 | fs/xiafs/file.c | #define MIN(a,b) (((a)<(b))?(a):(b)) |
a | 30 | fs/xiafs/file.c | #define MAX(a,b) (((a)>(b))?(a):(b)) |
a | 346 | include/asm-alpha/alcor.h | #define readl(a) __readl((unsigned long)(a)) |
a | 347 | include/asm-alpha/alcor.h | #define writel(v,a) __writel((v),(unsigned long)(a)) |
a | 323 | include/asm-alpha/apecs.h | #define readl(a) __readl((unsigned long)(a)) |
a | 324 | include/asm-alpha/apecs.h | #define writel(v,a) __writel((v),(unsigned long)(a)) |
a | 17 | include/asm-alpha/atomic.h | #define __atomic_fool_gcc(x) (*(struct { int a[100]; } *)x) |
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 | 239 | include/asm-alpha/dma.h | static __inline__ void set_dma_addr(unsigned int dmanr, unsigned int a) |
a | 242 | include/asm-alpha/dma.h | dma_outb( a & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE ); |
a | 243 | include/asm-alpha/dma.h | dma_outb( (a>>8) & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE ); |
a | 245 | include/asm-alpha/dma.h | dma_outb( (a>>1) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE ); |
a | 246 | include/asm-alpha/dma.h | dma_outb( (a>>9) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE ); |
a | 248 | include/asm-alpha/dma.h | set_dma_page(dmanr, a>>16); /* set hipage last to enable 32-bit mode */ |
a | 52 | include/asm-alpha/floppy.h | #define CROSS_64KB(a,s) (0) |
a | 166 | include/asm-alpha/io.h | # define readb(a) _readb((unsigned long)(a)) |
a | 169 | include/asm-alpha/io.h | # define readw(a) _readw((unsigned long)(a)) |
a | 172 | include/asm-alpha/io.h | # define readl(a) _readl((unsigned long)(a)) |
a | 175 | include/asm-alpha/io.h | # define writeb(v,a) _writeb((v),(unsigned long)(a)) |
a | 178 | include/asm-alpha/io.h | # define writew(v,a) _writew((v),(unsigned long)(a)) |
a | 181 | include/asm-alpha/io.h | # define writel(v,a) _writel((v),(unsigned long)(a)) |
a | 305 | include/asm-alpha/lca.h | #define readl(a) __readl((unsigned long)(a)) |
a | 306 | include/asm-alpha/lca.h | #define writel(v,a) __writel((v),(unsigned long)(a)) |
a | 16 | include/asm-i386/a.out.h | #define N_TRSIZE(a) ((a).a_trsize) |
a | 17 | include/asm-i386/a.out.h | #define N_DRSIZE(a) ((a).a_drsize) |
a | 18 | include/asm-i386/a.out.h | #define N_SYMSIZE(a) ((a).a_syms) |
a | 20 | include/asm-i386/atomic.h | #define __atomic_fool_gcc(x) (*(struct { int a[100]; } *)x) |
a | 27 | include/asm-i386/bitops.h | struct __dummy { unsigned long a[100]; }; |
a | 48 | include/asm-i386/delay.h | extern __inline__ unsigned long muldiv(unsigned long a, unsigned long b, unsigned long c) |
a | 51 | include/asm-i386/delay.h | :"=a" (a) |
a | 54 | include/asm-i386/delay.h | "0" (a) |
a | 56 | 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 | 54 | include/asm-i386/floppy.h | #define CROSS_64KB(a,s) ((unsigned long)(a)/K_64 != ((unsigned long)(a) + (s) - 1) / K_64) |
a | 76 | include/asm-i386/io.h | #define memset_io(a,b,c) memset((void *)(a),(b),(c)) |
a | 77 | include/asm-i386/io.h | #define memcpy_fromio(a,b,c) memcpy((a),(void *)(b),(c)) |
a | 78 | include/asm-i386/io.h | #define memcpy_toio(a,b,c) memcpy((void *)(a),(b),(c)) |
a | 84 | include/asm-i386/io.h | #define eth_io_copy_and_sum(a,b,c,d) eth_copy_and_sum((a),(void *)(b),(c),(d)) |
a | 31 | include/asm-i386/segment.h | struct __segment_dummy { unsigned long a[100]; }; |
a | 194 | include/asm-i386/system.h | struct __xchg_dummy { unsigned long a[100]; }; |
a | 251 | include/asm-i386/system.h | #define set_call_gate(a,addr) \ |
a | 252 | 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 | 16 | include/asm-mips/a.out.h | #define N_TRSIZE(a) ((a).a_trsize) |
a | 17 | include/asm-mips/a.out.h | #define N_DRSIZE(a) ((a).a_drsize) |
a | 18 | include/asm-mips/a.out.h | #define N_SYMSIZE(a) ((a).a_syms) |
a | 92 | include/asm-mips/bitops.h | int *a = addr; |
a | 95 | include/asm-mips/bitops.h | a += nr >> 5; |
a | 99 | include/asm-mips/bitops.h | retval = (mask & *a) != 0; |
a | 100 | include/asm-mips/bitops.h | *a |= mask; |
a | 109 | include/asm-mips/bitops.h | int *a = addr; |
a | 112 | include/asm-mips/bitops.h | a += nr >> 5; |
a | 116 | include/asm-mips/bitops.h | retval = (mask & *a) != 0; |
a | 117 | include/asm-mips/bitops.h | *a &= ~mask; |
a | 126 | include/asm-mips/bitops.h | int *a = addr; |
a | 129 | include/asm-mips/bitops.h | a += nr >> 5; |
a | 133 | include/asm-mips/bitops.h | retval = (mask & *a) != 0; |
a | 134 | include/asm-mips/bitops.h | *a ^= mask; |
a | 41 | include/asm-mips/delay.h | extern __inline__ unsigned long muldiv(unsigned long a, unsigned long b, unsigned long c) |
a | 43 | include/asm-mips/delay.h | return (a*b)/c; |
a | 218 | include/asm-mips/dma.h | static __inline__ void set_dma_addr(unsigned int dmanr, unsigned int a) |
a | 220 | include/asm-mips/dma.h | set_dma_page(dmanr, a>>16); |
a | 222 | include/asm-mips/dma.h | dma_outb( a & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE ); |
a | 223 | include/asm-mips/dma.h | dma_outb( (a>>8) & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE ); |
a | 225 | include/asm-mips/dma.h | dma_outb( (a>>1) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE ); |
a | 226 | include/asm-mips/dma.h | dma_outb( (a>>9) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE ); |
a | 78 | include/asm-mips/floppy.h | #define CROSS_64KB(a,s) ((unsigned long)(a)/K_64 != ((unsigned long)(a) + (s) - 1) / K_64) |
a | 84 | include/asm-mips/io.h | #define memset_io(a,b,c) memset((void *)(a),(b),(c)) |
a | 85 | include/asm-mips/io.h | #define memcpy_fromio(a,b,c) memcpy((a),(void *)(b),(c)) |
a | 86 | include/asm-mips/io.h | #define memcpy_toio(a,b,c) memcpy((void *)(a),(b),(c)) |
a | 92 | include/asm-mips/io.h | #define eth_io_copy_and_sum(a,b,c,d) eth_copy_and_sum((a),(void *)(b),(c),(d)) |
a | 39 | include/asm-mips/jazzdma.h | #define VDMA_PAGE(a) ((unsigned int)(a) >> 12) |
a | 40 | include/asm-mips/jazzdma.h | #define VDMA_OFFSET(a) ((unsigned int)(a) & (VDMA_PAGESIZE-1)) |
a | 161 | include/asm-mips/segment.h | #define KSEGX(a) (((unsigned long)(a)) & 0xe0000000) |
a | 166 | include/asm-mips/segment.h | #define PHYSADDR(a) (((unsigned long)(a)) & 0x1fffffff) |
a | 171 | include/asm-mips/segment.h | #define KSEG0ADDR(a) ((((unsigned long)(a)) & 0x1fffffff) | KSEG0) |
a | 172 | include/asm-mips/segment.h | #define KSEG1ADDR(a) ((((unsigned long)(a)) & 0x1fffffff) | KSEG1) |
a | 173 | include/asm-mips/segment.h | #define KSEG2ADDR(a) ((((unsigned long)(a)) & 0x1fffffff) | KSEG2) |
a | 174 | include/asm-mips/segment.h | #define KSEG3ADDR(a) ((((unsigned long)(a)) & 0x1fffffff) | KSEG3) |
a | 1175 | include/asm-mips/unistd.h | #define _syscall1(type,name,atype,a) \ |
a | 1176 | include/asm-mips/unistd.h | type name(atype a) \ |
a | 1184 | include/asm-mips/unistd.h | : "i" (__NR_##name),"r" ((long)(a)) \ |
a | 1192 | include/asm-mips/unistd.h | #define _syscall2(type,name,atype,a,btype,b) \ |
a | 1193 | include/asm-mips/unistd.h | type name(atype a,btype b) \ |
a | 1202 | include/asm-mips/unistd.h | : "i" (__NR_##name),"r" ((long)(a)), \ |
a | 1211 | include/asm-mips/unistd.h | #define _syscall3(type,name,atype,a,btype,b,ctype,c) \ |
a | 1212 | include/asm-mips/unistd.h | type name (atype a, btype b, ctype c) \ |
a | 1222 | include/asm-mips/unistd.h | : "i" (__NR_##name),"r" ((long)(a)), \ |
a | 1232 | include/asm-mips/unistd.h | #define _syscall4(type,name,atype,a,btype,b,ctype,c,dtype,d) \ |
a | 1233 | include/asm-mips/unistd.h | type name (atype a, btype b, ctype c, dtype d) \ |
a | 1244 | include/asm-mips/unistd.h | : "i" (__NR_##name),"r" ((long)(a)), \ |
a | 1255 | include/asm-mips/unistd.h | #define _syscall5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \ |
a | 1256 | include/asm-mips/unistd.h | type name (atype a,btype b,ctype c,dtype d,etype e) \ |
a | 1268 | include/asm-mips/unistd.h | : "i" (__NR_##name),"r" ((long)(a)), \ |
a | 35 | include/asm-mips/vector.h | void (*fd_set_dma_addr)(unsigned int a); |
a | 21 | include/asm-ppc/a.out.h | #define N_TRSIZE(a) ((a).a_trsize) |
a | 22 | include/asm-ppc/a.out.h | #define N_DRSIZE(a) ((a).a_drsize) |
a | 23 | include/asm-ppc/a.out.h | #define N_SYMSIZE(a) ((a).a_syms) |
a | 9 | include/asm-ppc/delay.h | extern __inline__ unsigned long muldiv(unsigned long a, unsigned long b, unsigned long c) |
a | 11 | include/asm-ppc/delay.h | return (a*b)/c; |
a | 209 | include/asm-ppc/dma.h | static __inline__ void set_dma_addr(unsigned int dmanr, unsigned int a) |
a | 211 | include/asm-ppc/dma.h | set_dma_page(dmanr, a>>16); |
a | 213 | include/asm-ppc/dma.h | dma_outb( a & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE ); |
a | 214 | include/asm-ppc/dma.h | dma_outb( (a>>8) & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE ); |
a | 216 | include/asm-ppc/dma.h | dma_outb( (a>>1) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE ); |
a | 217 | include/asm-ppc/dma.h | dma_outb( (a>>9) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE ); |
a | 40 | include/asm-sparc/a.out.h | #define N_TRSIZE(a) ((a).a_trsize) |
a | 41 | include/asm-sparc/a.out.h | #define N_DRSIZE(a) ((a).a_drsize) |
a | 42 | include/asm-sparc/a.out.h | #define N_SYMSIZE(a) ((a).a_syms) |
a | 18 | include/asm-sparc/cprefix.h | #define CONCAT(a, b) CONCAT2(a, b) |
a | 19 | include/asm-sparc/cprefix.h | #define CONCAT2(a, b) a##b |
a | 25 | include/asm-sparc/delay.h | #define muldiv(a, b, c) (((a)*(b))/(c)) |
a | 95 | include/asm-sparc/floppy.h | #define CROSS_64KB(a,s) (0) |
a | 62 | include/linux/binfmts.h | #define change_ldt(a,b) setup_arg_pages(a,b) |
a | 45 | include/linux/ext2_fs.h | # define ext2_debug(f, a...) { \ |
a | 48 | include/linux/ext2_fs.h | printk (f, ## a); \ |
a | 51 | include/linux/ext2_fs.h | # define ext2_debug(f, a...) /**/ |
a | 62 | include/linux/ftape.h | #define ABS(a) ((a) < 0 ? -(a) : (a)) |
a | 5 | include/linux/head.h | unsigned long a,b; |
a | 73 | include/linux/in.h | #define IN_CLASSA(a) ((((long int) (a)) & 0x80000000) == 0) |
a | 79 | include/linux/in.h | #define IN_CLASSB(a) ((((long int) (a)) & 0xc0000000) == 0x80000000) |
a | 85 | include/linux/in.h | #define IN_CLASSC(a) ((((long int) (a)) & 0xe0000000) == 0xc0000000) |
a | 90 | include/linux/in.h | #define IN_CLASSD(a) ((((long int) (a)) & 0xf0000000) == 0xe0000000) |
a | 91 | include/linux/in.h | #define IN_MULTICAST(a) IN_CLASSD(a) |
a | 94 | include/linux/in.h | #define IN_EXPERIMENTAL(a) ((((long int) (a)) & 0xe0000000) == 0xe0000000) |
a | 95 | include/linux/in.h | #define IN_BADCLASS(a) ((((long int) (a)) & 0xf0000000) == 0xf0000000) |
a | 111 | include/linux/in.h | #define IN_LOOPBACK(a) ((((long int) (a)) & 0xff000000) == 0x7f000000) |
a | 562 | include/linux/isdn.h | #define MIN(a,b) ((a<b)?a:b) |
a | 563 | include/linux/isdn.h | #define MAX(a,b) ((a>b)?a:b) |
a | 9 | include/linux/malloc.h | #define kfree_s(a,b) kfree(a) |
a | 72 | include/linux/md.h | #define FACTOR(a) ((a)->repartition & FACTOR_MASK) |
a | 73 | include/linux/md.h | #define MAX_FAULT(a) (((a)->repartition & FAULT_MASK)>>8) |
a | 74 | include/linux/md.h | #define PERSONALITY(a) ((a)->repartition & PERSONALITY_MASK) |
a | 76 | include/linux/md.h | #define FACTOR_SHIFT(a) (PAGE_SHIFT + (a) - 10) |
a | 159 | include/linux/mroute.h | #define MFC_HASH(a,b) ((((a)>>24)^((b)>>26))&(MFC_LINES-1)) |
a | 161 | include/linux/mroute.h | #define MFC_HASH(a,b) (((a)^((b)>>2))&(MFC_LINES-1)) |
a | 153 | include/linux/msdos_fs.h | #define MSDOS_MKMODE(a,m) (m & (a & ATTR_RO ? S_IRUGO|S_IXUGO : S_IRWXUGO)) |
a | 12 | include/linux/stats206.h | #define x(a) st_ ## a |
a | 15 | include/linux/stats206.h | #define x(a) #a |
a | 6 | include/linux/symtab_end.h | #define _set_ver(a,b) a |
a | 26 | include/net/netlink.h | #define ip_netlink_msg(a,b,c,d,e,f,g) |
a | 108 | include/net/tcp.h | static __inline__ int min(unsigned int a, unsigned int b) |
a | 110 | include/net/tcp.h | if (a > b) |
a | 111 | include/net/tcp.h | a = b; |
a | 112 | include/net/tcp.h | return a; |
a | 115 | include/net/tcp.h | static __inline__ int max(unsigned int a, unsigned int b) |
a | 117 | include/net/tcp.h | if (a < b) |
a | 118 | include/net/tcp.h | a = b; |
a | 119 | include/net/tcp.h | return a; |
a | 18 | init/version.c | #define version(a) Version_ ## a |
a | 19 | init/version.c | #define version_string(a) version(a) |
a | 50 | kernel/module.c | #define PRINTK(a) printk a |
a | 52 | kernel/module.c | #define PRINTK(a) /* */ |
a | 282 | lib/inflate.c | unsigned a; /* counter for codes of length k */ |
a | 382 | lib/inflate.c | a = c[k]; |
a | 383 | lib/inflate.c | while (a--) |
a | 396 | lib/inflate.c | if ((f = 1 << (j = k - w)) > a + 1) /* try a k-w bit table */ |
a | 399 | lib/inflate.c | f -= a + 1; /* deduct codes from patterns left */ |
a | 141 | lib/string.c | const char *a; |
a | 145 | lib/string.c | for (a = accept; *a != '\0'; ++a) { |
a | 146 | lib/string.c | if (*p == *a) |
a | 149 | lib/string.c | if (*a == '\0') |
a | 86 | net/appletalk/aarp.c | static void aarp_expire(struct aarp_entry *a) |
a | 90 | net/appletalk/aarp.c | while((skb=skb_dequeue(&a->packet_queue))!=NULL) |
a | 92 | net/appletalk/aarp.c | kfree_s(a,sizeof(*a)); |
a | 99 | net/appletalk/aarp.c | static void aarp_send_query(struct aarp_entry *a) |
a | 102 | net/appletalk/aarp.c | struct device *dev=a->dev; |
a | 119 | net/appletalk/aarp.c | skb->dev = a->dev; |
a | 140 | net/appletalk/aarp.c | eah->pa_dst_net = a->target_addr.s_net; |
a | 141 | net/appletalk/aarp.c | eah->pa_dst_node= a->target_addr.s_node; |
a | 159 | net/appletalk/aarp.c | a->xmit_count++; |
a | 393 | net/appletalk/aarp.c | struct aarp_entry *a=kmalloc(sizeof(struct aarp_entry), GFP_ATOMIC); |
a | 394 | net/appletalk/aarp.c | if(a==NULL) |
a | 396 | net/appletalk/aarp.c | skb_queue_head_init(&a->packet_queue); |
a | 397 | net/appletalk/aarp.c | return a; |
a | 429 | net/appletalk/aarp.c | struct aarp_entry *a; |
a | 506 | net/appletalk/aarp.c | a=aarp_find_entry(resolved[hash],dev,sa); |
a | 507 | net/appletalk/aarp.c | if(a!=NULL) |
a | 513 | net/appletalk/aarp.c | a->expires_at=jiffies+AARP_EXPIRY_TIME*10; |
a | 514 | net/appletalk/aarp.c | ddp_dl->datalink_header(ddp_dl, skb, a->hwaddr); |
a | 527 | net/appletalk/aarp.c | a=aarp_find_entry(unresolved[hash],dev,sa); |
a | 528 | net/appletalk/aarp.c | if(a!=NULL) |
a | 534 | net/appletalk/aarp.c | skb_queue_tail(&a->packet_queue, skb); |
a | 543 | net/appletalk/aarp.c | a=aarp_alloc(); |
a | 544 | net/appletalk/aarp.c | if(a==NULL) |
a | 558 | net/appletalk/aarp.c | skb_queue_tail(&a->packet_queue, skb); |
a | 559 | net/appletalk/aarp.c | a->expires_at=jiffies+AARP_RESOLVE_TIME; |
a | 560 | net/appletalk/aarp.c | a->dev=dev; |
a | 561 | net/appletalk/aarp.c | a->next=unresolved[hash]; |
a | 562 | net/appletalk/aarp.c | a->target_addr= *sa; |
a | 563 | net/appletalk/aarp.c | a->xmit_count=0; |
a | 564 | net/appletalk/aarp.c | unresolved[hash]=a; |
a | 572 | net/appletalk/aarp.c | aarp_send_query(a); |
a | 598 | net/appletalk/aarp.c | static void aarp_resolved(struct aarp_entry **list, struct aarp_entry *a, int hash) |
a | 603 | net/appletalk/aarp.c | if(*list==a) |
a | 606 | net/appletalk/aarp.c | *list=a->next; |
a | 612 | net/appletalk/aarp.c | a->next=resolved[hash]; |
a | 613 | net/appletalk/aarp.c | resolved[hash]=a; |
a | 619 | net/appletalk/aarp.c | while((skb=skb_dequeue(&a->packet_queue))!=NULL) |
a | 621 | net/appletalk/aarp.c | a->expires_at=jiffies+AARP_EXPIRY_TIME*10; |
a | 622 | net/appletalk/aarp.c | ddp_dl->datalink_header(ddp_dl,skb,a->hwaddr); |
a | 642 | net/appletalk/aarp.c | struct aarp_entry *a; |
a | 737 | net/appletalk/aarp.c | if((a=aarp_find_entry(unresolved[hash],dev,&sa))==NULL || dev != a->dev) |
a | 743 | net/appletalk/aarp.c | memcpy(a->hwaddr,ea->hw_src,ETH_ALEN); |
a | 744 | net/appletalk/aarp.c | aarp_resolved(&unresolved[hash],a,hash); |
a | 81 | net/appletalk/ddp.c | #define min(a,b) (((a)<(b))?(a):(b)) |
a | 131 | net/ax25/af_ax25.c | char *ax2asc(ax25_address *a) |
a | 139 | net/ax25/af_ax25.c | c = (a->ax25_call[n] >> 1) & 0x7F; |
a | 146 | net/ax25/af_ax25.c | if ((n = ((a->ax25_call[6] >> 1) & 0x0F)) > 9) |
a | 165 | net/ax25/af_ax25.c | int ax25cmp(ax25_address *a, ax25_address *b) |
a | 170 | net/ax25/af_ax25.c | if ((a->ax25_call[ct] & 0xFE) != (b->ax25_call[ct] & 0xFE)) /* Clean off repeater bits */ |
a | 175 | net/ax25/af_ax25.c | if ((a->ax25_call[ct] & 0x1E) == (b->ax25_call[ct] & 0x1E)) /* SSID without control bit */ |
a | 471 | net/ax25/af_ax25.c | ax25_uid_assoc *a; |
a | 473 | net/ax25/af_ax25.c | for (a = ax25_uid_list; a != NULL; a = a->next) { |
a | 474 | net/ax25/af_ax25.c | if (a->uid == uid) |
a | 475 | net/ax25/af_ax25.c | return &a->call; |
a | 483 | net/ax25/af_ax25.c | ax25_uid_assoc *a; |
a | 487 | net/ax25/af_ax25.c | for (a = ax25_uid_list; a != NULL; a = a->next) { |
a | 488 | net/ax25/af_ax25.c | if (ax25cmp(&sax->sax25_call, &a->call) == 0) |
a | 489 | net/ax25/af_ax25.c | return a->uid; |
a | 497 | net/ax25/af_ax25.c | a = (ax25_uid_assoc *)kmalloc(sizeof(*a), GFP_KERNEL); |
a | 498 | net/ax25/af_ax25.c | if (a == NULL) |
a | 500 | net/ax25/af_ax25.c | a->uid = sax->sax25_uid; |
a | 501 | net/ax25/af_ax25.c | a->call = sax->sax25_call; |
a | 502 | net/ax25/af_ax25.c | a->next = ax25_uid_list; |
a | 503 | net/ax25/af_ax25.c | ax25_uid_list = a; |
a | 514 | net/ax25/af_ax25.c | a = *l; |
a | 516 | net/ax25/af_ax25.c | kfree_s(a, sizeof(*a)); |
a | 122 | net/core/dev.c | static __inline__ unsigned long min(unsigned long a, unsigned long b) |
a | 124 | net/core/dev.c | return (a < b)? a : b; |
a | 114 | net/core/sock.c | #define min(a,b) ((a)<(b)?(a):(b)) |
a | 100 | net/ipv4/af_inet.c | #define min(a,b) ((a)<(b)?(a):(b)) |
a | 111 | net/ipv4/icmp.c | #define min(a,b) ((a)<(b)?(a):(b)) |
a | 110 | net/ipv4/ip_fw.c | #define dprintf1(a) printk(a) |
a | 115 | net/ipv4/ip_fw.c | #define dprintf1(a) |
a | 121 | net/ipv4/ip_fw.c | #define print_ip(a) printk("%ld.%ld.%ld.%ld",(ntohl(a)>>24)&0xFF,\ |
a | 122 | net/ipv4/ip_fw.c | (ntohl(a)>>16)&0xFF,\ |
a | 123 | net/ipv4/ip_fw.c | (ntohl(a)>>8)&0xFF,\ |
a | 124 | net/ipv4/ip_fw.c | (ntohl(a))&0xFF); |
a | 127 | net/ipv4/ip_fw.c | #define dprint_ip(a) print_ip(a) |
a | 129 | net/ipv4/ip_fw.c | #define dprint_ip(a) |
a | 162 | net/ipv4/ip_input.c | #define min(a,b) ((a)<(b)?(a):(b)) |
a | 67 | net/ipv4/packet.c | static unsigned long min(unsigned long a, unsigned long b) |
a | 69 | net/ipv4/packet.c | if (a < b) |
a | 70 | net/ipv4/packet.c | return(a); |
a | 67 | net/ipv4/raw.c | static inline unsigned long min(unsigned long a, unsigned long b) |
a | 69 | net/ipv4/raw.c | if (a < b) |
a | 70 | net/ipv4/raw.c | return(a); |
a | 140 | net/ipv4/udp.c | #define min(a,b) ((a)<(b)?(a):(b)) |
a | 305 | net/ipv4/udp.c | int a; |
a | 326 | net/ipv4/udp.c | a = ip_build_xmit(sk, udp_getfrag_nosum, &ufh, ulen, |
a | 329 | net/ipv4/udp.c | a = ip_build_xmit(sk, udp_getfrag, &ufh, ulen, |
a | 331 | net/ipv4/udp.c | if(a<0) |
a | 332 | net/ipv4/udp.c | return a; |
a | 75 | net/unix/af_unix.c | #define min(a,b) (((a)<(b))?(a):(b)) |
a | 589 | net/unix/af_unix.c | static int unix_socketpair(struct socket *a, struct socket *b) |
a | 593 | net/unix/af_unix.c | ska=a->data; |