Searched refs:EQ (Results 51 - 75 of 152) sorted by path

1234567

/external/chromium_org/v8/src/mips/
H A Dlithium-codegen-mips.cc2259 case Token::EQ:
2494 case Token::EQ:
H A Dmacro-assembler-mips.cc1390 c(EQ, D, cmp1, cmp2);
1398 c(EQ, D, cmp1, cmp2);
1435 cmp(EQ, L, kDoubleCompareReg, cmp1, cmp2);
1443 cmp(EQ, L, kDoubleCompareReg, cmp1, cmp2);
/external/chromium_org/v8/src/mips64/
H A Dcode-stubs-mips64.cc684 __ c(EQ, D, f12, f14);
H A Dconstants-mips64.h667 EQ = 2, // Equal.
H A Dlithium-codegen-mips64.cc2227 case Token::EQ:
2464 case Token::EQ:
H A Dmacro-assembler-mips64.cc1499 c(EQ, D, cmp1, cmp2);
1507 c(EQ, D, cmp1, cmp2);
1543 cmp(EQ, L, f31, cmp1, cmp2);
1551 cmp(EQ, L, f31, cmp1, cmp2);
/external/chromium_org/v8/src/
H A Dparser.cc3046 Token::EQ, flag_proxy, const1, pos);
H A Dpreparser.h2300 case Token::NE: cmp = Token::EQ; break;
H A Druntime.cc6194 case Token::EQ:
H A Dtoken.h90 T(EQ, "==", 9) \
203 return EQ <= op && op <= IN;
211 return op == EQ || op == EQ_STRICT;
226 case EQ: return NE;
227 case NE: return EQ;
243 case EQ: return EQ;
/external/chromium_org/v8/src/x64/
H A Dlithium-codegen-x64.cc2251 case Token::EQ:
/external/chromium_org/v8/src/x87/
H A Dlithium-codegen-x87.cc2506 case Token::EQ:
2733 case Token::EQ:
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-run-jscalls.cc194 T.CheckCall(T.false_value(), T.Val(-1), T.Val(Token::EQ));
198 T.CheckCall(T.true_value(), T.Val(0.0), T.Val(Token::EQ));
202 T.CheckCall(T.false_value(), T.Val(1), T.Val(Token::EQ));
/external/chromium_org/v8/tools/profviz/
H A Dgnuplot-4.6.3-emscripten.js[all...]
/external/clang/include/clang/AST/
H A DDataRecursiveASTVisitor.h51 OPERATOR(LT) OPERATOR(GT) OPERATOR(LE) OPERATOR(GE) OPERATOR(EQ) \
H A DRecursiveASTVisitor.h51 OPERATOR(LT) OPERATOR(GT) OPERATOR(LE) OPERATOR(GE) OPERATOR(EQ) \
H A DStmtVisitor.h127 BINOP_FALLBACK(GE) BINOP_FALLBACK(EQ) BINOP_FALLBACK(NE)
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h398 void FlushReport(BugReportEquivClass& EQ);
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp495 VISITCOMP(EQ, ICMP_EQ , ICMP_EQ , FCMP_OEQ)
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2796 BugReportEquivClass& EQ = **EI; local
2797 FlushReport(EQ);
3277 BugReportEquivClass* EQ = EQClasses.FindNodeOrInsertPos(ID, InsertPos); local
3279 if (!EQ) {
3280 EQ = new BugReportEquivClass(UniqueR.release());
3281 EQClasses.InsertNode(EQ, InsertPos);
3282 EQClassesVector.push_back(EQ);
3285 EQ->AddReport(UniqueR.release());
3304 FindReportInEquivalenceClass(BugReportEquivClass& EQ, argument
3307 BugReportEquivClass::iterator I = EQ
3402 FlushReport(BugReportEquivClass& EQ) argument
[all...]
/external/clang/test/CodeGen/
H A D2005-04-09-ComplexOps.c7 _Bool EQ(double __complex A, double __complex B) { return A == B; } function
/external/clang/test/Preprocessor/
H A Dmacro_with_initializer_list.cpp19 #define EQ(x,y) (void)(x == y) // expected-note 6{{defined here}} macro
24 EQ(F,F);
25 EQ(F,Foo());
26 EQ(F,Foo({1,2,3}));
27 EQ(Foo({1,2,3}),F);
28 EQ((Foo{1,2,3}),(Foo{1,2,3}));
29 EQ(F, F + F);
30 EQ(F, Foo({1,2,3}) + Foo({1,2,3}));
31 EQ(F, (Foo{1,2,3} + Foo{1,2,3}));
33 EQ(
[all...]
/external/clang/test/SemaCXX/
H A Dwarn-assignment-condition.cpp120 #define EQ(x,y) ((x) == (y)) macro
121 if (EQ(x, 5)) {}
122 #undef EQ macro
H A Dwarn-unused-comparison.cpp83 #define EQ(x,y) (x) == (y) macro
84 EQ(x, 5);
85 #undef EQ macro
/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc3880 TEST(MemorySanitizerOrigins, EQ) {

Completed in 813 milliseconds

1234567