Symbol: DP_HIDDEN_BIT
arch/mips/math-emu/dp_add.c
107
assert(xm & DP_HIDDEN_BIT);
arch/mips/math-emu/dp_add.c
108
assert(ym & DP_HIDDEN_BIT);
arch/mips/math-emu/dp_div.c
106
assert(xm & DP_HIDDEN_BIT);
arch/mips/math-emu/dp_div.c
107
assert(ym & DP_HIDDEN_BIT);
arch/mips/math-emu/dp_fint.c
43
return builddp(xs, xe + DP_EBIAS, xm & ~DP_HIDDEN_BIT);
arch/mips/math-emu/dp_fmax.c
107
assert(xm & DP_HIDDEN_BIT);
arch/mips/math-emu/dp_fmax.c
108
assert(ym & DP_HIDDEN_BIT);
arch/mips/math-emu/dp_fmax.c
235
assert(xm & DP_HIDDEN_BIT);
arch/mips/math-emu/dp_fmax.c
236
assert(ym & DP_HIDDEN_BIT);
arch/mips/math-emu/dp_fmin.c
107
assert(xm & DP_HIDDEN_BIT);
arch/mips/math-emu/dp_fmin.c
108
assert(ym & DP_HIDDEN_BIT);
arch/mips/math-emu/dp_fmin.c
235
assert(xm & DP_HIDDEN_BIT);
arch/mips/math-emu/dp_fmin.c
236
assert(ym & DP_HIDDEN_BIT);
arch/mips/math-emu/dp_maddf.c
181
assert(xm & DP_HIDDEN_BIT);
arch/mips/math-emu/dp_maddf.c
182
assert(ym & DP_HIDDEN_BIT);
arch/mips/math-emu/dp_mul.c
105
assert(xm & DP_HIDDEN_BIT);
arch/mips/math-emu/dp_mul.c
106
assert(ym & DP_HIDDEN_BIT);
arch/mips/math-emu/dp_mul.c
156
assert(rm & (DP_HIDDEN_BIT << 3));
arch/mips/math-emu/dp_sqrt.c
81
x = builddp(0, xe + DP_EBIAS, xm & ~DP_HIDDEN_BIT);
arch/mips/math-emu/dp_sub.c
114
assert(xm & DP_HIDDEN_BIT);
arch/mips/math-emu/dp_sub.c
115
assert(ym & DP_HIDDEN_BIT);
arch/mips/math-emu/dp_tlong.c
45
if (xe == 63 && xs && xm == DP_HIDDEN_BIT)
arch/mips/math-emu/ieee754dp.c
135
assert((xm & (DP_HIDDEN_BIT << 3)) == 0);
arch/mips/math-emu/ieee754dp.c
141
if ((xm & (DP_HIDDEN_BIT << 3)) == 0) {
arch/mips/math-emu/ieee754dp.c
185
if ((xm & DP_HIDDEN_BIT) == 0) {
arch/mips/math-emu/ieee754dp.c
193
assert(xm & DP_HIDDEN_BIT);
arch/mips/math-emu/ieee754dp.c
195
return builddp(sn, xe + DP_EBIAS, xm & ~DP_HIDDEN_BIT);
arch/mips/math-emu/ieee754dp.c
92
assert(xm & (DP_HIDDEN_BIT << 3));
arch/mips/math-emu/ieee754int.h
112
vm |= DP_HIDDEN_BIT; \