Lines Matching defs:PartialCheck
8368 if (FPClassTest PartialCheck = Mask & (fcZero | fcSubnormal)) {
8372 if (PartialCheck == (fcZero | fcSubnormal)) {
8376 Mask &= ~PartialCheck;
8381 if (FPClassTest PartialCheck = Mask & fcZero) {
8382 if (PartialCheck == fcPosZero)
8385 else if (PartialCheck == fcZero)
8393 if (FPClassTest PartialCheck = Mask & fcSubnormal) {
8396 auto V = (PartialCheck == fcPosSubnormal) ? AsInt : Abs;
8402 if (PartialCheck == fcNegSubnormal)
8407 if (FPClassTest PartialCheck = Mask & fcInf) {
8408 if (PartialCheck == fcPosInf)
8411 else if (PartialCheck == fcInf)
8422 if (FPClassTest PartialCheck = Mask & fcNan) {
8424 if (PartialCheck == fcNan) {
8428 } else if (PartialCheck == fcQNan) {
8443 if (FPClassTest PartialCheck = Mask & fcNormal) {
8453 if (PartialCheck == fcNegNormal)
8455 else if (PartialCheck == fcPosNormal) {