Searched refs:EL (Results 1 - 25 of 39) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/llvm/lib/LineEditor/
H A DLineEditor.cpp102 EditLine *EL; member in struct:LineEditor::InternalData
112 const char *ElGetPromptFn(EditLine *EL) { argument
114 if (el_get(EL, EL_CLIENTDATA, &Data) == 0)
123 unsigned char ElCompletionFn(EditLine *EL, int ch) { argument
125 if (el_get(EL, EL_CLIENTDATA, &Data) == 0) {
137 ::el_push(EL, const_cast<char *>(Prevs.c_str()));
144 const LineInfo *LI = ::el_line(EL);
150 ::el_insertstr(EL, Action.Text.c_str());
164 ::el_push(EL, const_cast<char *>("\05\t"));
211 Data->EL
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDirectedGraph.h106 /// Collect in \p EL, all the edges from this node to \p N.
110 bool findEdgesTo(const NodeType &N, SmallVectorImpl<EdgeType *> &EL) const {
111 assert(EL.empty() && "Expected the list of edges to be empty.");
114 EL.push_back(E);
115 return !EL.empty();
217 /// Collect in \p EL all edges that are coming into node \p N. Return true
219 bool findIncomingEdgesToNode(const NodeType &N, SmallVectorImpl<EdgeType*> &EL) const {
220 assert(EL.empty() && "Expected the list of edges to be empty.");
226 EL.insert(EL
[all...]
/freebsd-13-stable/contrib/libedit/
H A Dcommon.c150 #define EL el->el_line macro
153 EL.buffer, EL.buffer, EL.cursor, EL.cursor, EL.lastchar,
154 EL.lastchar, EL.limit, EL.limit);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-graph-diff.cpp304 GraphDiffRenderer::StatType EL) {
306 switch (EL) {
316 double RelDiff = statRelDiff(LeftStat, RightStat, EL);
344 GraphDiffRenderer::StatType EL) {
346 switch (EL) {
356 double RelDiff = statRelDiff(LeftStat, RightStat, EL);
303 getLabel(const GraphDiffRenderer::GraphT::EdgeValueType &E, GraphDiffRenderer::StatType EL) argument
343 getLineWidth(const GraphDiffRenderer::GraphT::EdgeValueType &E, GraphDiffRenderer::StatType EL) argument
/freebsd-13-stable/contrib/opencsd/decoder/include/opencsd/etmv4/
H A Dtrc_pkt_elem_etmv4i.h148 void setContextInfo(const bool update, const uint8_t EL = 0, const uint8_t NS = 0, const uint8_t SF = 0);
415 inline void EtmV4ITrcPacket::setContextInfo(const bool update, const uint8_t EL, const uint8_t NS, const uint8_t SF) argument
421 context.EL = EL;
H A Dtrc_pkt_types_etmv4.h164 uint32_t EL:2; //!< exception level. member in struct:_etmv4_context_t::__anon5831
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceGraphBuilder.cpp192 SmallVector<EdgeType *, 10> EL;
193 Src->findEdgesTo(*Dst, EL);
194 for (EdgeType *OldEdge : EL) {
H A DScalarEvolution.cpp6880 const ExitLimit &EL = EEI.second;
6881 if (EL.Predicates.empty())
6882 return ExitNotTakenInfo(ExitBB, EL.ExactNotTaken, EL.MaxNotTaken,
6886 for (auto *Pred : EL.Predicates)
6889 return ExitNotTakenInfo(ExitBB, EL.ExactNotTaken, EL.MaxNotTaken,
6933 ExitLimit EL = computeExitLimit(L, ExitBB, AllowPredicates);
6935 assert((AllowPredicates || EL.Predicates.empty()) &&
6940 if (EL
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.h149 EL : 2, // Current exception level (see ExceptionLevel enum) member in struct:EmulateInstructionARM64::__anon2823
/freebsd-13-stable/crypto/heimdal/appl/telnet/arpa/
H A Dtelnet.h49 #define EL 248 /* erase the current line */ macro
69 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,
207 "ABORT", "EOF", "SUSP", "EC", "EL", "EW", "RP", \
/freebsd-13-stable/include/arpa/
H A Dtelnet.h48 #define EL 248 /* erase the current line */ macro
68 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC",
224 "ABORT", "EOF", "SUSP", "EC", "EL", "EW", "RP", \
/freebsd-13-stable/contrib/telnet/arpa/
H A Dtelnet.h46 #define EL 248 /* erase the current line */ macro
66 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC",
223 "ABORT", "EOF", "SUSP", "EC", "EL", "EW", "RP", \
/freebsd-13-stable/usr.bin/tip/tip/
H A Dremote.c63 &AT, &DV, &CM, &CU, &EL, &IE, &OE, &PN, &PR, &DI,
H A Dvars.c63 NOSTR, (char *)&EL },
H A Dtip.h69 EXTERN char *EL; /* chars marking an EOL */ variable
/freebsd-13-stable/contrib/tcpdump/
H A Dprint-telnet.c77 #define EL 248 /* erase the current line */ macro
97 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,
240 "ABORT", "EOF", "SUSP", "EC", "EL", "EW", "RP", \
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp831 SourceLocation EL, Stmt *Else)
853 setElseLoc(EL);
865 Stmt *Then, SourceLocation EL, Stmt *Else) {
874 IfStmt(Ctx, IL, IsConstexpr, Init, Var, Cond, Then, EL, Else);
829 IfStmt(const ASTContext &Ctx, SourceLocation IL, bool IsConstexpr, Stmt *Init, VarDecl *Var, Expr *Cond, Stmt *Then, SourceLocation EL, Stmt *Else) argument
863 Create(const ASTContext &Ctx, SourceLocation IL, bool IsConstexpr, Stmt *Init, VarDecl *Var, Expr *Cond, Stmt *Then, SourceLocation EL, Stmt *Else) argument
/freebsd-13-stable/crypto/heimdal/appl/telnet/telnet/
H A Dtelnet.c2184 ((*(p+1)&0xff) != EC) && ((*(p+1)&0xff) != EL))
2246 NET2ADD(IAC, EL);
2247 printoption("SENT", IAC, EL);
/freebsd-13-stable/contrib/opencsd/decoder/source/etmv4/
H A Dtrc_pkt_elem_etmv4i.cpp585 oss << "Ctxt: " << (context.SF ? "AArch64," : "AArch32, ") << "EL" << context.EL << ", " << (context.NS ? "NS; " : "S; ");
/freebsd-13-stable/contrib/ldns/packaging/fedora/
H A Dldns.spec147 - libtool on EL-5 does not take --install as argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonGenInsert.cpp907 // given the extra length EL=L-MinL, the prefix must start between
908 // max(0,FD-EL) and FD.
911 uint16_t EL = L-MinL;
912 uint16_t LowS = (EL < FD) ? FD-EL : 0;
/freebsd-13-stable/sys/amd64/amd64/
H A Ddb_disasm.c106 #define EL 38 /* address, explicitly long size */ macro
795 /*63*/ { "movslq", TRUE, NONE, op2(EL,R), 0 },
1588 case EL:
/freebsd-13-stable/crypto/heimdal/appl/telnet/telnetd/
H A Dstate.c194 case EL:
H A Dutility.c197 ((*(p+1)&0xff) != EC) && ((*(p+1)&0xff) != EL))
/freebsd-13-stable/contrib/telnet/telnetd/
H A Dutility.c200 ((*(p+1)&0xff) != EC) && ((*(p+1)&0xff) != EL))

Completed in 333 milliseconds

12