Lines Matching refs:PartialCheck
8506 if (FPClassTest PartialCheck = Test & (fcZero | fcSubnormal)) { in expandIS_FPCLASS() local
8509 if (PartialCheck == (fcZero | fcSubnormal)) { in expandIS_FPCLASS()
8514 Test &= ~PartialCheck & fcAllFlags; in expandIS_FPCLASS()
8520 if (unsigned PartialCheck = Test & fcZero) { in expandIS_FPCLASS() local
8521 if (PartialCheck == fcPosZero) in expandIS_FPCLASS()
8523 else if (PartialCheck == fcZero) in expandIS_FPCLASS()
8530 if (unsigned PartialCheck = Test & fcSubnormal) { in expandIS_FPCLASS() local
8533 SDValue V = (PartialCheck == fcPosSubnormal) ? OpAsInt : AbsV; in expandIS_FPCLASS()
8538 if (PartialCheck == fcNegSubnormal) in expandIS_FPCLASS()
8543 if (unsigned PartialCheck = Test & fcInf) { in expandIS_FPCLASS() local
8544 if (PartialCheck == fcPosInf) in expandIS_FPCLASS()
8546 else if (PartialCheck == fcInf) in expandIS_FPCLASS()
8556 if (unsigned PartialCheck = Test & fcNan) { in expandIS_FPCLASS() local
8559 if (PartialCheck == fcNan) { in expandIS_FPCLASS()
8572 } else if (PartialCheck == fcQNan) { in expandIS_FPCLASS()
8587 if (unsigned PartialCheck = Test & fcNormal) { in expandIS_FPCLASS() local
8595 if (PartialCheck == fcNegNormal) in expandIS_FPCLASS()
8597 else if (PartialCheck == fcPosNormal) { in expandIS_FPCLASS()