HomeSort by: relevance | last modified time | path
    Searched refs:NonNegative (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SeparateConstOffsetFromGEP.cpp 263 /// \p NonNegative Whether V is guaranteed to be non-negative. For example,
267 APInt find(Value *V, bool SignExtended, bool ZeroExtended, bool NonNegative);
320 /// \p NonNegative Whether BO is known to be non-negative, e.g., an in-bound
323 bool NonNegative);
506 bool NonNegative) {
536 if (BO->getOpcode() == Instruction::Add && !ZeroExtended && NonNegative) {
575 // non-negative. Clear the NonNegative flag here.
577 /* NonNegative */ false);
590 /* NonNegative */ false);
604 bool ZeroExtended, bool NonNegative) {
    [all...]
CorrelatedValuePropagation.cpp 660 enum class Domain { NonNegative, NonPositive, Unknown };
664 return Domain::NonNegative;
792 if (Op.D == Domain::NonNegative)
848 if (Op.D == Domain::NonNegative)
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 10653 /// sign bit if !NonNegative.
10659 bool NonNegative;
10661 IntRange(unsigned Width, bool NonNegative)
10662 : Width(Width), NonNegative(NonNegative) {}
10666 return NonNegative ? Width : Width - 1;
10709 return IntRange(NumPositive, true/*NonNegative*/);
10712 false/*NonNegative*/);
10752 bool Unsigned = L.NonNegative && R.NonNegative;
    [all...]

Completed in 75 milliseconds