Symbol: ieee754dp_zero
arch/mips/math-emu/dp_add.c
153
return ieee754dp_zero(ieee754_csr.rm == FPU_CSR_RD);
arch/mips/math-emu/dp_add.c
83
return ieee754dp_zero(ieee754_csr.rm == FPU_CSR_RD);
arch/mips/math-emu/dp_div.c
69
return ieee754dp_zero(xs ^ ys);
arch/mips/math-emu/dp_div.c
90
return ieee754dp_zero(xs == ys ? 0 : 1);
arch/mips/math-emu/dp_fint.c
21
return ieee754dp_zero(0);
arch/mips/math-emu/dp_flong.c
21
return ieee754dp_zero(0);
arch/mips/math-emu/dp_fmax.c
220
return ieee754dp_zero(xs & ys);
arch/mips/math-emu/dp_fmax.c
92
return ieee754dp_zero(xs & ys);
arch/mips/math-emu/dp_fmin.c
220
return ieee754dp_zero(xs | ys);
arch/mips/math-emu/dp_fmin.c
92
return ieee754dp_zero(xs | ys);
arch/mips/math-emu/dp_fsp.c
40
return ieee754dp_zero(xs);
arch/mips/math-emu/dp_maddf.c
146
return ieee754dp_zero(ieee754_csr.rm == FPU_CSR_RD);
arch/mips/math-emu/dp_maddf.c
283
return ieee754dp_zero(ieee754_csr.rm == FPU_CSR_RD);
arch/mips/math-emu/dp_mul.c
87
return ieee754dp_zero(xs ^ ys);
arch/mips/math-emu/dp_simple.c
24
y = ieee754dp_sub(ieee754dp_zero(0), x);
arch/mips/math-emu/dp_simple.c
43
y = ieee754dp_sub(ieee754dp_zero(0), x);
arch/mips/math-emu/dp_simple.c
45
y = ieee754dp_add(ieee754dp_zero(0), x);
arch/mips/math-emu/dp_sub.c
158
return ieee754dp_zero(1); /* round negative inf. => sign = -1 */
arch/mips/math-emu/dp_sub.c
160
return ieee754dp_zero(0); /* other round modes => sign = 1 */
arch/mips/math-emu/dp_sub.c
83
return ieee754dp_zero(ieee754_csr.rm == FPU_CSR_RD);
arch/mips/math-emu/ieee754dp.c
105
return ieee754dp_zero(sn);
arch/mips/math-emu/ieee754dp.c
110
return ieee754dp_zero(1);
arch/mips/math-emu/ieee754dp.c
113
return ieee754dp_zero(0);
arch/mips/math-emu/ieee754int.h
127
v = ieee754dp_zero(vs); \