Lines Matching defs:PartialCheck
9145 if (FPClassTest PartialCheck = Mask & (fcZero | fcSubnormal)) {
9149 if (PartialCheck == (fcZero | fcSubnormal)) {
9153 Mask &= ~PartialCheck;
9158 if (FPClassTest PartialCheck = Mask & fcZero) {
9159 if (PartialCheck == fcPosZero)
9162 else if (PartialCheck == fcZero)
9170 if (FPClassTest PartialCheck = Mask & fcSubnormal) {
9173 auto V = (PartialCheck == fcPosSubnormal) ? AsInt : Abs;
9179 if (PartialCheck == fcNegSubnormal)
9184 if (FPClassTest PartialCheck = Mask & fcInf) {
9185 if (PartialCheck == fcPosInf)
9188 else if (PartialCheck == fcInf)
9199 if (FPClassTest PartialCheck = Mask & fcNan) {
9201 if (PartialCheck == fcNan) {
9205 } else if (PartialCheck == fcQNan) {
9220 if (FPClassTest PartialCheck = Mask & fcNormal) {
9230 if (PartialCheck == fcNegNormal)
9232 else if (PartialCheck == fcPosNormal) {