Lines Matching defs:NPQ
135 APInt NPQ = Numerator - Q;
137 // For vectors we might have a mix of non-NPQ/NPQ paths, so use
138 // MULHU to act as a SRL-by-1 for NPQ, else multiply by zero.
139 APInt NPQ_Scalar = NPQ.lshr(1);
141 NPQ = MULHU(NPQ, NPQFactor);
142 assert(!UseNPQ || NPQ == NPQ_Scalar);
144 Q = NPQ + Q;
179 << AllowEvenDivisorOptimization << ", force NPQ = "