Home
last modified time | relevance | path

Searched refs:E (Results 1 – 25 of 2907) sorted by relevance

12345678910>>...117

/freebsd/crypto/openssl/crypto/sha/asm/
H A Dkeccak1600-armv4.pl91 my @E = map("r$_",(10..12,14));
160 add @E[2],sp,#$A[0][0]
161 add @E[0],sp,#$A[1][0]
165 eor @E[1],@E[1],@E[1]
166 str @E[1],[sp,#444]
176 ldmia @E[2],{@C[0]-@C[3]} @ A[0][0..1]
177 ldmia @E[0],{@E[0]-@E[2],@E[3]} @ A[1][0..1]
179 eor @C[0],@C[0],@E[0]
180 eor @C[1],@C[1],@E[1]
181 eor @C[2],@C[2],@E[2]
[all …]
/freebsd/contrib/tcsh/
H A Dtermcap.vms9 :ts=\E[1$}\E[;H\E[K:\
10 :fs=\E[0$}:\
11 :ds=\E[1$}\E[D;H\E[K\E[0$}:\
12 :ae=4\E(B:\
13 :al=\E[L:\
14 :as=2\E(<:\
15 :dc=\E[P;\E[:dl=\E[M:\
16 :ei=\E[4l:im=\E[4h:mi:nd=\E[C:se=\E[m:so=\E[7m:sr=\EM:\
17 :ue=\E[m:up=\E[A:us=\E[4m:\
18 :cr=^M:do=^J:nl=^J:bl=^G:co#80:li#24:cl=50\E[;H\E[2J:\
[all …]
/freebsd/share/termcap/
H A Dtermcap116 :bs:hc:os:pl:co#132:do=^J:kb=^H:up=\E\n:\
119 :do=^J:ct=\E2:st=\E1:ch=\E\t%i%.:\
121 :kb=^H:le=^H:bs:co#132:hc:hu=\EU:hd=\ED:os:pt:up=\E\n:
126 :us=\EE:ue=\ER:so=\EW:se=\E&:tc=1620:
130 :co#124:us=\EE:ue=\ER:so=\EW:se=\E&:tc=1620:
160 :ip=.1*:so=\E"I:us=\E"U:cd=\E'P:ce=\E'L:cl=^L:cm=\E#%+ %+ :\
161 :dl=2*\E&D:ue=\E"U:co#80:li#24:se=\E"I:al=2*\E&I:im=\E'I:ei=\E'J:\
162 :dc=.1*\E'D:up=\EY:nd=\EX:bs:am:mi:ti=\E"N:te=\E"N:\
167 :ct=\E3:st=\E1:do=^J:kb=^h:le=^H:bs:co#132:hc:hu=\E]s\E9\E]W:\
168 :hd=\E]s\n\E]W:os:pt:up=\E9:
[all …]
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterStmt.cpp442 void ASTStmtWriter::VisitCoroutineSuspendExpr(CoroutineSuspendExpr *E) { in VisitCoroutineSuspendExpr() argument
443 VisitExpr(E); in VisitCoroutineSuspendExpr()
444 Record.AddSourceLocation(E->getKeywordLoc()); in VisitCoroutineSuspendExpr()
445 for (Stmt *S : E->children()) in VisitCoroutineSuspendExpr()
447 Record.AddStmt(E->getOpaqueValue()); in VisitCoroutineSuspendExpr()
450 void ASTStmtWriter::VisitCoawaitExpr(CoawaitExpr *E) { in VisitCoawaitExpr() argument
451 VisitCoroutineSuspendExpr(E); in VisitCoawaitExpr()
452 Record.push_back(E->isImplicit()); in VisitCoawaitExpr()
456 void ASTStmtWriter::VisitCoyieldExpr(CoyieldExpr *E) { in VisitCoyieldExpr() argument
457 VisitCoroutineSuspendExpr(E); in VisitCoyieldExpr()
[all …]
H A DASTReaderStmt.cpp266 for (auto E = Record.size(); Record.getIdx() != E; ) { in VisitSwitchStmt() local
481 void ASTStmtReader::VisitCoawaitExpr(CoawaitExpr *E) { in VisitCoawaitExpr() argument
482 VisitExpr(E); in VisitCoawaitExpr()
483 E->KeywordLoc = readSourceLocation(); in VisitCoawaitExpr()
484 for (auto &SubExpr: E->SubExprs) in VisitCoawaitExpr()
486 E->OpaqueValue = cast_or_null<OpaqueValueExpr>(Record.readSubStmt()); in VisitCoawaitExpr()
487 E->setIsImplicit(Record.readInt() != 0); in VisitCoawaitExpr()
490 void ASTStmtReader::VisitCoyieldExpr(CoyieldExpr *E) { in VisitCoyieldExpr() argument
491 VisitExpr(E); in VisitCoyieldExpr()
492 E->KeywordLoc = readSourceLocation(); in VisitCoyieldExpr()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DComputeDependence.cpp24 ExprDependence clang::computeDependence(FullExpr *E) { in computeDependence() argument
25 return E->getSubExpr()->getDependence(); in computeDependence()
28 ExprDependence clang::computeDependence(OpaqueValueExpr *E) { in computeDependence() argument
29 auto D = toExprDependenceForImpliedType(E->getType()->getDependence()); in computeDependence()
30 if (auto *S = E->getSourceExpr()) in computeDependence()
36 ExprDependence clang::computeDependence(ParenExpr *E) { in computeDependence() argument
37 return E->getSubExpr()->getDependence(); in computeDependence()
40 ExprDependence clang::computeDependence(UnaryOperator *E, in computeDependence() argument
44 toExprDependenceForImpliedType(E->getType()->getDependence()) | in computeDependence()
45 E->getSubExpr()->getDependence(); in computeDependence()
[all …]
/freebsd/contrib/ntp/sntp/libevent/test/
H A Dprint-winsock-errors.c11 #define E(x) printf (#x " -> \"%s\"\n", evutil_socket_error_to_string (x)); macro
26 E(WSAEINTR); in main()
27 E(WSAEACCES); in main()
28 E(WSAEFAULT); in main()
29 E(WSAEINVAL); in main()
30 E(WSAEMFILE); in main()
31 E(WSAEWOULDBLOCK); in main()
32 E(WSAEINPROGRESS); in main()
33 E(WSAEALREADY); in main()
34 E(WSAENOTSOCK); in main()
[all …]
/freebsd/contrib/libevent/test/
H A Dprint-winsock-errors.c11 #define E(x) printf (#x " -> \"%s\"\n", evutil_socket_error_to_string (x)); macro
26 E(WSAEINTR); in main()
27 E(WSAEACCES); in main()
28 E(WSAEFAULT); in main()
29 E(WSAEINVAL); in main()
30 E(WSAEMFILE); in main()
31 E(WSAEWOULDBLOCK); in main()
32 E(WSAEINPROGRESS); in main()
33 E(WSAEALREADY); in main()
34 E(WSAENOTSOCK); in main()
[all …]
/freebsd/contrib/netbsd-tests/lib/libc/regex/data/att/
H A Dnullsubexpr.dat3 E (a*)* a (0,1)(0,1)
4 E SAME x (0,0)(0,0)
5 E SAME aaaaaa (0,6)(0,6)
6 E SAME aaaaaax (0,6)(0,6)
7 E (a*)+ a (0,1)(0,1)
8 E SAME x (0,0)(0,0)
9 E SAME aaaaaa (0,6)(0,6)
10 E SAME aaaaaax (0,6)(0,6)
11 E (a+)* a (0,1)(0,1)
12 E SAME x (0,0)
[all …]
H A Drepetition.dat10 E ((..)|(.)) NULL NOMATCH
11 E ((..)|(.))((..)|(.)) NULL NOMATCH
12 E ((..)|(.))((..)|(.))((..)|(.)) NULL NOMATCH
14 E ((..)|(.)){1} NULL NOMATCH
15 E ((..)|(.)){2} NULL NOMATCH
16 E ((..)|(.)){3} NULL NOMATCH
18 E ((..)|(.))* NULL (0,0)
20 E ((..)|(.)) a (0,1)(0,1)(?,?)(0,1)
21 E ((..)|(.))((..)|(.)) a NOMATCH
22 E ((..)|(.))((..)|(.))((..)|(.)) a NOMATCH
[all …]
H A Dbasic.dat6 E \) () (1,2)
9 E \} } (0,1)
12 E ] ] (0,1)
21 E $^ NULL (0,0)
22 E a($) aa (1,2)(2,2)
23 E a*(^a) aa (0,1)(0,1)
24 E (..)*(...)* a (0,0)
25 E (..)*(...)* abcd (0,4)(2,4)
26 E (ab|a)(bc|c) abc (0,3)(0,2)(2,3)
27 E (ab)c|abc abc (0,3)(0,2)
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DBitmaskEnum.h98 template <typename E, typename Enable = void>
101 template <typename E>
103 E, std::enable_if_t<sizeof(E::LLVM_BITMASK_LARGEST_ENUMERATOR) >= 0>>
107 template <typename E, typename Enable = void> struct largest_bitmask_enum_bit;
109 template <typename E>
111 E, std::enable_if_t<sizeof(E::LLVM_BITMASK_LARGEST_ENUMERATOR) >= 0>> {
112 using UnderlyingTy = std::underlying_type_t<E>;
114 static_cast<UnderlyingTy>(E
[all...]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DComputeDependence.h113 ExprDependence computeDependence(FullExpr *E);
114 ExprDependence computeDependence(OpaqueValueExpr *E);
115 ExprDependence computeDependence(ParenExpr *E);
116 ExprDependence computeDependence(UnaryOperator *E, const ASTContext &Ctx);
117 ExprDependence computeDependence(UnaryExprOrTypeTraitExpr *E);
118 ExprDependence computeDependence(ArraySubscriptExpr *E);
119 ExprDependence computeDependence(MatrixSubscriptExpr *E);
120 ExprDependence computeDependence(CompoundLiteralExpr *E);
121 ExprDependence computeDependence(ImplicitCastExpr *E);
122 ExprDependence computeDependence(ExplicitCastExpr *E);
[all …]
H A DIgnoreExpr.h23 inline Expr *IgnoreExprNodesImpl(Expr *E) { return E; } in IgnoreExprNodesImpl() argument
25 Expr *IgnoreExprNodesImpl(Expr *E, FnTy &&Fn, FnTys &&... Fns) { in IgnoreExprNodesImpl() argument
26 return IgnoreExprNodesImpl(std::forward<FnTy>(Fn)(E), in IgnoreExprNodesImpl()
34 template <typename... FnTys> Expr *IgnoreExprNodes(Expr *E, FnTys &&... Fns) { in IgnoreExprNodes() argument
36 while (E != LastE) { in IgnoreExprNodes()
37 LastE = E; in IgnoreExprNodes()
38 E = detail::IgnoreExprNodesImpl(E, std::forward<FnTys>(Fns)...); in IgnoreExprNodes()
40 return E; in IgnoreExprNodes()
44 const Expr *IgnoreExprNodes(const Expr *E, FnTys &&...Fns) { in IgnoreExprNodes() argument
45 return IgnoreExprNodes(const_cast<Expr *>(E), std::forward<FnTys>(Fns)...); in IgnoreExprNodes()
[all …]
/freebsd/contrib/netbsd-tests/lib/libcurses/
H A Datf.terminfo14 is2=is2, kDC=\E[3;2~, kEND=\E[1;2F, kHOM=\E[1;2H,
15 kIC=\E[2;2~, kLFT=\E[1;2D, kNXT=\E[6;2~, kPRV=\E[5;2~,
16 kRIT=\E[1;2C, kb2=\EOE, kbs=^H, kcbt=\E[Z, kcub1=\EOD, kcud1=\EOB,
17 kcuf1=\EOC, kcuu1=\EOA, kdch1=\E[3~, kend=\EOF, kent=\EOM,
18 kf1=\EOP, kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, kf13=\E[1;2P,
19 kf14=\E[1;2Q, kf15=\E[1;2R, kf16=\E[1;2S, kf17=\E[15;2~,
20 kf18=\E[17;2~, kf19=\E[18;2~, kf2=\EOQ, kf20=\E[19;2~,
21 kf21=\E[20;2~, kf22=\E[21;2~, kf23=\E[23;2~, kf24=\E[24;2~,
22 kf25=\E[1;5P, kf26=\E[1;5Q, kf27=\E[1;5R, kf28=\E[1;5S,
23 kf29=\E[15;5~, kf3=\EOR, kf30=\E[17;5~, kf31=\E[18;5~,
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DCompiler.cpp81 bool InitLink::emit(Compiler<Emitter> *Ctx, const Expr *E) const { in emit()
84 return Ctx->emitThis(E); in emit()
87 return Ctx->emitGetPtrFieldPop(Offset, E); in emit()
89 return Ctx->emitGetPtrLocal(Offset, E); in emit()
91 return Ctx->visitDeclRef(D, E); in emit()
650 bool Compiler<Emitter>::VisitFloatingLiteral(const FloatingLiteral *E) { in VisitFloatingLiteral() argument
654 return this->emitConstFloat(E->getValue(), E); in VisitFloatingLiteral()
658 bool Compiler<Emitter>::VisitImaginaryLiteral(const ImaginaryLiteral *E) { in VisitImaginaryLiteral() argument
659 assert(E->getType()->isAnyComplexType()); in VisitImaginaryLiteral()
664 std::optional<unsigned> LocalIndex = allocateLocal(E); in VisitImaginaryLiteral()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DClauseT.h184 template <typename I, typename E>
185 bool operator==(const ObjectT<I, E> &o1, const ObjectT<I, E> &o2) {
189 template <typename I, typename E> using ObjectListT = ListT<ObjectT<I, E>>;
193 template <typename I, typename E> //
197 ObjectT<I, E> v;
206 template <typename E> //
210 std::tuple<E, E, OPT(E)> t;
230 template <typename I, typename E> //
232 using MapperIdentifier = ObjectT<I, E>;
244 template <typename I, typename E> //
[all …]
/freebsd/contrib/ncurses/misc/
H A Demx.src2 # Copyright 2020 Thomas E. Dickey #
87 # We use \E[11m for rmacs rather than \E[12m so the <acsc> string can use the
90 # will work with any Intel console, they all seem to have inherited \E[11m
94 rmacs=\E[10m,
95 smacs=\E[11m,
99 # about \E[11m as klone+acs. True ANSI/ECMA-48 would have <rmso=\E[27m>,
100 # <rmul=\E[24m>, but this isn't a documented feature of ANSI.SYS.
102 blink=\E[5m,
103 bold=\E[1m,
104 invis=\E[8m,
[all …]
H A Dterminfo.src4 # by Thomas E. Dickey (TD).
73 # by global-replacing \E(B and \E)B with the appropriate ISO 6429 enablers
74 # for your character set. \E(A and \E)A enables the British character set
79 # so \E)0 should be avoided in <enacs> and initialization strings.
209 # from the terminal. Common values for <u9> will be ^E (on older ASCII
210 # terminals) or \E[c (on newer VT100/ANSI/ECMA-48-compatible terminals).
213 # report. A typical value (for VT100 terminals) is \E[6n.
227 # \E[%i%d;%dR (on VT100/ANSI/ECMA-48-compatible terminals).
342 cub1=\E[D, cud1=\E[B, cuf1=\E[C, cuu1=\E[A,
344 cub=\E[%p1%dD, cud=\E[%p1%dB, cuf=\E[%p1%dC,
[all …]
/freebsd/crypto/openssl/crypto/ripemd/
H A Drmd_dgst.c34 c->E = RIPEMD160_E; in RIPEMD160_Init()
45 register unsigned MD32_REG_T A, B, C, D, E; in ripemd160_block_data_order() local
63 E = ctx->E; in ripemd160_block_data_order()
69 RIP1(A, B, C, D, E, WL00, SL00); in ripemd160_block_data_order()
72 RIP1(E, A, B, C, D, WL01, SL01); in ripemd160_block_data_order()
75 RIP1(D, E, A, B, C, WL02, SL02); in ripemd160_block_data_order()
78 RIP1(C, D, E, A, B, WL03, SL03); in ripemd160_block_data_order()
81 RIP1(B, C, D, E, A, WL04, SL04); in ripemd160_block_data_order()
84 RIP1(A, B, C, D, E, WL05, SL05); in ripemd160_block_data_order()
87 RIP1(E, A, B, C, D, WL06, SL06); in ripemd160_block_data_order()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h68 typename R::R_SExpr traverse(T* &E, typename R::R_Ctx Ctx) { in traverse() argument
69 return traverseSExpr(E, Ctx); in traverse()
74 typename R::R_SExpr traverseSExpr(SExpr *E, typename R::R_Ctx Ctx) { in traverseSExpr() argument
75 return traverseByCase(E, Ctx); in traverseSExpr()
79 typename R::R_SExpr traverseByCase(SExpr *E, typename R::R_Ctx Ctx) { in traverseByCase() argument
80 switch (E->opcode()) { in traverseByCase()
83 return self()->traverse##X(cast<X>(E), Ctx); in traverseByCase()
153 void push_back(T E) { Elems.push_back(E); } in push_back() argument
178 void push_back(bool E) { Success = Success && E; } in push_back() argument
267 R_SExpr reduceReturn(Return &O, R_SExpr E) { in reduceReturn() argument
[all …]
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DIndexBody.cpp61 SymbolRoleSet getRolesForRef(const Expr *E, in getRolesForRef() argument
64 assert(!StmtStack.empty() && E == StmtStack.back()); in getRolesForRef()
81 if (BO->getLHS()->IgnoreParenCasts() == E) in getRolesForRef()
84 if (CA->getLHS()->IgnoreParenCasts() == E) { in getRolesForRef()
98 if (CE->getCallee()->IgnoreParenCasts() == E) { in getRolesForRef()
100 if (auto *ME = dyn_cast<MemberExpr>(E)) { in getRolesForRef()
112 if (CXXOp->getNumArgs() > 0 && CXXOp->getArg(0)->IgnoreParenCasts() == E) { in getRolesForRef()
140 bool VisitDeclRefExpr(DeclRefExpr *E) { in VisitDeclRefExpr() argument
142 SymbolRoleSet Roles = getRolesForRef(E, Relations); in VisitDeclRefExpr()
143 return IndexCtx.handleReference(E->getDecl(), E->getLocation(), in VisitDeclRefExpr()
[all …]
/freebsd/lib/libmd/
H A Drmd160c.c94 c->E=RIPEMD160_E; in RIPEMD160_Init()
268 u_int32_t A,B,C,D,E; in ripemd160_block() local
273 A=ctx->A; B=ctx->B; C=ctx->C; D=ctx->D; E=ctx->E; in ripemd160_block()
275 RIP1(A,B,C,D,E,WL00,SL00); in ripemd160_block()
276 RIP1(E,A,B,C,D,WL01,SL01); in ripemd160_block()
277 RIP1(D,E,A,B,C,WL02,SL02); in ripemd160_block()
278 RIP1(C,D,E,A,B,WL03,SL03); in ripemd160_block()
279 RIP1(B,C,D,E,A,WL04,SL04); in ripemd160_block()
280 RIP1(A,B,C,D,E,WL05,SL05); in ripemd160_block()
281 RIP1(E,A,B,C,D,WL06,SL06); in ripemd160_block()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLoc.cpp44 Interpret(const DWARFLocationEntry &E);
53 DWARFLocationInterpreter::Interpret(const DWARFLocationEntry &E) { in Interpret() argument
54 switch (E.Kind) { in Interpret()
58 Base = LookupAddr(E.Value0); in Interpret()
60 return createResolverError(E.Value0, E.Kind); in Interpret()
64 std::optional<SectionedAddress> LowPC = LookupAddr(E.Value0); in Interpret()
66 return createResolverError(E.Value0, E.Kind); in Interpret()
67 std::optional<SectionedAddress> HighPC = LookupAddr(E.Value1); in Interpret()
69 return createResolverError(E.Value1, E.Kind); in Interpret()
72 E.Loc}; in Interpret()
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DASTUtils.cpp20 const Expr *E, bool StopAtFirstRefCountedObj, in tryToFindPtrOrigin() argument
22 while (E) { in tryToFindPtrOrigin()
23 if (auto *tempExpr = dyn_cast<MaterializeTemporaryExpr>(E)) { in tryToFindPtrOrigin()
24 E = tempExpr->getSubExpr(); in tryToFindPtrOrigin()
27 if (auto *tempExpr = dyn_cast<CXXBindTemporaryExpr>(E)) { in tryToFindPtrOrigin()
28 E = tempExpr->getSubExpr(); in tryToFindPtrOrigin()
31 if (auto *tempExpr = dyn_cast<CXXTemporaryObjectExpr>(E)) { in tryToFindPtrOrigin()
34 return callback(E, true); in tryToFindPtrOrigin()
38 if (auto *tempExpr = dyn_cast<ParenExpr>(E)) { in tryToFindPtrOrigin()
39 E = tempExpr->getSubExpr(); in tryToFindPtrOrigin()
[all …]

12345678910>>...117