Symbol: FP_CLS_ZERO
arch/powerpc/math-emu/fdiv.c
30
if (A_c == FP_CLS_ZERO && B_c == FP_CLS_ZERO) {
arch/powerpc/math-emu/fdiv.c
43
if (B_c == FP_CLS_ZERO && A_c != FP_CLS_ZERO) {
arch/powerpc/math-emu/fdivs.c
31
if (A_c == FP_CLS_ZERO && B_c == FP_CLS_ZERO) {
arch/powerpc/math-emu/fdivs.c
44
if (B_c == FP_CLS_ZERO && A_c != FP_CLS_ZERO) {
arch/powerpc/math-emu/fmadd.c
34
if ((A_c == FP_CLS_INF && C_c == FP_CLS_ZERO) ||
arch/powerpc/math-emu/fmadd.c
35
(A_c == FP_CLS_ZERO && C_c == FP_CLS_INF))
arch/powerpc/math-emu/fmadds.c
35
if ((A_c == FP_CLS_INF && C_c == FP_CLS_ZERO) ||
arch/powerpc/math-emu/fmadds.c
36
(A_c == FP_CLS_ZERO && C_c == FP_CLS_INF))
arch/powerpc/math-emu/fmsub.c
34
if ((A_c == FP_CLS_INF && C_c == FP_CLS_ZERO) ||
arch/powerpc/math-emu/fmsub.c
35
(A_c == FP_CLS_ZERO && C_c == FP_CLS_INF))
arch/powerpc/math-emu/fmsubs.c
35
if ((A_c == FP_CLS_INF && C_c == FP_CLS_ZERO) ||
arch/powerpc/math-emu/fmsubs.c
36
(A_c == FP_CLS_ZERO && C_c == FP_CLS_INF))
arch/powerpc/math-emu/fmul.c
32
if ((A_c == FP_CLS_INF && B_c == FP_CLS_ZERO) ||
arch/powerpc/math-emu/fmul.c
33
(A_c == FP_CLS_ZERO && B_c == FP_CLS_INF))
arch/powerpc/math-emu/fmuls.c
33
if ((A_c == FP_CLS_INF && B_c == FP_CLS_ZERO) ||
arch/powerpc/math-emu/fmuls.c
34
(A_c == FP_CLS_ZERO && B_c == FP_CLS_INF))
arch/powerpc/math-emu/fnmadd.c
34
if ((A_c == FP_CLS_INF && C_c == FP_CLS_ZERO) ||
arch/powerpc/math-emu/fnmadd.c
35
(A_c == FP_CLS_ZERO && C_c == FP_CLS_INF))
arch/powerpc/math-emu/fnmadds.c
35
if ((A_c == FP_CLS_INF && C_c == FP_CLS_ZERO) ||
arch/powerpc/math-emu/fnmadds.c
36
(A_c == FP_CLS_ZERO && C_c == FP_CLS_INF))
arch/powerpc/math-emu/fnmsub.c
34
if ((A_c == FP_CLS_INF && C_c == FP_CLS_ZERO) ||
arch/powerpc/math-emu/fnmsub.c
35
(A_c == FP_CLS_ZERO && C_c == FP_CLS_INF))
arch/powerpc/math-emu/fnmsubs.c
35
if ((A_c == FP_CLS_INF && C_c == FP_CLS_ZERO) ||
arch/powerpc/math-emu/fnmsubs.c
36
(A_c == FP_CLS_ZERO && C_c == FP_CLS_INF))
arch/powerpc/math-emu/fsel.c
28
if (A_c == FP_CLS_NAN || (A_c != FP_CLS_ZERO && A_s)) {
arch/powerpc/math-emu/fsqrt.c
27
if (B_s && B_c != FP_CLS_ZERO)
arch/powerpc/math-emu/fsqrts.c
28
if (B_s && B_c != FP_CLS_ZERO)
include/math-emu/op-common.h
183
case FP_CLS_ZERO: \
include/math-emu/op-common.h
282
R##_c = FP_CLS_ZERO; \
include/math-emu/op-common.h
309
case _FP_CLS_COMBINE(FP_CLS_NORMAL,FP_CLS_ZERO): \
include/math-emu/op-common.h
314
case _FP_CLS_COMBINE(FP_CLS_NAN,FP_CLS_ZERO): \
include/math-emu/op-common.h
320
case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_NORMAL): \
include/math-emu/op-common.h
325
case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_NAN): \
include/math-emu/op-common.h
344
case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_ZERO): \
include/math-emu/op-common.h
350
case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_INF): \
include/math-emu/op-common.h
355
case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_ZERO): \
include/math-emu/op-common.h
361
R##_c = FP_CLS_ZERO; \
include/math-emu/op-common.h
418
case _FP_CLS_COMBINE(FP_CLS_NAN,FP_CLS_ZERO): \
include/math-emu/op-common.h
424
case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_NORMAL): \
include/math-emu/op-common.h
425
case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_ZERO): \
include/math-emu/op-common.h
432
case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_NAN): \
include/math-emu/op-common.h
437
case _FP_CLS_COMBINE(FP_CLS_NORMAL,FP_CLS_ZERO): \
include/math-emu/op-common.h
442
case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_ZERO): \
include/math-emu/op-common.h
443
case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_INF): \
include/math-emu/op-common.h
478
case _FP_CLS_COMBINE(FP_CLS_NAN,FP_CLS_ZERO): \
include/math-emu/op-common.h
486
case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_NAN): \
include/math-emu/op-common.h
49
X##_c = FP_CLS_ZERO; \
include/math-emu/op-common.h
493
case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_INF): \
include/math-emu/op-common.h
494
case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_NORMAL): \
include/math-emu/op-common.h
495
R##_c = FP_CLS_ZERO; \
include/math-emu/op-common.h
498
case _FP_CLS_COMBINE(FP_CLS_NORMAL,FP_CLS_ZERO): \
include/math-emu/op-common.h
501
case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_ZERO): \
include/math-emu/op-common.h
513
case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_ZERO): \
include/math-emu/op-common.h
616
case FP_CLS_ZERO: \
include/math-emu/op-common.h
618
R##_c = FP_CLS_ZERO; /* sqrt(+-0) = +-0 */ \
include/math-emu/op-common.h
63
X##_c = FP_CLS_ZERO; \
include/math-emu/op-common.h
666
case FP_CLS_ZERO: \
include/math-emu/op-common.h
790
case FP_CLS_ZERO: \
include/math-emu/op-common.h
824
X##_c = FP_CLS_ZERO, X##_s = 0; \