HomeSort by: relevance | last modified time | path
    Searched refs:Equal (Results 1 - 25 of 45) sorted by relevancy

1 2

  /src/sys/arch/hppa/spmath/
sfcmp.c 103 * special equal case */
108 * equal is possible if both operands are zeros. */
112 Set_status_cbit(Equal(cond));
127 Set_status_cbit(Equal(cond));
dfcmp.c 103 * special equal case */
108 * equal is possible if both operands are zeros. */
112 Set_status_cbit(Equal(cond));
127 Set_status_cbit(Equal(cond));
142 /* Equal first parts. Now we must use unsigned compares to
169 /* Equal first parts. Now we must use unsigned compares to
float.h 485 #define Equal(cond) Equalbit(cond)
  /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/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/Object/
COFFModuleDefinition.cpp 38 Equal,
111 return Token(Equal, "=");
234 if (Tok.K == Equal) {
326 if (Error Err = expect(Equal, "'=' expected"))
  /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/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/clang/lib/AST/
ComparisonCategories.cpp 187 case CCVT::Equal:
188 return "equal";
208 Values.push_back(IsStrong ? CCR::Equal : CCR::Equivalent);
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCAsmMacro.h 49 Star, Dot, Comma, Dollar, Equal, EqualEqual,
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
MCAsmLexer.cpp 70 case AsmToken::Equal: OS << "Equal"; break;
COFFMasmParser.cpp 379 if (getParser().parseToken(AsmToken::Equal))
AsmLexer.cpp 843 return AsmToken(AsmToken::Equal, StringRef(TokStart, 1));
AsmParser.cpp 1955 case AsmToken::Equal:
2628 case AsmToken::Equal:
2685 if (Lexer.is(AsmToken::Eof) || Lexer.is(AsmToken::Equal))
2757 if (Lexer.is(AsmToken::Identifier) && Lexer.peekTok().is(AsmToken::Equal)) {
2761 if (Lexer.isNot(AsmToken::Equal))
3659 // The expression must be a constant greater or equal to 0.
4503 if (getLexer().is(AsmToken::Equal)) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/Utils/
AMDKernelCodeTUtils.cpp 119 if (MCParser.getLexer().isNot(AsmToken::Equal)) {
  /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/external/apache2/llvm/dist/llvm/lib/CodeGen/
MIRPrinter.cpp 608 SmallVector<BranchProbability,8> Equal(Normalized.size());
609 BranchProbability::normalizeProbabilities(Equal.begin(), Equal.end());
611 return std::equal(Normalized.begin(), Normalized.end(), Equal.begin());
629 return std::equal(MBB.succ_begin(), MBB.succ_end(), GuessedSuccs.begin());
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Integral.h 37 return ComparisonCategoryResult::Equal;
Interp.h 200 S.Stk.push<BoolT>(BoolT::from(Fn(ComparisonCategoryResult::Equal)));
218 return R == ComparisonCategoryResult::Equal;
225 return R != ComparisonCategoryResult::Equal;
240 R == ComparisonCategoryResult::Equal;
255 R == 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/clang/lib/StaticAnalyzer/Checkers/
IteratorModeling.cpp 51 // and record that the two sides are equal if we are in the 'equal' branch
165 SymbolRef Sym2, bool Equal);
791 SymbolRef Sym2, bool Equal) {
806 auto NewState = State->assume(comparison.castAs<DefinedSVal>(), Equal);
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/AsmParser/
BPFAsmParser.cpp 373 case AsmToken::Equal:
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/windows/
ole.d 182 OLESTATUS function(LPOLEOBJECT, LPOLEOBJECT) Equal;
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
constfold.d 719 UnionExp Equal(EXP op, const ref Loc loc, Type type, Expression e1, Expression e2)
725 //printf("Equal(e1 = %s, e2 = %s)\n", e1.toChars(), e2.toChars());
726 assert(op == EXP.equal || op == EXP.notEqual);
794 ue = Equal(EXP.equal, loc, Type.tint32, ee1, ee2);
864 ue = Equal(EXP.equal, loc, Type.tint32, ee1, ee2);
953 ue = Equal((op == EXP.identity) ? EXP.equal : EXP.notEqual, loc, type, e1, e2);
1299 ue = Equal(EXP.equal, loc, Type.tbool, ekey, e2)
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/config/arm/
ieee754-df.S 97 @ Look for zeroes, equal values, INF, or NAN.
353 @ Note that r4 must not remain equal to 0.
1126 @ Test for equality. Note that 0.0 is equal to -0.0.
1136 moveq r0, #0 @ then equal.
1234 moveq r0, #1 @ Equal to.
1252 movcs r0, #0 @ Equal to, greater than, or unordered.
1267 movls r0, #1 @ Less than or equal to.
1283 movls r0, #1 @ Operand 2 is less than or equal to operand 1.
1300 movcs r0, #0 @ Operand 2 is greater than or equal to operand 1,

Completed in 28 milliseconds

1 2