Symbol: FP_CLS_INF
arch/powerpc/math-emu/fdiv.c
36
if (A_c == FP_CLS_INF && B_c == FP_CLS_INF) {
arch/powerpc/math-emu/fdivs.c
37
if (A_c == FP_CLS_INF && B_c == FP_CLS_INF) {
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/fmadd.c
40
if (T_s != B_s && T_c == FP_CLS_INF && B_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/fmadds.c
41
if (T_s != B_s && T_c == FP_CLS_INF && B_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/fmsub.c
43
if (T_s != B_s && T_c == FP_CLS_INF && B_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/fmsubs.c
44
if (T_s != B_s && T_c == FP_CLS_INF && B_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/fnmadd.c
40
if (T_s != B_s && T_c == FP_CLS_INF && B_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/fnmadds.c
41
if (T_s != B_s && T_c == FP_CLS_INF && B_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/fnmsub.c
43
if (T_s != B_s && T_c == FP_CLS_INF && B_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/fnmsubs.c
44
if (T_s != B_s && T_c == FP_CLS_INF && B_c == FP_CLS_INF)
arch/powerpc/math-emu/fsub.c
33
if (A_s != B_s && A_c == FP_CLS_INF && B_c == FP_CLS_INF)
arch/powerpc/math-emu/fsubs.c
34
if (A_s != B_s && A_c == FP_CLS_INF && B_c == FP_CLS_INF)
include/math-emu/op-common.h
110
X##_c = FP_CLS_INF; \
include/math-emu/op-common.h
113
if (!X##_s) X##_c = FP_CLS_INF; \
include/math-emu/op-common.h
116
if (X##_s) X##_c = FP_CLS_INF; \
include/math-emu/op-common.h
119
if (X##_c == FP_CLS_INF) \
include/math-emu/op-common.h
188
case FP_CLS_INF: \
include/math-emu/op-common.h
313
case _FP_CLS_COMBINE(FP_CLS_NAN,FP_CLS_INF): \
include/math-emu/op-common.h
324
case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_NAN): \
include/math-emu/op-common.h
331
case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_INF): \
include/math-emu/op-common.h
343
case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_NORMAL): \
include/math-emu/op-common.h
344
case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_ZERO): \
include/math-emu/op-common.h
346
R##_c = FP_CLS_INF; \
include/math-emu/op-common.h
349
case _FP_CLS_COMBINE(FP_CLS_NORMAL,FP_CLS_INF): \
include/math-emu/op-common.h
350
case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_INF): \
include/math-emu/op-common.h
352
R##_c = FP_CLS_INF; \
include/math-emu/op-common.h
417
case _FP_CLS_COMBINE(FP_CLS_NAN,FP_CLS_INF): \
include/math-emu/op-common.h
422
case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_INF): \
include/math-emu/op-common.h
423
case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_NORMAL): \
include/math-emu/op-common.h
431
case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_NAN): \
include/math-emu/op-common.h
436
case _FP_CLS_COMBINE(FP_CLS_NORMAL,FP_CLS_INF): \
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
477
case _FP_CLS_COMBINE(FP_CLS_NAN,FP_CLS_INF): \
include/math-emu/op-common.h
485
case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_NAN): \
include/math-emu/op-common.h
492
case _FP_CLS_COMBINE(FP_CLS_NORMAL,FP_CLS_INF): \
include/math-emu/op-common.h
493
case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_INF): \
include/math-emu/op-common.h
501
case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_ZERO): \
include/math-emu/op-common.h
502
case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_NORMAL): \
include/math-emu/op-common.h
503
R##_c = FP_CLS_INF; \
include/math-emu/op-common.h
506
case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_INF): \
include/math-emu/op-common.h
602
case FP_CLS_INF: \
include/math-emu/op-common.h
613
R##_c = FP_CLS_INF; /* sqrt(+inf) = +inf */ \
include/math-emu/op-common.h
674
case FP_CLS_INF: \
include/math-emu/op-common.h
70
X##_c = FP_CLS_INF; \
include/math-emu/op-common.h
774
case FP_CLS_INF: \