| /openbsd/src/gnu/lib/libstdc++/libstdc++/src/ |
| D | string-inst.cc | 47 typedef basic_string<C> S; typedef 50 template S operator+(const C*, const S&); 51 template S operator+(C, const S&); 52 template S operator+(const S&, const S&); 57 using std::S; 58 template bool operator==(const S::iterator&, const S::iterator&); 59 template bool operator==(const S::const_iterator&, const S::const_iterator&); 68 S::basic_string(C*, C*, const allocator<C>&); 71 S::basic_string(const C*, const C*, const allocator<C>&); 74 S::basic_string(S::iterator, S::iterator, const allocator<C>&); [all …]
|
| /openbsd/src/gnu/llvm/clang/lib/AST/ |
| D | StmtProfile.cpp | 39 void VisitStmt(const Stmt *S); 41 void VisitStmtNoChildren(const Stmt *S) { in VisitStmtNoChildren() argument 42 HandleStmtClass(S->getStmtClass()); in VisitStmtNoChildren() 47 #define STMT(Node, Base) void Visit##Node(const Node *S); 222 void StmtProfiler::VisitStmt(const Stmt *S) { in VisitStmt() argument 223 assert(S && "Requires non-null Stmt pointer"); in VisitStmt() 225 VisitStmtNoChildren(S); in VisitStmt() 227 for (const Stmt *SubStmt : S->children()) { in VisitStmt() 235 void StmtProfiler::VisitDeclStmt(const DeclStmt *S) { in VisitDeclStmt() argument 236 VisitStmt(S); in VisitDeclStmt() [all …]
|
| D | ParentMap.cpp | 29 static void BuildParentMap(MapTy& M, Stmt* S, in BuildParentMap() argument 31 if (!S) in BuildParentMap() 34 switch (S->getStmtClass()) { in BuildParentMap() 36 PseudoObjectExpr *POE = cast<PseudoObjectExpr>(S); in BuildParentMap() 43 for (Stmt *SubStmt : S->children()) in BuildParentMap() 46 M[POE->getSyntacticForm()] = S; in BuildParentMap() 52 M[*I] = S; in BuildParentMap() 59 BinaryConditionalOperator *BCO = cast<BinaryConditionalOperator>(S); in BuildParentMap() 61 M[BCO->getCommon()] = S; in BuildParentMap() 64 M[BCO->getCond()] = S; in BuildParentMap() [all …]
|
| /openbsd/src/gnu/usr.bin/binutils-2.17/include/opcode/ |
| D | convex.h | 42 #define S 2 macro 92 {0,0,rrr,V,S,S}, /* mov */ 93 {0,0,rrr,S,S,V}, /* mov */ 96 {1,2,rrr,V,S,V}, /* merg.f */ 97 {2,2,rrr,V,S,V}, /* mask.f */ 98 {1,1,rrr,V,S,V}, /* merg.t */ 99 {2,1,rrr,V,S,V}, /* mask.t */ 104 {3,3,rrr,V,S,V}, /* mul.s */ 105 {3,4,rrr,V,S,V}, /* mul.d */ 106 {4,3,rrr,V,S,V}, /* div.s */ [all …]
|
| /openbsd/src/gnu/usr.bin/binutils/include/opcode/ |
| D | convex.h | 42 #define S 2 macro 92 {0,0,rrr,V,S,S}, /* mov */ 93 {0,0,rrr,S,S,V}, /* mov */ 96 {1,2,rrr,V,S,V}, /* merg.f */ 97 {2,2,rrr,V,S,V}, /* mask.f */ 98 {1,1,rrr,V,S,V}, /* merg.t */ 99 {2,1,rrr,V,S,V}, /* mask.t */ 104 {3,3,rrr,V,S,V}, /* mul.s */ 105 {3,4,rrr,V,S,V}, /* mul.d */ 106 {4,3,rrr,V,S,V}, /* div.s */ [all …]
|
| /openbsd/src/gnu/usr.bin/perl/regen/ |
| D | opcodes | 31 # scalar - S list - L array - A 34 # num-compare - S< dirhandle - DF infix bitwise - S| 43 scalar scalar ck_fun s% S 54 gelem glob elem ck_null ds2 S S 56 padsv_store padsv scalar assignment ck_sassign s1 S S 68 prototype subroutine prototype ck_prototype su% S? 70 srefgen single ref constructor ck_null fs1 S 71 ref reference-type operator ck_fun stu% S? 72 bless bless ck_fun s@ S S? 76 backtick quoted execution (``, qx) ck_backtick tu% S? [all …]
|
| /openbsd/src/gnu/llvm/clang/lib/AST/Interp/ |
| D | Interp.cpp | 34 static bool Ret(InterpState &S, CodePtr &PC, APValue &Result) { in Ret() argument 35 S.CallStackDepth--; in Ret() 36 const T &Ret = S.Stk.pop<T>(); in Ret() 38 assert(S.Current->getFrameOffset() == S.Stk.size() && "Invalid frame"); in Ret() 39 if (!S.checkingPotentialConstantExpression()) in Ret() 40 S.Current->popArgs(); in Ret() 42 if (InterpFrame *Caller = S.Current->Caller) { in Ret() 43 PC = S.Current->getRetPC(); in Ret() 44 delete S.Current; in Ret() 45 S.Current = Caller; in Ret() [all …]
|
| D | Interp.h | 48 bool CheckExtern(InterpState &S, CodePtr OpPC, const Pointer &Ptr); 51 bool CheckArray(InterpState &S, CodePtr OpPC, const Pointer &Ptr); 54 bool CheckLive(InterpState &S, CodePtr OpPC, const Pointer &Ptr, 57 bool CheckNull(InterpState &S, CodePtr OpPC, const Pointer &Ptr, 61 bool CheckRange(InterpState &S, CodePtr OpPC, const Pointer &Ptr, 65 bool CheckRange(InterpState &S, CodePtr OpPC, const Pointer &Ptr, 69 bool CheckConst(InterpState &S, CodePtr OpPC, const Pointer &Ptr); 72 bool CheckMutable(InterpState &S, CodePtr OpPC, const Pointer &Ptr); 75 bool CheckLoad(InterpState &S, CodePtr OpPC, const Pointer &Ptr); 78 bool CheckStore(InterpState &S, CodePtr OpPC, const Pointer &Ptr); [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/Support/ |
| D | GlobPattern.cpp | 20 static bool hasWildcard(StringRef S) { in hasWildcard() argument 21 return S.find_first_of("?*[\\") != StringRef::npos; in hasWildcard() 26 static Expected<BitVector> expand(StringRef S, StringRef Original) { in expand() argument 31 if (S.size() < 3) in expand() 34 uint8_t Start = S[0]; in expand() 35 uint8_t End = S[2]; in expand() 39 if (S[1] != '-') { in expand() 41 S = S.substr(1); in expand() 53 S = S.substr(3); in expand() 56 for (char C : S) in expand() [all …]
|
| /openbsd/src/gnu/llvm/llvm/utils/gn/secondary/compiler-rt/lib/builtins/ |
| D | BUILD.gn | 41 lse_file = "aarch64/lse.S" 305 "i386/ashldi3.S", 306 "i386/ashrdi3.S", 307 "i386/divdi3.S", 308 "i386/floatdidf.S", 309 "i386/floatdisf.S", 310 "i386/floatdixf.S", 311 "i386/floatundidf.S", 312 "i386/floatundisf.S", 313 "i386/floatundixf.S", [all …]
|
| /openbsd/src/gnu/llvm/clang/lib/Sema/ |
| D | SemaDeclAttr.cpp | 217 static bool checkUInt32Argument(Sema &S, const AttrInfo &AI, const Expr *Expr, in checkUInt32Argument() argument 222 !(I = Expr->getIntegerConstantExpr(S.Context))) { in checkUInt32Argument() 224 S.Diag(getAttrLoc(AI), diag::err_attribute_argument_n_type) in checkUInt32Argument() 228 S.Diag(getAttrLoc(AI), diag::err_attribute_argument_type) in checkUInt32Argument() 234 S.Diag(Expr->getExprLoc(), diag::err_ice_too_large) in checkUInt32Argument() 240 S.Diag(getAttrLoc(AI), diag::err_attribute_requires_positive_integer) in checkUInt32Argument() 253 static bool checkPositiveIntArgument(Sema &S, const AttrInfo &AI, const Expr *Expr, in checkPositiveIntArgument() argument 256 if (!checkUInt32Argument(S, AI, Expr, UVal, Idx)) in checkPositiveIntArgument() 262 S.Diag(Expr->getExprLoc(), diag::err_ice_too_large) in checkPositiveIntArgument() 274 static bool checkAttrMutualExclusion(Sema &S, Decl *D, const ParsedAttr &AL) { in checkAttrMutualExclusion() argument [all …]
|
| D | SemaStmtAttr.cpp | 27 static Attr *handleFallThroughAttr(Sema &S, Stmt *St, const ParsedAttr &A, in handleFallThroughAttr() argument 29 FallThroughAttr Attr(S.Context, A); in handleFallThroughAttr() 31 S.Diag(A.getRange().getBegin(), diag::err_fallthrough_attr_wrong_target) in handleFallThroughAttr() 33 SourceLocation L = S.getLocForEndOfToken(Range.getEnd()); in handleFallThroughAttr() 34 S.Diag(L, diag::note_fallthrough_insert_semi_fixit) in handleFallThroughAttr() 38 auto *FnScope = S.getCurFunction(); in handleFallThroughAttr() 40 S.Diag(A.getRange().getBegin(), diag::err_fallthrough_attr_outside_switch); in handleFallThroughAttr() 46 if (!S.getLangOpts().CPlusPlus17 && A.isCXX11Attribute() && in handleFallThroughAttr() 48 S.Diag(A.getLoc(), diag::ext_cxx17_attr) << A; in handleFallThroughAttr() 51 return ::new (S.Context) FallThroughAttr(S.Context, A); in handleFallThroughAttr() [all …]
|
| D | SemaCoroutine.cpp | 32 static LookupResult lookupMember(Sema &S, const char *Name, CXXRecordDecl *RD, in lookupMember() argument 34 DeclarationName DN = S.PP.getIdentifierInfo(Name); in lookupMember() 35 LookupResult LR(S, DN, Loc, Sema::LookupMemberName); in lookupMember() 39 Res = S.LookupQualifiedName(LR, RD); in lookupMember() 43 static bool lookupMember(Sema &S, const char *Name, CXXRecordDecl *RD, in lookupMember() argument 46 lookupMember(S, Name, RD, Loc, Res); in lookupMember() 52 static QualType lookupPromiseType(Sema &S, const FunctionDecl *FD, in lookupPromiseType() argument 59 S.lookupCoroutineTraits(KwLoc, FuncLoc, CoroNamespace); in lookupPromiseType() 69 TemplateArgument(T), S.Context.getTrivialTypeSourceInfo(T, KwLoc))); in lookupPromiseType() 85 ? S.Context.getRValueReferenceType(T) in lookupPromiseType() [all …]
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/template/ |
| D | ptrmem6.C | 10 struct S struct 16 struct S2 : S argument 19 template<int S::*p, typename> 26 X<&S::i,S> x = X<&S::i,S>(); 27 X<&S::i,S> x2 = X<&S2::i,S>(); 28 X<&S::i,S> y = X<&S::j,S>(); // { dg-error "" } 29 X<&S::i,S> z = X<&R::i,S>(); // { dg-error "" } 37 X<&S::i,S> x2 = X<&S2::i,S>(); in foo() 38 X<&S::i,S> y = X<&S::j,S>(); // { dg-error "" } in foo() 39 X<&S::i,S> z = X<&R::i,S>(); // { dg-error "" } in foo() [all …]
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/ |
| D | 20020927-1.c | 8 #define S(x) #x macro 11 S(1234567890123456789012345678901234567890123456789012345678901234567890 71 S() 72 S() 73 S() 74 S() 75 S() 76 S() 77 S() 78 S() [all …]
|
| /openbsd/src/gnu/llvm/clang/lib/Tooling/Syntax/ |
| D | BuildTree.cpp | 512 if (const auto *S = dyn_cast<TagDecl>(D)) in getDeclarationRange() local 513 Tokens = getRange(S->TypeDecl::getBeginLoc(), S->getEndLoc()); in getDeclarationRange() 525 ArrayRef<syntax::Token> getStmtRange(const Stmt *S) const { in getStmtRange() 526 auto Tokens = getRange(S->getSourceRange()); in getStmtRange() 527 if (isa<CompoundStmt>(S)) in getStmtRange() 743 bool WalkUpFromTemplateDecl(TemplateDecl *S) { in WalkUpFromTemplateDecl() argument 745 Builder.getDeclarationRange(S), in WalkUpFromTemplateDecl() 746 Builder.findToken(S->getTemplateParameters()->getTemplateLoc()), in WalkUpFromTemplateDecl() 747 Builder.getDeclarationRange(S->getTemplatedDecl()), S); in WalkUpFromTemplateDecl() 776 if (auto *S = dyn_cast<ClassTemplatePartialSpecializationDecl>(C)) in handleFreeStandingTagDecl() local [all …]
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/ |
| D | SymbolStringPool.h | 41 SymbolStringPtr intern(StringRef S); 66 : S(Other.S) { 67 if (isRealPoolEntry(S)) 68 ++S->getValue(); 72 if (isRealPoolEntry(S)) { 73 assert(S->getValue() && "Releasing SymbolStringPtr with zero ref count"); 74 --S->getValue(); 76 S = Other.S; 77 if (isRealPoolEntry(S)) 78 ++S->getValue(); [all …]
|
| /openbsd/src/gnu/gcc/libstdc++-v3/src/ |
| D | string-inst.cc | 47 typedef basic_string<C> S; typedef 50 template S operator+(const C*, const S&); 51 template S operator+(C, const S&); 52 template S operator+(const S&, const S&); 58 S::basic_string(C*, C*, const allocator<C>&); 61 S::basic_string(const C*, const C*, const allocator<C>&); 64 S::basic_string(S::iterator, S::iterator, const allocator<C>&); 68 S::_S_construct(S::iterator, S::iterator, 73 S::_S_construct(C*, C*, const allocator<C>&, forward_iterator_tag); 77 S::_S_construct(const C*, const C*, const allocator<C>&, [all …]
|
| /openbsd/src/gnu/llvm/clang/include/clang/AST/ |
| D | StmtDataCollectors.td | 3 addData(S->getStmtClass()); 6 addData(data_collection::getMacroStack(S->getBeginLoc(), Context)); 7 addData(data_collection::getMacroStack(S->getEndLoc(), Context)); 13 addData(S->getType()); 20 addData(S->getTrait()); 25 addData(S->getTrait()); 30 addData(S->getIdentKind()); 35 addData(S->getTrait()); 36 for (unsigned i = 0; i < S->getNumArgs(); ++i) 37 addData(S->getArg(i)->getType()); [all …]
|
| /openbsd/src/gnu/llvm/compiler-rt/lib/builtins/ |
| D | CMakeLists.txt | 313 x86_64/floatundidf.S 314 x86_64/floatundisf.S 322 x86_64/floatundixf.S 332 x86_64/chkstk.S 333 x86_64/chkstk2.S 340 i386/ashldi3.S 341 i386/ashrdi3.S 342 i386/divdi3.S 343 i386/floatdidf.S 344 i386/floatdisf.S [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/Object/ |
| D | RelocationResolver.cpp | 57 static uint64_t resolveX86_64(uint64_t Type, uint64_t Offset, uint64_t S, in resolveX86_64() argument 65 return S + Addend; in resolveX86_64() 68 return S + Addend - Offset; in resolveX86_64() 71 return (S + Addend) & 0xFFFFFFFF; in resolveX86_64() 90 static uint64_t resolveAArch64(uint64_t Type, uint64_t Offset, uint64_t S, in resolveAArch64() argument 94 return (S + Addend) & 0xFFFFFFFF; in resolveAArch64() 96 return S + Addend; in resolveAArch64() 98 return (S + Addend - Offset) & 0xFFFF; in resolveAArch64() 100 return (S + Addend - Offset) & 0xFFFFFFFF; in resolveAArch64() 102 return S + Addend - Offset; in resolveAArch64() [all …]
|
| /openbsd/src/lib/libm/ |
| D | Makefile | 17 ARCH_SRCS = s_copysign.S s_copysignf.S 20 ARCH_SRCS = e_acos.S e_asin.S e_atan2.S e_exp.S e_fmod.S e_log.S e_log10.S \ 21 e_remainder.S e_remainderf.S e_scalb.S e_sqrt.S e_sqrtf.S \ 22 e_sqrtl.S \ 24 s_atan.S s_atanf.S s_ceil.S s_ceilf.S s_copysign.S s_copysignf.S \ 25 s_floor.S s_floorf.S \ 26 s_log1p.S s_log1pf.S s_logb.S s_logbf.S \ 27 s_llrint.S s_llrintf.S s_lrint.S s_lrintf.S s_rint.S s_rintf.S\ 28 s_scalbnf.S s_significand.S s_significandf.S 32 ARCH_SRCS = e_acos.S e_asin.S e_atan2.S e_exp.S e_fmod.S e_log.S e_log10.S \ [all …]
|
| /openbsd/src/gnu/gcc/gcc/ |
| D | dwarf2asm.c | 356 #define S(p, v) [p] = v, in eh_data_format_name() macro 358 #define S(p, v) case p: return v; in eh_data_format_name() 367 S(DW_EH_PE_absptr, "absolute") in eh_data_format_name() 368 S(DW_EH_PE_omit, "omit") in eh_data_format_name() 369 S(DW_EH_PE_aligned, "aligned absolute") in eh_data_format_name() 371 S(DW_EH_PE_uleb128, "uleb128") in eh_data_format_name() 372 S(DW_EH_PE_udata2, "udata2") in eh_data_format_name() 373 S(DW_EH_PE_udata4, "udata4") in eh_data_format_name() 374 S(DW_EH_PE_udata8, "udata8") in eh_data_format_name() 375 S(DW_EH_PE_sleb128, "sleb128") in eh_data_format_name() [all …]
|
| /openbsd/src/gnu/gcc/gcc/config/soft-fp/ |
| D | single.h | 75 #define FP_UNPACK_RAW_S(X,val) _FP_UNPACK_RAW_1(S,X,val) 76 #define FP_UNPACK_RAW_SP(X,val) _FP_UNPACK_RAW_1_P(S,X,val) 77 #define FP_PACK_RAW_S(val,X) _FP_PACK_RAW_1(S,val,X) 81 _FP_PACK_RAW_1_P(S,val,X); \ 86 _FP_UNPACK_RAW_1(S,X,val); \ 87 _FP_UNPACK_CANONICAL(S,1,X); \ 92 _FP_UNPACK_RAW_1_P(S,X,val); \ 93 _FP_UNPACK_CANONICAL(S,1,X); \ 98 _FP_UNPACK_RAW_1(S,X,val); \ 99 _FP_UNPACK_SEMIRAW(S,1,X); \ [all …]
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/Support/ |
| D | YAMLTraits.h | 565 inline bool isNumeric(StringRef S) { 572 if (S.empty() || S.equals("+") || S.equals("-")) 575 if (S.equals(".nan") || S.equals(".NaN") || S.equals(".NAN")) 579 StringRef Tail = (S.front() == '-' || S.front() == '+') ? S.drop_front() : S; 589 if (S.startswith("0o")) 590 return S.size() > 2 && 591 S.drop_front(2).find_first_not_of("01234567") == StringRef::npos; 593 if (S.startswith("0x")) 594 return S.size() > 2 && S.drop_front(2).find_first_not_of( 598 S = Tail; [all …]
|