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