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

  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ConditionOptimizer.cpp 247 // CMN (compare with negative immediate) is an alias to ADDS (as
248 // "operand - negative" == "operand + positive")
249 bool Negative = (Opc == AArch64::ADDSWri || Opc == AArch64::ADDSXri);
252 // Negate Correction value for comparison with negative immediate (CMN).
253 if (Negative) {
262 if (OldImm == 0 && ((Negative && Correction == 1) ||
263 (!Negative && Correction == -1))) {
  /src/external/mit/isl/dist/doc/
implementation.tex 146 with $\vec K_i$ the (component-wise) smallest non-negative integer vectors
197 between the variables $\vec x$ and non-negative variables
210 is assigned a non-negative value, i.e., if the constant terms of
211 rows corresponding to constraints are all non-negative.
218 $r = -n + \sum_i a_i \, c_i$ with negative
230 If we assume that all variables are non-negative, then we know
257 negative and/or positive values over the current set of possible
259 If all these terms can only attain non-negative values, the current
264 and negative values and split the context into a part where
265 it only attains non-negative values and a part where it only attain
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/FileCheck/
FileCheckImpl.h 124 bool Negative;
128 explicit ExpressionValue(T Val) : Value(Val), Negative(Val < 0) {}
138 /// Returns true if value is signed and negative, false otherwise.
140 assert((Value != 0 || !Negative) && "Unexpected negative zero!");
141 return Negative;

Completed in 29 milliseconds