Home | History | Annotate | Download | only in InstCombine

Lines Matching full:ntz

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