Lines Matching defs:PartialCheck
8963 if (FPClassTest PartialCheck = Test & (fcZero | fcSubnormal)) {
8966 if (PartialCheck == (fcZero | fcSubnormal)) {
8971 Test &= ~PartialCheck & fcAllFlags;
8977 if (unsigned PartialCheck = Test & fcZero) {
8978 if (PartialCheck == fcPosZero)
8980 else if (PartialCheck == fcZero)
8987 if (unsigned PartialCheck = Test & fcSubnormal) {
8990 SDValue V = (PartialCheck == fcPosSubnormal) ? OpAsInt : AbsV;
8995 if (PartialCheck == fcNegSubnormal)
9000 if (unsigned PartialCheck = Test & fcInf) {
9001 if (PartialCheck == fcPosInf)
9003 else if (PartialCheck == fcInf)
9013 if (unsigned PartialCheck = Test & fcNan) {
9016 if (PartialCheck == fcNan) {
9029 } else if (PartialCheck == fcQNan) {
9044 if (unsigned PartialCheck = Test & fcNormal) {
9052 if (PartialCheck == fcNegNormal)
9054 else if (PartialCheck == fcPosNormal) {