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

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ComparisonCategories.h 69 Greater,
165 return getValueInfo(ComparisonCategoryResult::Greater);
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseTemplate.cpp 451 if (!Tok.is(tok::greater) && !Tok.is(tok::greatergreater)) {
462 Tok.setKind(tok::greater);
465 } else if (!TryConsumeToken(tok::greater, RAngleLoc) && Failed) {
466 Diag(Tok.getLocation(), diag::err_expected) << tok::greater;
491 SkipUntil(tok::comma, tok::greater, tok::greatergreater,
498 } else if (Tok.isOneOf(tok::greater, tok::greatergreater)) {
506 SkipUntil(tok::comma, tok::greater, tok::greatergreater,
523 case tok::greater:
540 case tok::greater:
580 case tok::greater
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
ComparisonCategories.cpp 193 case CCVT::Greater:
194 return "greater";
210 Values.push_back(CCR::Greater);
ExprConstant.cpp 9026 // is known to be greater or equal to the requested value.
9030 // The alignment could be greater than the minimum at run-time, so we cannot
11542 // greater than the requested alignment.
11981 // is lock-free. If the size isn't a power of two, or greater than the
12479 Greater,
12515 return Success(CmpResult::Greater, E);
12531 return Success(CmpResult::Greater, E);
12604 return CmpResult::Greater;
12683 // pointer to the later declared member compares greater provided the
12747 return Success(CmpResult::Greater, E)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCAsmMacro.h 54 Greater, GreaterEqual, GreaterGreater, At, MinusGreater,
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
MCAsmLexer.cpp 74 case AsmToken::Greater: OS << "Greater"; break;
MasmParser.cpp 1861 case AsmToken::Greater:
1933 .CaseLower("gt", AsmToken::Greater)
2872 case AsmToken::Greater:
3507 (EndToken != AsmToken::Greater ||
3676 (EndToken == AsmToken::Greater &&
3807 Lexer.UnLex(AsmToken(AsmToken::Greater, Tok.getString().substr(1)));
3820 Lexer.UnLex(AsmToken(AsmToken::Greater, Tok.getString().substr(1)));
3821 } else if (parseToken(AsmToken::Greater, Msg)) {
3843 if (parseScalarInstList(Field.Type, Values, AsmToken::Greater) ||
3895 if (parseRealInstList(*Semantics, AsIntValues, AsmToken::Greater) ||
    [all...]
AsmParser.cpp 1600 case AsmToken::Greater:
1666 case AsmToken::Greater:
2641 case AsmToken::Greater:
3327 Warning(SizeLoc, "'.fill' directive with size greater than 8 has been truncated to 8");
3659 // The expression must be a constant greater or equal to 0.
5772 return Error(ExprLoc, "literal value not a power of two greater then zero");
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Integral.h 36 return ComparisonCategoryResult::Greater;
Interp.h 247 return R == ComparisonCategoryResult::Greater;
254 return R == ComparisonCategoryResult::Greater ||
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/AsmParser/
BPFAsmParser.cpp 374 case AsmToken::Greater:
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineInternal.h 565 /// the LHS is less than, equal to, or greater than RHS respectively.
567 /// Equal and Greater values are saved in the matching process and returned to
571 ConstantInt *&Greater);
InstCombineCompares.cpp 2521 if (LoOverflow == +1) // Low bound is greater than input range.
2528 if (HiOverflow == +1) // High bound greater than input range.
2674 ConstantInt *&Greater) {
2680 // i32 (select i1 (a < b), i32 Less, i32 Greater)
2681 // where Equal, Less and Greater are placeholders for any three constants.
2696 m_ConstantInt(Less), m_ConstantInt(Greater))))
2718 std::swap(Less, Greater);
3918 // if C1 has greater magnitude than C2:
3922 // if C2 has greater magnitude than C1:
4685 // bits must be not greater than the width of mul.with.overflow
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/config/arm/
ieee754-df.S 1235 movne r0, #0 @ Less than, greater than, or unordered.
1252 movcs r0, #0 @ Equal to, greater than, or unordered.
1268 movhi r0, #0 @ Greater than or unordered.
1284 movhi r0, #0 @ Operand 2 greater than operand 1, or unordered.
1300 movcs r0, #0 @ Operand 2 is greater than or equal to operand 1,
ieee754-sf.S 779 @ 1 if the first operand is greater than the second, or
920 movne r0, #0 @ Less than, greater than, or unordered.
936 movcs r0, #0 @ Equal to, greater than, or unordered.
952 movhi r0, #0 @ Greater than or unordered.
968 movhi r0, #0 @ Operand 2 greater than operand 1, or unordered.
984 movcs r0, #0 @ Operand 2 is greater than or equal to operand 1,
  /src/external/gpl3/gcc.old/dist/libgcc/config/arm/
ieee754-df.S 1235 movne r0, #0 @ Less than, greater than, or unordered.
1252 movcs r0, #0 @ Equal to, greater than, or unordered.
1268 movhi r0, #0 @ Greater than or unordered.
1284 movhi r0, #0 @ Operand 2 greater than operand 1, or unordered.
1300 movcs r0, #0 @ Operand 2 is greater than or equal to operand 1,
ieee754-sf.S 779 @ 1 if the first operand is greater than the second, or
920 movne r0, #0 @ Less than, greater than, or unordered.
936 movcs r0, #0 @ Equal to, greater than, or unordered.
952 movhi r0, #0 @ Greater than or unordered.
968 movhi r0, #0 @ Operand 2 greater than operand 1, or unordered.
984 movcs r0, #0 @ Operand 2 is greater than or equal to operand 1,
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaOverload.cpp 2096 // with lowest integer conversion rank (4.13) greater than the rank of long
4899 // cv-qualification as, or greater cv-qualification than,
4902 // If cv1 == cv2 or cv1 is a greater cv-qualified than cv2, then
13916 ExprResult Greater;
13918 Greater = CreateOverloadedBinOp(OpLoc, BO_LT, Fns, RHS, LHS, true, true,
13920 if (Greater.isInvalid())
13932 {Greater, ComparisonCategoryResult::Greater},
14490 // greater cv-qualification than, cv, and where conversion-type-id
SemaTemplate.cpp 619 SourceLocation Greater) {
661 << "" << NameInfo.getName().getAsString() << SourceRange(Less, Greater);
714 << Name << SourceRange(Less, Greater);
SemaChecking.cpp 1710 // greater than 0. When `size` is value dependent we cannot evaluate its
6428 /// as (size_t, size_t) where the second size_t must be a power of 2 greater
11248 Greater = GE | GT | NE,
11273 case 1: return Greater;
11288 if (R & GTFlag) return StringRef("'std::strong_ordering::greater'");
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 2591 SourceLocation Greater);
11943 /// functions to be __host__ __device__. So long as this count is greater

Completed in 94 milliseconds