tag | line | file | source code |
e | 74 | arch/alpha/math-emu/ieee-math.c | int e; /* 16 bit signed exponent */ |
e | 191 | arch/alpha/math-emu/ieee-math.c | ++a->e; |
e | 204 | arch/alpha/math-emu/ieee-math.c | --a->e; |
e | 244 | arch/alpha/math-emu/ieee-math.c | b->e = ((a >> 52) & 0x7ff) - 0x3ff; /* remove bias */ |
e | 257 | arch/alpha/math-emu/ieee-math.c | b->e = -126; |
e | 259 | arch/alpha/math-emu/ieee-math.c | b->e = -1022; |
e | 287 | arch/alpha/math-emu/ieee-math.c | if (a->e < -0x7e) { |
e | 291 | arch/alpha/math-emu/ieee-math.c | a->e += 0xc0; /* scale up result by 2^alpha */ |
e | 294 | arch/alpha/math-emu/ieee-math.c | while (a->e < -0x7e) { |
e | 295 | arch/alpha/math-emu/ieee-math.c | ++a->e; |
e | 305 | arch/alpha/math-emu/ieee-math.c | a->e = -0x3ff; |
e | 308 | arch/alpha/math-emu/ieee-math.c | if (a->e >= 0x80) { |
e | 311 | arch/alpha/math-emu/ieee-math.c | a->e -= 0xc0; /* scale down result by 2^alpha */ |
e | 348 | arch/alpha/math-emu/ieee-math.c | (((unsigned long) a->e + 0x3ff) << 52) | |
e | 366 | arch/alpha/math-emu/ieee-math.c | if (a->e < -0x3fe) { |
e | 370 | arch/alpha/math-emu/ieee-math.c | a->e += 0x600; |
e | 373 | arch/alpha/math-emu/ieee-math.c | while (a->e < -0x3fe) { |
e | 374 | arch/alpha/math-emu/ieee-math.c | ++a->e; |
e | 384 | arch/alpha/math-emu/ieee-math.c | a->e = -0x3ff; |
e | 387 | arch/alpha/math-emu/ieee-math.c | if (a->e > 0x3ff) { |
e | 390 | arch/alpha/math-emu/ieee-math.c | a->e -= 0x600; /* scale down result by 2^alpha */ |
e | 426 | arch/alpha/math-emu/ieee-math.c | (((unsigned long) a->e + 0x3ff) << 52) | |
e | 458 | arch/alpha/math-emu/ieee-math.c | z1.e = z2.e = a->e; |
e | 515 | arch/alpha/math-emu/ieee-math.c | z1.e = z2.e = a->e; |
e | 567 | arch/alpha/math-emu/ieee-math.c | diff = op_a->e - op_b->e; |
e | 572 | arch/alpha/math-emu/ieee-math.c | op_c->e = op_b->e; |
e | 579 | arch/alpha/math-emu/ieee-math.c | op_c->e = op_a->e; |
e | 688 | arch/alpha/math-emu/ieee-math.c | op_b.e = 55; |
e | 718 | arch/alpha/math-emu/ieee-math.c | op_b.e = 55; |
e | 751 | arch/alpha/math-emu/ieee-math.c | if (temp.e > 0) { |
e | 753 | arch/alpha/math-emu/ieee-math.c | while (temp.e > 0) { |
e | 754 | arch/alpha/math-emu/ieee-math.c | --temp.e; |
e | 761 | arch/alpha/math-emu/ieee-math.c | if (temp.e < 0) { |
e | 762 | arch/alpha/math-emu/ieee-math.c | while (temp.e < 0) { |
e | 763 | arch/alpha/math-emu/ieee-math.c | ++temp.e; |
e | 822 | arch/alpha/math-emu/ieee-math.c | if ((op_a.e == op_b.e && op_a.s == op_b.s && |
e | 847 | arch/alpha/math-emu/ieee-math.c | (op_a.e > op_b.e || (op_a.e == op_b.e && |
e | 850 | arch/alpha/math-emu/ieee-math.c | (op_a.e < op_b.e || (op_a.e == op_b.e && |
e | 874 | arch/alpha/math-emu/ieee-math.c | (op_a.e > op_b.e || (op_a.e == op_b.e && |
e | 877 | arch/alpha/math-emu/ieee-math.c | (op_a.e < op_b.e || (op_a.e == op_b.e && |
e | 1146 | arch/alpha/math-emu/ieee-math.c | op_c.e = op_a.e + op_b.e; |
e | 1150 | arch/alpha/math-emu/ieee-math.c | op_c.e -= 55; /* drop the 55 original bits. */ |
e | 1203 | arch/alpha/math-emu/ieee-math.c | op_c.e = op_a.e + op_b.e; |
e | 1207 | arch/alpha/math-emu/ieee-math.c | op_c.e -= 55; /* drop the 55 original bits. */ |
e | 1265 | arch/alpha/math-emu/ieee-math.c | op_c.e = op_a.e - op_b.e; |
e | 1274 | arch/alpha/math-emu/ieee-math.c | op_c.e -= 9; /* remove excess exp from original shift */ |
e | 1332 | arch/alpha/math-emu/ieee-math.c | op_c.e = op_a.e - op_b.e; |
e | 1341 | arch/alpha/math-emu/ieee-math.c | op_c.e -= 9; /* remove excess exp from original shift */ |
e | 377 | arch/i386/math-emu/fpu_trig.c | long e; |
e | 387 | arch/i386/math-emu/fpu_trig.c | e = st1_ptr->exp - EXP_BIAS; |
e | 388 | arch/i386/math-emu/fpu_trig.c | convert_l2reg(&e, st1_ptr); |
e | 986 | arch/i386/math-emu/fpu_trig.c | int e; |
e | 1002 | arch/i386/math-emu/fpu_trig.c | e = st0_ptr->exp - EXP_BIAS; |
e | 1003 | arch/i386/math-emu/fpu_trig.c | if ( e > 0 ) |
e | 1005 | arch/i386/math-emu/fpu_trig.c | exponent.sigh = e; |
e | 1010 | arch/i386/math-emu/fpu_trig.c | exponent.sigh = -e; |
e | 287 | arch/i386/math-emu/reg_ld_str.c | int e; |
e | 307 | arch/i386/math-emu/reg_ld_str.c | e = EXP_BIAS + 63; |
e | 309 | arch/i386/math-emu/reg_ld_str.c | loaded_data->exp = e; |
e | 319 | arch/i386/math-emu/reg_ld_str.c | int e; |
e | 337 | arch/i386/math-emu/reg_ld_str.c | e = EXP_BIAS + 31; |
e | 340 | arch/i386/math-emu/reg_ld_str.c | loaded_data->exp = e; |
e | 349 | arch/i386/math-emu/reg_ld_str.c | int s, e; |
e | 368 | arch/i386/math-emu/reg_ld_str.c | e = EXP_BIAS + 15; |
e | 372 | arch/i386/math-emu/reg_ld_str.c | loaded_data->exp = e; |
e | 1382 | arch/i386/math-emu/reg_ld_str.c | long e; |
e | 1385 | arch/i386/math-emu/reg_ld_str.c | e = rp->exp - EXP_BIAS + EXTENDED_Ebias; |
e | 1391 | arch/i386/math-emu/reg_ld_str.c | if ( rp->sigh | rp->sigl | e ) |
e | 1396 | arch/i386/math-emu/reg_ld_str.c | if ( (e ^ 0x7fff) | !(rp->sigh & 0x80000000) ) |
e | 1400 | arch/i386/math-emu/reg_ld_str.c | if (e > 0x7fff || e < -63) |
e | 1410 | arch/i386/math-emu/reg_ld_str.c | if ( e > 0 ) |
e | 1428 | arch/i386/math-emu/reg_ld_str.c | e = 0; |
e | 1434 | arch/i386/math-emu/reg_ld_str.c | e |= rp->sign == SIGN_POS ? 0 : 0x8000; |
e | 1436 | arch/i386/math-emu/reg_ld_str.c | put_fs_word(e, (unsigned short *) (d + 8)); |
e | 360 | drivers/cdrom/cm206.c | int e; |
e | 361 | drivers/cdrom/cm206.c | if (command != (e=send_receive(command))) { |
e | 362 | drivers/cdrom/cm206.c | debug(("command 0x%x echoed as 0x%x\n", command, e)); |
e | 411 | drivers/cdrom/cm206.c | int i, e; |
e | 415 | drivers/cdrom/cm206.c | if (read_sector[i] != (e=send_receive(read_sector[i]))) { |
e | 416 | drivers/cdrom/cm206.c | debug(("read_sector: %x echoes %x\n", read_sector[i], e)); |
e | 1076 | drivers/cdrom/cm206.c | int b=0x300, e=0x370; /* this is the range of start addresses */ |
e | 1082 | drivers/cdrom/cm206.c | if (base) b=e=base; |
e | 1083 | drivers/cdrom/cm206.c | for (base=b; base<=e; base += 0x10) { |
e | 1119 | drivers/cdrom/cm206.c | uch e=0; |
e | 1153 | drivers/cdrom/cm206.c | e = send_receive_polled(c_gimme); |
e | 1154 | drivers/cdrom/cm206.c | printk("Firmware revision %d", e & dcf_revision_code); |
e | 1155 | drivers/cdrom/cm206.c | if (e & dcf_transfer_rate) printk(" double"); |
e | 1158 | drivers/cdrom/cm206.c | if (e & dcf_motorized_tray) printk(", motorized tray"); |
e | 48 | drivers/char/selection.c | highlight(const int s, const int e) { |
e | 49 | drivers/char/selection.c | invert_screen(sel_cons, s, e-s+2, 1); |
e | 1881 | drivers/isdn/isdn_net.c | char *c,*e; |
e | 1888 | drivers/isdn/isdn_net.c | chidx = (int)simple_strtoul(c + 1,&e,10); |
e | 1889 | drivers/isdn/isdn_net.c | if (e == c) |
e | 58 | drivers/sound/ics2101.c | int e; |
e | 65 | drivers/sound/ics2101.c | e = 0; |
e | 71 | drivers/sound/ics2101.c | e--; |
e | 74 | drivers/sound/ics2101.c | e += 7; |
e | 76 | drivers/sound/ics2101.c | return ((e << 4) + vol); |
e | 91 | include/asm-m68k/unistd.h | #define _syscall5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \ |
e | 92 | include/asm-m68k/unistd.h | type name (atype a,btype b,ctype c,dtype d,etype e) \ |
e | 106 | include/asm-m68k/unistd.h | "g" ((long)(e)) \ |
e | 1255 | include/asm-mips/unistd.h | #define _syscall5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \ |
e | 1256 | include/asm-mips/unistd.h | type name (atype a,btype b,ctype c,dtype d,etype e) \ |
e | 1272 | include/asm-mips/unistd.h | "r" ((long)(e)) \ |
e | 246 | include/linux/coff.h | } e; |
e | 247 | include/linux/coff.h | } e; |
e | 126 | include/linux/umsdos_fs.h | #define EDM_ENTRY_ISUSED(e) ((e)->name_len!=0) |
e | 24 | include/net/netlink.h | #define ip_netlink_msg(a,b,c,d,e,f,g) |
e | 125 | lib/inflate.c | uch e; /* number of extra bits or operation */ |
e | 268 | lib/inflate.c | STATIC int huft_build(b, n, s, d, e, t, m) |
e | 273 | lib/inflate.c | ush *e; /* list of extra bits for non-simple codes */ |
e | 431 | lib/inflate.c | r.e = (uch)(16 + j); /* bits in this table */ |
e | 443 | lib/inflate.c | r.e = 99; /* out of values--invalid code */ |
e | 446 | lib/inflate.c | r.e = (uch)(*p < 256 ? 16 : 15); /* 256 is end-of-block code */ |
e | 452 | lib/inflate.c | r.e = (uch)e[*p - s]; /* non-simple--look up in lists */ |
e | 513 | lib/inflate.c | register unsigned e; /* table entry flag/number of extra bits */ |
e | 533 | lib/inflate.c | if ((e = (t = tl + ((unsigned)b & ml))->e) > 16) |
e | 535 | lib/inflate.c | if (e == 99) |
e | 538 | lib/inflate.c | e -= 16; |
e | 539 | lib/inflate.c | NEEDBITS(e) |
e | 540 | lib/inflate.c | } while ((e = (t = t->v.t + ((unsigned)b & mask_bits[e]))->e) > 16); |
e | 542 | lib/inflate.c | if (e == 16) /* then it's a literal */ |
e | 555 | lib/inflate.c | if (e == 15) |
e | 559 | lib/inflate.c | NEEDBITS(e) |
e | 560 | lib/inflate.c | n = t->v.n + ((unsigned)b & mask_bits[e]); |
e | 561 | lib/inflate.c | DUMPBITS(e); |
e | 565 | lib/inflate.c | if ((e = (t = td + ((unsigned)b & md))->e) > 16) |
e | 567 | lib/inflate.c | if (e == 99) |
e | 570 | lib/inflate.c | e -= 16; |
e | 571 | lib/inflate.c | NEEDBITS(e) |
e | 572 | lib/inflate.c | } while ((e = (t = t->v.t + ((unsigned)b & mask_bits[e]))->e) > 16); |
e | 574 | lib/inflate.c | NEEDBITS(e) |
e | 575 | lib/inflate.c | d = w - t->v.n - ((unsigned)b & mask_bits[e]); |
e | 576 | lib/inflate.c | DUMPBITS(e) |
e | 581 | lib/inflate.c | n -= (e = (e = WSIZE - ((d &= WSIZE-1) > w ? d : w)) > n ? n : e); |
e | 583 | lib/inflate.c | if (w - d >= e) /* (this test assumes unsigned comparison) */ |
e | 585 | lib/inflate.c | memcpy(slide + w, slide + d, e); |
e | 586 | lib/inflate.c | w += e; |
e | 587 | lib/inflate.c | d += e; |
e | 594 | lib/inflate.c | } while (--e); |
e | 904 | lib/inflate.c | STATIC int inflate_block(e) |
e | 905 | lib/inflate.c | int *e; /* last block flag */ |
e | 921 | lib/inflate.c | *e = (int)b & 1; |
e | 954 | lib/inflate.c | int e; /* last block flag */ |
e | 970 | lib/inflate.c | if ((r = inflate_block(&e)) != 0) { |
e | 977 | lib/inflate.c | } while (!e); |
e | 1019 | lib/inflate.c | unsigned long e; /* polynomial exclusive-or pattern */ |
e | 1027 | lib/inflate.c | e = 0; |
e | 1029 | lib/inflate.c | e |= 1L << (31 - p[i]); |
e | 1038 | lib/inflate.c | c = c & 1 ? (c >> 1) ^ e : c >> 1; |
e | 1040 | lib/inflate.c | c ^= e; |
e | 362 | mm/vmscan.c | char *revision="$Revision: 1.4.2.2 $", *s, *e; |
e | 389 | mm/vmscan.c | (e = strchr(s, '$'))) |
e | 390 | mm/vmscan.c | s++, i = e - s; |