Lines Matching refs:PartialCheck
8710 if (FPClassTest PartialCheck = Test & (fcZero | fcSubnormal)) { in expandIS_FPCLASS() local
8713 if (PartialCheck == (fcZero | fcSubnormal)) { in expandIS_FPCLASS()
8718 Test &= ~PartialCheck & fcAllFlags; in expandIS_FPCLASS()
8724 if (unsigned PartialCheck = Test & fcZero) { in expandIS_FPCLASS() local
8725 if (PartialCheck == fcPosZero) in expandIS_FPCLASS()
8727 else if (PartialCheck == fcZero) in expandIS_FPCLASS()
8734 if (unsigned PartialCheck = Test & fcSubnormal) { in expandIS_FPCLASS() local
8737 SDValue V = (PartialCheck == fcPosSubnormal) ? OpAsInt : AbsV; in expandIS_FPCLASS()
8742 if (PartialCheck == fcNegSubnormal) in expandIS_FPCLASS()
8747 if (unsigned PartialCheck = Test & fcInf) { in expandIS_FPCLASS() local
8748 if (PartialCheck == fcPosInf) in expandIS_FPCLASS()
8750 else if (PartialCheck == fcInf) in expandIS_FPCLASS()
8760 if (unsigned PartialCheck = Test & fcNan) { in expandIS_FPCLASS() local
8763 if (PartialCheck == fcNan) { in expandIS_FPCLASS()
8776 } else if (PartialCheck == fcQNan) { in expandIS_FPCLASS()
8791 if (unsigned PartialCheck = Test & fcNormal) { in expandIS_FPCLASS() local
8799 if (PartialCheck == fcNegNormal) in expandIS_FPCLASS()
8801 else if (PartialCheck == fcPosNormal) { in expandIS_FPCLASS()