Searched refs:xe (Results 1 - 25 of 222) sorted by relevance

123456789

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/math-emu/
H A Ddp_modf.c54 if (xe < 0) {
58 if (xe >= DP_MBITS) {
64 *ip = builddp(xs, xe + DP_EBIAS,
65 ((xm >> (DP_MBITS - xe)) << (DP_MBITS - xe)) &
71 xm = (xm << (64 - (DP_MBITS - xe))) >> (64 - (DP_MBITS - xe));
77 xe--;
79 return builddp(xs, xe + DP_EBIAS, xm & ~DP_HIDDEN_BIT);
H A Dsp_modf.c54 if (xe < 0) {
58 if (xe >= SP_MBITS) {
64 *ip = buildsp(xs, xe + SP_EBIAS,
65 ((xm >> (SP_MBITS - xe)) << (SP_MBITS - xe)) &
71 xm = (xm << (32 - (SP_MBITS - xe))) >> (32 - (SP_MBITS - xe));
77 xe--;
79 return buildsp(xs, xe + SP_EBIAS, xm & ~SP_HIDDEN_BIT);
H A Ddp_fint.c33 int xe; local
56 xe = DP_MBITS;
59 xe--;
61 return builddp(xs, xe + DP_EBIAS, xm & ~DP_HIDDEN_BIT);
H A Dsp_fint.c33 int xe; local
54 xe = SP_MBITS + 3;
67 xe--;
70 SPNORMRET1(xs, xe, xm, "fint", x);
H A Ddp_tlong.c51 if (xe >= 63) {
53 if (xe == 63 && xs && xm == DP_HIDDEN_BIT)
61 if (xe > DP_MBITS) {
62 xm <<= xe - DP_MBITS;
63 } else if (xe < DP_MBITS) {
69 if (xe < -1) {
77 * so we do it in two steps. Be aware that xe
79 residue = xm << (xe + 1);
83 xm >>= DP_MBITS - xe;
H A Dsp_tlong.c51 if (xe >= 63) {
53 if (xe == 63 && xs && xm == SP_HIDDEN_BIT)
61 if (xe > SP_MBITS) {
62 xm <<= xe - SP_MBITS;
63 } else if (xe < SP_MBITS) {
69 if (xe < -1) {
76 residue = xm << (32 - SP_MBITS + xe);
79 xm >>= SP_MBITS - xe;
H A Dsp_add.c130 if (xe > ye) {
133 int s = xe - ye;
135 } else if (ye > xe) {
138 int s = ye - xe;
141 assert(xe == ye);
142 assert(xe <= SP_EMAX);
146 * leaving result in xm,xs,xe
149 xe = xe;
158 xe
[all...]
H A Ddp_tint.c52 if (xe > 31) {
59 if (xe > DP_MBITS) {
60 xm <<= xe - DP_MBITS;
61 } else if (xe < DP_MBITS) {
67 if (xe < -1) {
74 residue = xm << (64 - DP_MBITS + xe);
77 xm >>= DP_MBITS - xe;
H A Dsp_tint.c52 if (xe >= 31) {
54 if (xe == 31 && xs && xm == SP_HIDDEN_BIT)
62 if (xe > SP_MBITS) {
63 xm <<= xe - SP_MBITS;
70 if (xe < -1) {
78 * so we do it in two steps. Be aware that xe
80 residue = xm << (xe + 1);
84 xm >>= SP_MBITS - xe;
H A Ddp_add.c133 if (xe > ye) {
136 int s = xe - ye;
139 } else if (ye > xe) {
142 int s = ye - xe;
144 xe += s;
146 assert(xe == ye);
147 assert(xe <= DP_EMAX);
151 * leaving result in xm,xs,xe
154 xe = xe;
[all...]
H A Ddp_flong.c33 int xe; local
56 xe = DP_MBITS + 3;
66 xe--;
69 DPNORMRET1(xs, xe, xm, "dp_flong", x);
H A Ddp_sub.c121 /* normalize xm,xe */
139 if (xe > ye) {
142 int s = xe - ye;
145 } else if (ye > xe) {
148 int s = ye - xe;
150 xe += s;
152 assert(xe == ye);
153 assert(xe <= DP_EMAX);
159 xe = xe;
[all...]
H A Dsp_flong.c33 int xe; local
54 xe = SP_MBITS + 3;
66 xe--;
69 SPNORMRET1(xs, xe, xm, "sp_flong", x);
H A Dsp_sub.c136 if (xe > ye) {
139 int s = xe - ye;
141 } else if (ye > xe) {
144 int s = ye - xe;
147 assert(xe == ye);
148 assert(xe <= SP_EMAX);
154 xe = xe;
163 xe = xe;
[all...]
H A Dieee754dp.c129 * xe is an unbiased exponent
132 ieee754dp ieee754dp_format(int sn, int xe, u64 xm) argument
139 if (xe < DP_EMIN) {
141 int es = DP_EMIN - xe;
165 if (xe == DP_EMIN - 1
174 xe++;
180 xe += es;
182 assert(xe == DP_EMIN);
199 xe++;
206 assert(xe >
[all...]
H A Ddp_fsp.c59 xe--;
72 return builddp(xs, xe + DP_EBIAS,
H A Dieee754sp.c130 * xe is an unbiased exponent
133 ieee754sp ieee754sp_format(int sn, int xe, unsigned xm) argument
140 if (xe < SP_EMIN) {
142 int es = SP_EMIN - xe;
166 if (xe == SP_EMIN - 1
175 xe++;
182 assert(xe == SP_EMIN);
199 xe++;
206 assert(xe >= SP_EMIN);
208 if (xe > SP_EMA
[all...]
H A Ddp_frexp.c51 *eptr = xe + 1;
H A Ddp_logb.c53 return ieee754dp_fint(xe);
H A Dsp_frexp.c51 *eptr = xe + 1;
H A Dsp_logb.c53 return ieee754sp_fint(xe);
H A Ddp_scalb.c51 DPNORMRET2(xs, xe + n, xm << 3, "scalb", x, n);
H A Dsp_scalb.c51 SPNORMRET2(xs, xe + n, xm << 3, "scalb", x, n);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/isa/wavefront/
H A Dyss225.c26 { WAIT_IDLE }, { 0xe, 0x10 }, { 0xf, 0x00 },
27 { WAIT_IDLE }, { 0xe, 0x11 }, { 0xf, 0x00 },
28 { WAIT_IDLE }, { 0xe, 0x12 }, { 0xf, 0x00 },
29 { WAIT_IDLE }, { 0xe, 0x13 }, { 0xf, 0x00 },
30 { WAIT_IDLE }, { 0xe, 0x14 }, { 0xf, 0x00 },
31 { WAIT_IDLE }, { 0xe, 0x15 }, { 0xf, 0x00 },
32 { WAIT_IDLE }, { 0xe, 0x16 }, { 0xf, 0x00 },
33 { WAIT_IDLE }, { 0xe, 0x17 }, { 0xf, 0x00 },
34 { WAIT_IDLE }, { 0xe, 0x18 }, { 0xf, 0x00 },
35 { WAIT_IDLE }, { 0xe,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dtiocl.h16 unsigned short xe; /* X end */ member in struct:tiocl_selection

Completed in 82 milliseconds

123456789