Home | History | Annotate | Download | only in InstCombine

Lines Matching full:ntz

784         unsigned NTZ = DemandedMask.countTrailingZeros();
786 // Round NTZ down to the next byte. If we have 11 trailing zeros, then
790 NTZ &= ~7;
792 if (BitWidth-NLZ-NTZ == 8) {
793 unsigned ResultBit = NTZ;
794 unsigned InputBit = BitWidth-NTZ-8;