Home
last modified time | relevance | path

Searched refs:EL (Results 1 – 25 of 71) sorted by relevance

123

/freebsd/contrib/llvm-project/llvm/lib/LineEditor/
H A DLineEditor.cpp100 EditLine *EL; member
110 const char *ElGetPromptFn(EditLine *EL) { in ElGetPromptFn() argument
112 if (el_get(EL, EL_CLIENTDATA, &Data) == 0) in ElGetPromptFn()
121 unsigned char ElCompletionFn(EditLine *EL, int ch) { in ElCompletionFn() argument
123 if (el_get(EL, EL_CLIENTDATA, &Data) == 0) { in ElCompletionFn()
135 ::el_push(EL, const_cast<char *>(Prevs.c_str())); in ElCompletionFn()
142 const LineInfo *LI = ::el_line(EL); in ElCompletionFn()
148 ::el_insertstr(EL, Action.Text.c_str()); in ElCompletionFn()
162 ::el_push(EL, const_cast<char *>("\05\t")); in ElCompletionFn()
206 Data->EL in LineEditor()
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDirectedGraph.h117 bool findEdgesTo(const NodeType &N, SmallVectorImpl<EdgeType *> &EL) const { in findEdgesTo() argument
118 assert(EL.empty() && "Expected the list of edges to be empty."); in findEdgesTo()
121 EL.push_back(E); in findEdgesTo()
122 return !EL.empty(); in findEdgesTo()
226 bool findIncomingEdgesToNode(const NodeType &N, SmallVectorImpl<EdgeType*> &EL) const { in findIncomingEdgesToNode() argument
227 assert(EL.empty() && "Expected the list of edges to be empty."); in findIncomingEdgesToNode()
233 llvm::append_range(EL, TempList); in findIncomingEdgesToNode()
236 return !EL.empty(); in findIncomingEdgesToNode()
248 EdgeListTy EL; in removeNode() local
252 Node->findEdgesTo(N, EL); in removeNode()
[all …]
/freebsd/contrib/libedit/
H A Dcommon.c150 #define EL el->el_line in ed_delete_next_char() macro
153 EL.buffer, EL.buffer, EL.cursor, EL.cursor, EL.lastchar, in ed_delete_next_char()
154 EL.lastchar, EL.limit, EL.limit); in ed_delete_next_char()
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-graph-diff.cpp301 GraphDiffRenderer::StatType EL) { in getLabel() argument
303 switch (EL) { in getLabel()
313 double RelDiff = statRelDiff(LeftStat, RightStat, EL); in getLabel()
341 GraphDiffRenderer::StatType EL) { in getLineWidth() argument
343 switch (EL) { in getLineWidth()
353 double RelDiff = statRelDiff(LeftStat, RightStat, EL); in getLineWidth()
/freebsd/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 S…
424 inline void EtmV4ITrcPacket::setContextInfo(const bool update, const uint8_t EL, const uint8_t NS, … in setContextInfo() argument
430 context.EL = EL; in setContextInfo()
H A Dtrc_pkt_types_etmv4.h181 uint32_t EL:2; //!< exception level. member
/freebsd/sys/contrib/device-tree/Bindings/arm/msm/
H A Dqcom,idle-state.txt41 back into Elevation Level (EL) which trampolines the control back to the
43 into a EL. Failing to do so, would result in a crash enforced by the warm boot
44 code in the EL for the SoC. On SoCs with write-back L1 cache, the cache has to
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceGraphBuilder.cpp191 SmallVector<EdgeType *, 10> EL; in createPiBlocks() local
192 Src->findEdgesTo(*Dst, EL); in createPiBlocks()
193 for (EdgeType *OldEdge : EL) { in createPiBlocks()
H A DScalarEvolution.cpp8760 const ExitLimit &EL = EEI.second; in BackedgeTakenInfo() local
8761 return ExitNotTakenInfo(ExitBB, EL.ExactNotTaken, in BackedgeTakenInfo()
8762 EL.ConstantMaxNotTaken, EL.SymbolicMaxNotTaken, in BackedgeTakenInfo()
8763 EL.Predicates); in BackedgeTakenInfo()
8801 ExitLimit EL = computeExitLimit(L, ExitBB, IsOnlyExit, AllowPredicates); in computeBackedgeTakenCount() local
8803 assert((AllowPredicates || EL.Predicates.empty()) && in computeBackedgeTakenCount()
8808 if (EL.ExactNotTaken != getCouldNotCompute()) in computeBackedgeTakenCount()
8816 if (EL.SymbolicMaxNotTaken != getCouldNotCompute()) in computeBackedgeTakenCount()
8817 ExitCounts.emplace_back(ExitBB, EL); in computeBackedgeTakenCount()
8819 assert(EL.ExactNotTaken == getCouldNotCompute() && in computeBackedgeTakenCount()
[all …]
/freebsd/usr.bin/tip/tip/
H A Dvars.c53 NOSTR, (char *)&EL },
H A Dremote.c47 &AT, &DV, &CM, &CU, &EL, &IE, &OE, &PN, &PR, &DI,
H A Dtip.h66 EXTERN char *EL; /* chars marking an EOL */ variable
/freebsd/crypto/heimdal/appl/telnet/arpa/
H A Dtelnet.h49 #define EL 248 /* erase the current line */ macro
/freebsd/contrib/telnet/arpa/
H A Dtelnet.h46 #define EL 248 /* erase the current line */ macro
/freebsd/include/arpa/
H A Dtelnet.h45 #define EL 248 /* erase the current line */ macro
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.h148 EL : 2, // Current exception level (see ExceptionLevel enum) member
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp662 for (JITEventListener *EL : EventListeners) in notifyObjectLoaded()
663 EL->notifyObjectLoaded(Key, Obj, L); in notifyObjectLoaded()
/freebsd/contrib/tcpdump/
H A Dprint-telnet.c72 #define EL 248 /* erase the current line */ macro
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp926 SourceLocation RPL, Stmt *Then, SourceLocation EL, Stmt *Else) in IfStmt() argument
948 setElseLoc(EL); in IfStmt()
961 Stmt *Then, SourceLocation EL, Stmt *Else) { in Create() argument
970 IfStmt(Ctx, IL, Kind, Init, Var, Cond, LPL, RPL, Then, EL, Else); in Create()
/freebsd/tools/tools/locale/etc/charmaps/
H A DCP1251.TXT223 0xCB 0x041B #CYRILLIC CAPITAL LETTER EL
255 0xEB 0x043B #CYRILLIC SMALL LETTER EL
H A DCP866.TXT158 0x8b 0x041b #CYRILLIC CAPITAL LETTER EL
190 0xab 0x043b #CYRILLIC SMALL LETTER EL
H A DPT154.TXT226 0xcb 0x041B # CYRILLIC CAPITAL LETTER EL
258 0xeb 0x043B # CYRILLIC SMALL LETTER EL
H A DISO8859-5.TXT236 0xBB 0x041B # CYRILLIC CAPITAL LETTER EL
268 0xDB 0x043B # CYRILLIC SMALL LETTER EL
/freebsd/crypto/heimdal/appl/telnet/telnet/
H A Dtelnet.c2184 ((*(p+1)&0xff) != EC) && ((*(p+1)&0xff) != EL)) in netclear()
2246 NET2ADD(IAC, EL); in xmitEL()
2247 printoption("SENT", IAC, EL); in xmitEL()
/freebsd/sys/teken/
H A Dsequences73 EL Erase line ^[ [ K r

123