Home | History | Annotate | Download | only in Scalar

Lines Matching refs:Threshold

400     // Any weight W >= Threshold can be replaced with W - CM.
401 APInt Threshold = CM + Bitwidth;
402 assert(LHS.ult(Threshold) && RHS.ult(Threshold) && "Weights not reduced!");
405 while (LHS.uge(Threshold))
411 unsigned Threshold = CM + Bitwidth;
412 assert(LHS.getZExtValue() < Threshold && RHS.getZExtValue() < Threshold &&
415 while (Total >= Threshold)