Searched refs:EQ (Results 1 - 25 of 90) sorted by relevance

1234

/freebsd-10.0-release/contrib/tcsh/
H A Dtw.spell.c95 #define EQ(s,t) (StrQcmp(s,t) == 0) macro
118 (*t & TRIM) == (s[1] & TRIM) && EQ(s + 2, t + 2))
120 if (EQ(s + 1, t + 1))
123 if (EQ(s + 1, t))
126 if (*t && EQ(s, t + 1))
/freebsd-10.0-release/usr.bin/tset/
H A Dmap.c51 #define EQ 0x02 macro
54 #define GE (GT | EQ)
55 #define LE (LT | EQ)
120 mapp->conditional |= EQ;
152 mapp->conditional = ~mapp->conditional & (EQ | GT | LT);
170 if (mapp->conditional & EQ) {
198 case EQ:
/freebsd-10.0-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTX.h34 EQ, enumerator in enum:llvm::NVPTXCC::CondCodes
47 case NVPTXCC::EQ:
/freebsd-10.0-release/usr.bin/m4/
H A Dparser.y41 %left EQ NE
77 | expr EQ expr { $$ = $1 == $3; }
H A Dtokenizer.l58 "==" { return(EQ); }
/freebsd-10.0-release/contrib/llvm/lib/Target/MBlaze/
H A DMBlazeISelLowering.h28 EQ, enumerator in enum:llvm::MBlazeCC::CC
39 case EQ: return NE;
40 case NE: return EQ;
51 case EQ: return "eq";
/freebsd-10.0-release/contrib/llvm/lib/Support/
H A Dregexec.c65 #define EQ(a, b) ((a) == (b)) macro
91 #undef EQ macro
112 #define EQ(a, b) (memcmp(a, b, m->g->nstates) == 0) macro
/freebsd-10.0-release/contrib/nvi/regex/
H A Dregexec.c76 #define EQ(a, b) ((a) == (b)) macro
102 #undef EQ macro
123 #define EQ(a, b) (memcmp(a, b, m->g->nstates) == 0) macro
/freebsd-10.0-release/contrib/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMBaseInfo.h30 EQ, // Equal Equal enumerator in enum:llvm::ARMCC::CondCodes
50 case EQ: return NE;
51 case NE: return EQ;
70 case ARMCC::EQ: return "eq";
/freebsd-10.0-release/usr.bin/xlint/lint1/
H A Dop.h85 EQ, enumerator in enum:__anon11527
/freebsd-10.0-release/contrib/amd/amd/
H A Dconf_tok.l167 dprintf("%8d: QUOTED-Non-WS-EQ string \"%s\"\n", yytext);
175 dprintf("%8d: Non-WS-EQ string \"%s\"\n", yytext);
/freebsd-10.0-release/contrib/gcc/
H A Dggc.h243 #define htab_create_ggc(SIZE, HASH, EQ, DEL) \
244 htab_create_alloc (SIZE, HASH, EQ, DEL, ggc_calloc, NULL)
H A Ddojump.c359 && !can_compare_p (EQ, TYPE_MODE (inner_type), ccp_jump))
362 do_compare_and_jump (exp, EQ, EQ, if_false_label, if_true_label);
713 do_compare_rtx_and_jump (part, const0_rtx, EQ, 1, word_mode,
725 const0_rtx, EQ, 1, word_mode, NULL_RTX,
765 EQ, 0, word_mode, NULL_RTX,
954 case EQ:
722 const0_rtx, EQ, 1, word_mode, NULL_RTX, local
762 EQ, 0, word_mode, NULL_RTX, local
H A Djump.c407 case EQ:
408 /* It is always safe to reverse EQ and NE, even for the floating
524 case EQ:
527 return EQ;
571 case EQ:
574 return EQ;
613 case EQ:
660 case EQ:
689 case EQ:
734 case EQ
[all...]
/freebsd-10.0-release/lib/libc/regex/
H A Dregexec.c105 #define EQ(a, b) ((a) == (b)) macro
134 #undef EQ macro
157 #define EQ(a, b) (memcmp(a, b, m->g->nstates) == 0) macro
/freebsd-10.0-release/contrib/groff/src/roff/grog/
H A Dgrog.pl44 elsif (/^\.EQ$sp/) {
/freebsd-10.0-release/contrib/one-true-awk/
H A Dmaketab.c47 { EQ, "relop", " == " },
H A Dawkgram.y54 %token <i> AND BOR APPEND EQ GE GT LE LT NE IN
81 %nonassoc APPEND EQ GE GT LE LT NE MATCHOP IN '|'
227 | pattern EQ pattern { $$ = op2($2, $1, $3); }
469 case LE: case LT: case EQ: case NE: case GT: case GE:
H A Dlex.c251 input(); yylval.i = EQ; RET(EQ);
/freebsd-10.0-release/contrib/ncurses/progs/
H A Dtset.c273 #define EQ 0x02 macro
276 #define GE (GT | EQ)
277 #define LE (LT | EQ)
429 mapp->conditional |= EQ;
463 mapp->conditional = ~mapp->conditional & (EQ | GT | LT);
484 if (mapp->conditional & EQ) {
511 case EQ:
/freebsd-10.0-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp95 EQ = 0x01, enumerator in enum:__anon2395::HexagonHardwareLoops::Comparison::Kind
101 LEs = L | EQ,
103 GEs = G | EQ,
105 LEu = L | EQ | U,
107 GEu = G | EQ | U
542 Cmp = !Negated ? Comparison::EQ : Comparison::NE;
581 Cmp = !Negated ? Comparison::EQ : Comparison::NE;
618 // Cannot handle comparison EQ, i.e. while (A == B).
619 if (Cmp == Comparison::EQ)
640 bool CmpHasEqual = Cmp & Comparison::EQ;
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2250 BugReportEquivClass& EQ = **EI; local
2251 FlushReport(EQ);
2700 BugReportEquivClass* EQ = EQClasses.FindNodeOrInsertPos(ID, InsertPos); local
2702 if (!EQ) {
2703 EQ = new BugReportEquivClass(R);
2704 EQClasses.InsertNode(EQ, InsertPos);
2705 EQClassesVector.push_back(EQ);
2708 EQ->AddReport(R);
2727 FindReportInEquivalenceClass(BugReportEquivClass& EQ, argument
2730 BugReportEquivClass::iterator I = EQ
2825 FlushReport(BugReportEquivClass& EQ) argument
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp604 if (Direction & DVEntry::EQ)
1065 Result.DV[Level].Direction &= Dependence::DVEntry::EQ;
1072 Result.DV[Level].Direction &= Dependence::DVEntry::EQ;
1102 NewDirection |= Dependence::DVEntry::EQ;
1258 Result.DV[Level].Direction &= unsigned(~Dependence::DVEntry::EQ);
1486 DEBUG(dbgs() << "\t exploring EQ direction\n");
1505 NewDirection |= Dependence::DVEntry::EQ;
2383 Result.DV[Level - 1].Direction &= unsigned(~Dependence::DVEntry::EQ);
2527 case Dependence::DVEntry::EQ:
2564 if (Bound[Level].Lower[Dependence::DVEntry::EQ])
[all...]
/freebsd-10.0-release/contrib/gcc/config/s390/
H A Ds390.c511 /* Given a comparison code OP (EQ, NE, etc.) and the operands
520 case EQ:
630 if ((*code == EQ || *code == NE)
656 if ((*code == EQ || *code == NE)
691 if ((*code == EQ || *code == NE)
715 case EQ: new_code = EQ; break;
731 /* Simplify cascaded EQ, NE with const0_rtx. */
732 if ((*code == NE || *code == EQ)
733 && (GET_CODE (*op0) == EQ || GET_COD
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/MC/
H A DMCExpr.h332 EQ, ///< Equality comparison. enumerator in enum:llvm::MCBinaryExpr::Opcode
380 return Create(EQ, LHS, RHS, Ctx);

Completed in 236 milliseconds

1234