Searched defs:NonNegative (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DSeparateConstOffsetFromGEP.cpp147 /// \p NonNegative Whether V is guaranteed to be non-negative. For example,
151 APInt find(Value *V, bool SignExtended, bool ZeroExtended, bool NonNegative);
205 /// \p NonNegative Whether BO is known to be non-negative, e.g., an in-bound
208 bool NonNegative);
316 bool NonNegative) {
343 if (BO->getOpcode() == Instruction::Add && !ZeroExtended && NonNegative) {
379 // non-negative. Clear the NonNegative flag here.
381 /* NonNegative */ false);
389 /* NonNegative */ false);
398 bool ZeroExtended, bool NonNegative) {
313 CanTraceInto(bool SignExtended, bool ZeroExtended, BinaryOperator *BO, bool NonNegative) argument
397 find(Value *V, bool SignExtended, bool ZeroExtended, bool NonNegative) argument
[all...]
/external/clang/lib/Sema/
H A DSemaChecking.cpp4891 bool NonNegative; member in struct:__anon18010::IntRange
4893 IntRange(unsigned Width, bool NonNegative) argument
4894 : Width(Width), NonNegative(NonNegative)
4927 return IntRange(NumPositive, true/*NonNegative*/);
4930 false/*NonNegative*/);
4963 L.NonNegative && R.NonNegative);
4969 L.NonNegative || R.NonNegative);
[all...]

Completed in 205 milliseconds