Home
last modified time | relevance | path

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

1234

/src/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 = ::el_init(ProgName.str().c_str(), In, Out, Err); in LineEditor()
[all …]
/src/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 …]
/src/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()
/src/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()
/src/crypto/openssl/doc/designs/quic-design/
H A Dconnection-state-machine.md110 Handshake EL is ready.
114 hypothetical handshake layer) to emit keys for the Handshake EL.
119 - Handshake: The Handshake EL is now available to the client.
126 the Initial EL. Communications via the handshake EL may continue for
136 messages. The handshake layer must emit keys for the 1-RTT EL
159 EL is discarded. Key Update is also now permitted for the first
350 <td>(packet processed if EL is not dropped)</td>
470 in any non-discarded EL.
531 modelled on whether we have an EL provisioned or discarded, etc.; thus
535 packets and discard the Initial EL, as required by RFC.
[all …]
H A Dtx-packetiser.md39 * Note: There is no crypto stream for the 0-RTT EL.
85 - Crypto streams for each EL other than 0-RTT (each is one SSTREAM).
113 The crypto streams for each EL (other than 0-RTT, which does not have a crypto
164 are discarded (e.g. due to an EL being discarded).
633 encryption levels (ELs). The TX packetiser decides what EL to use to send a
636 EL, and can only be managed using a packet of that EL, therefore a datagram will
638 ELs. We can thus view datagram construction as a process of determining if an EL
639 needs to produce a packet for each EL, and concatenating the resulting packets.
641 The following EL-specific resources exist:
646 which is to say the 0-RTT EL has no crypto stream of its own.)
[all …]
/src/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
/src/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
/src/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 …]
/src/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
/src/crypto/heimdal/appl/telnet/arpa/
H A Dtelnet.h49 #define EL 248 /* erase the current line */ macro
/src/include/arpa/
H A Dtelnet.h45 #define EL 248 /* erase the current line */ macro
/src/contrib/telnet/arpa/
H A Dtelnet.h46 #define EL 248 /* erase the current line */ macro
/src/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.h148 EL : 2, // Current exception level (see ExceptionLevel enum) member
/src/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()
/src/contrib/tcpdump/
H A Dprint-telnet.c72 #define EL 248 /* erase the current line */ macro
/src/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()
/src/tools/tools/locale/etc/charmaps/
H A DCP1251.TXT223 0xCB 0x041B #CYRILLIC CAPITAL LETTER EL
255 0xEB 0x043B #CYRILLIC SMALL LETTER EL
H A DPT154.TXT226 0xcb 0x041B # CYRILLIC CAPITAL LETTER EL
258 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 DISO8859-5.TXT236 0xBB 0x041B # CYRILLIC CAPITAL LETTER EL
268 0xDB 0x043B # CYRILLIC SMALL LETTER EL

1234