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

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
fallible_iterator.h 153 /// non-end-of-range values whose underlying iterator values compare equal.
165 // equal, regardless of whether either is valid.
172 bool Equal = LHS.I == RHS.I;
176 if (!Equal) {
183 return Equal;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 31 Value *Equal = Builder.CreateICmpEQ(Orig, Cmp);
32 Value *Res = Builder.CreateSelect(Equal, Val, Orig);
36 Res = Builder.CreateInsertValue(Res, Equal, 1);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ComparisonCategories.h 66 Equal,
153 if (!isStrong() && Res == CCR::Equal)
159 return getValueInfo(makeWeakResult(ComparisonCategoryResult::Equal));
  /src/external/apache2/llvm/dist/clang/lib/Format/
FormatTokenLexer.cpp 100 static const tok::TokenKind FatArrow[] = {tok::equal, tok::greater};
141 static const tok::TokenKind JSIdentity[] = {tok::equalequal, tok::equal};
143 tok::equal};
149 static const tok::TokenKind JSPipePipeEqual[] = {tok::pipepipe, tok::equal};
150 static const tok::TokenKind JSAndAndEqual[] = {tok::ampamp, tok::equal};
168 Tokens.back()->Tok.setKind(tok::equal);
322 auto &Equal = *(Tokens.end() - 1);
324 !Equal->is(tok::equal))
326 NullishCoalescing->Tok.setKind(tok::equal); // no '??=' in clang tokens
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Object/
COFFModuleDefinition.cpp 38 Equal,
111 return Token(Equal, "=");
234 if (Tok.K == Equal) {
326 if (Error Err = expect(Equal, "'=' expected"))
  /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/hwmgr/
ppevvmath.h 72 static bool Equal(fInt, fInt); /* Returns true if two fInts are equal to each other */
318 static bool Equal(fInt A, fInt B)
365 if (Equal(Y, fZERO))
410 if (GreaterThan(fZERO, num) || Equal(fZERO, num))
426 if (Equal(num, fZERO)) /*Square Root of Zero is zero */
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCAsmMacro.h 49 Star, Dot, Comma, Dollar, Equal, EqualEqual,
  /src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
PerfReader.h 104 // Hash equal
105 struct Equal {
195 Hashable<PerfSample>::Hash, Hashable<PerfSample>::Equal>;
344 return std::equal(Probes.begin(), Probes.end(), O->Probes.begin(),
381 Hashable<ContextKey>::Hash, Hashable<ContextKey>::Equal>;
  /src/sys/arch/hppa/spmath/
float.h 485 #define Equal(cond) Equalbit(cond)
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseDecl.cpp 627 if (!NextToken().is(tok::equal))
635 if (!TryConsumeToken(tok::equal)) {
1126 if (Tok.isNot(tok::equal)) {
1127 Diag(Tok, diag::err_expected_after) << Keyword << tok::equal; member in class:tok
1309 if (ExpectAndConsume(tok::equal, diag::err_expected_after,
1836 case tok::equal:
2001 if (Tok.is(tok::equal) && NextToken().is(tok::code_completion)) {
2243 enum class InitKind { Uninitialized, Equal, CXXDirect, CXXBraced };
2247 TheInitKind = InitKind::Equal;
2322 case InitKind::Equal:
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 994 // though such pointers cannot alias, they can still compare equal.
1068 // so the values can never be equal. Similarly for all other "or equals"
1166 // Shifting const2 will never be equal to const1.
1205 // Shifting const2 will never be equal to const1.
2412 // Determine if the product overflows by seeing if the product is not equal to
2673 ConstantInt *&Equal,
2679 // i32 Equal,
2681 // where Equal, Less and Greater are placeholders for any three constants.
2691 if (!match(EqualVal, m_ConstantInt(Equal)))
3462 // The shift amount must be equal
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 1460 Equal,
3093 "none should be equal to zero");
12826 /// or equal alignment requirements. If so it removes it. This is used when
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 1829 // If N has two operands, where one has an input chain equal to the other,
5350 // Use LE to convert equal sized loads to zext.
5366 // We can accept extending nodes if the mask is wider or an equal
8668 // if c1 is equal to the number of bits the trunc removes
14934 // SRL constant is equal to the log2 of the AND constant. The back-end is
14985 bool Equal = false;
14992 Equal = true;
15000 Equal ? ISD::SETEQ : ISD::SETNE);
16512 // legal (or custom) and the store size should be equal to the NewVT width.
18109 // Lo and Hi are zero-extended from int with size less equal than 3
    [all...]

Completed in 201 milliseconds