| /openbsd/src/gnu/gcc/gcc/ |
| D | vec.h | 148 #define VEC_length(T,V) (VEC_OP(T,base,length)(VEC_BASE(V))) argument 156 #define VEC_empty(T,V) (VEC_length (T,V) == 0) argument 166 #define VEC_last(T,V) (VEC_OP(T,base,last)(VEC_BASE(V) VEC_CHECK_INFO)) argument 175 #define VEC_index(T,V,I) (VEC_OP(T,base,index)(VEC_BASE(V),I VEC_CHECK_INFO)) argument 189 #define VEC_iterate(T,V,I,P) (VEC_OP(T,base,iterate)(VEC_BASE(V),I,&(P))) argument 197 #define VEC_alloc(T,A,N) (VEC_OP(T,A,alloc)(N MEM_STAT_INFO)) argument 204 #define VEC_free(T,A,V) (VEC_OP(T,A,free)(&V)) argument 214 #define VEC_embedded_size(T,N) (VEC_OP(T,base,embedded_size)(N)) argument 215 #define VEC_embedded_init(T,O,N) (VEC_OP(T,base,embedded_init)(VEC_BASE(O),N)) argument 223 #define VEC_copy(T,A,V) (VEC_OP(T,A,copy)(VEC_BASE(V) MEM_STAT_INFO)) argument [all …]
|
| D | lambda.h | 50 #define LTM_MATRIX(T) ((T)->matrix) argument 51 #define LTM_ROWSIZE(T) ((T)->rowsize) argument 52 #define LTM_COLSIZE(T) ((T)->colsize) argument 53 #define LTM_DENOMINATOR(T) ((T)->denominator) argument 70 #define LBV_COEFFICIENTS(T) ((T)->coefficients) argument 71 #define LBV_SIZE(T) ((T)->size) argument 72 #define LBV_DENOMINATOR(T) ((T)->denominator) argument 95 #define LLE_COEFFICIENTS(T) ((T)->coefficients) argument 96 #define LLE_CONSTANT(T) ((T)->constant) argument 97 #define LLE_INVARIANT_COEFFICIENTS(T) ((T)->invariant_coefficients) argument [all …]
|
| /openbsd/src/gnu/llvm/clang/lib/AST/ |
| D | ODRHash.cpp | 272 void AddQualType(QualType T) { in AddQualType() 835 void AddQualType(QualType T) { in AddQualType() 839 void AddType(const Type *T) { in AddType() 866 static const Type *RemoveTypedef(const Type *T) { in RemoveTypedef() 908 void Visit(const Type *T) { in Visit() 914 void VisitType(const Type *T) {} in VisitType() 916 void VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType() 944 void VisitDecayedType(const DecayedType *T) { in VisitDecayedType() 950 void VisitArrayType(const ArrayType *T) { in VisitArrayType() 956 void VisitConstantArrayType(const ConstantArrayType *T) { in VisitConstantArrayType() [all …]
|
| D | TypePrinter.cpp | 191 void TypePrinter::print(const Type *T, Qualifiers Quals, raw_ostream &OS, in print() 205 bool TypePrinter::canPrefixQualifiers(const Type *T, in canPrefixQualifiers() 304 void TypePrinter::printBefore(QualType T, raw_ostream &OS) { in printBefore() 318 void TypePrinter::printBefore(const Type *T,Qualifiers Quals, raw_ostream &OS) { in printBefore() 371 void TypePrinter::printAfter(const Type *T, Qualifiers Quals, raw_ostream &OS) { in printAfter() 381 void TypePrinter::printBuiltinBefore(const BuiltinType *T, raw_ostream &OS) { in printBuiltinBefore() 386 void TypePrinter::printBuiltinAfter(const BuiltinType *T, raw_ostream &OS) {} in printBuiltinAfter() 388 void TypePrinter::printComplexBefore(const ComplexType *T, raw_ostream &OS) { in printComplexBefore() 393 void TypePrinter::printComplexAfter(const ComplexType *T, raw_ostream &OS) { in printComplexAfter() 397 void TypePrinter::printPointerBefore(const PointerType *T, raw_ostream &OS) { in printPointerBefore() [all …]
|
| D | MicrosoftMangle.cpp | 1284 void MicrosoftCXXNameMangler::mangleCXXDtorType(CXXDtorType T) { in mangleCXXDtorType() 1587 QualType T = TA.getAsType(); in mangleTemplateArg() local 1618 QualType T = TA.getIntegralType(); in mangleTemplateArg() local 1624 QualType T = TA.getNullPtrType(); in mangleTemplateArg() local 1694 void MicrosoftCXXNameMangler::mangleTemplateArgValue(QualType T, in mangleTemplateArgValue() 1754 QualType T = Base.getType(); in mangleTemplateArgValue() local 1941 void MicrosoftCXXNameMangler::mangleObjCKindOfType(const ObjCObjectType *T, in mangleObjCKindOfType() 2093 void MicrosoftCXXNameMangler::mangleFunctionArgumentType(QualType T, in mangleFunctionArgumentType() 2167 void MicrosoftCXXNameMangler::mangleAddressSpaceType(QualType T, in mangleAddressSpaceType() 2240 void MicrosoftCXXNameMangler::mangleType(QualType T, SourceRange Range, in mangleType() [all …]
|
| D | TypeLoc.cpp | 654 TypeLoc VisitElaboratedTypeLoc(ElaboratedTypeLoc T) { in VisitElaboratedTypeLoc() 658 TypeLoc VisitQualifiedTypeLoc(QualifiedTypeLoc T) { in VisitQualifiedTypeLoc() 662 TypeLoc VisitPointerTypeLoc(PointerTypeLoc T) { in VisitPointerTypeLoc() 666 TypeLoc VisitBlockPointerTypeLoc(BlockPointerTypeLoc T) { in VisitBlockPointerTypeLoc() 670 TypeLoc VisitReferenceTypeLoc(ReferenceTypeLoc T) { in VisitReferenceTypeLoc() 674 TypeLoc VisitMemberPointerTypeLoc(MemberPointerTypeLoc T) { in VisitMemberPointerTypeLoc() 678 TypeLoc VisitArrayTypeLoc(ArrayTypeLoc T) { in VisitArrayTypeLoc() 682 TypeLoc VisitFunctionTypeLoc(FunctionTypeLoc T) { in VisitFunctionTypeLoc() 686 TypeLoc VisitParenTypeLoc(ParenTypeLoc T) { in VisitParenTypeLoc() 690 TypeLoc VisitAttributedTypeLoc(AttributedTypeLoc T) { in VisitAttributedTypeLoc() [all …]
|
| D | CommentLexer.cpp | 296 void Lexer::lexCommentText(Token &T) { in lexCommentText() 459 void Lexer::setupAndLexVerbatimBlock(Token &T, in setupAndLexVerbatimBlock() 484 void Lexer::lexVerbatimBlockFirstLine(Token &T) { in lexVerbatimBlockFirstLine() 529 void Lexer::lexVerbatimBlockBody(Token &T) { in lexVerbatimBlockBody() 544 void Lexer::setupAndLexVerbatimLine(Token &T, const char *TextBegin, in setupAndLexVerbatimLine() 553 void Lexer::lexVerbatimLineText(Token &T) { in lexVerbatimLineText() 565 void Lexer::lexHTMLCharacterReference(Token &T) { in lexHTMLCharacterReference() 627 void Lexer::setupAndLexHTMLStartTag(Token &T) { in setupAndLexHTMLStartTag() 648 void Lexer::lexHTMLStartTag(Token &T) { in lexHTMLStartTag() 710 void Lexer::setupAndLexHTMLEndTag(Token &T) { in setupAndLexHTMLEndTag() [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/ |
| D | TargetMachineC.cpp | 52 LLVMTargetRef LLVMGetNextTarget(LLVMTargetRef T) { in LLVMGetNextTarget() 59 [&](const Target &T) { return T.getName() == NameRef; }); in LLVMGetTargetFromName() 63 LLVMBool LLVMGetTargetFromTriple(const char* TripleStr, LLVMTargetRef *T, in LLVMGetTargetFromTriple() 79 const char * LLVMGetTargetName(LLVMTargetRef T) { in LLVMGetTargetName() 83 const char * LLVMGetTargetDescription(LLVMTargetRef T) { in LLVMGetTargetDescription() 87 LLVMBool LLVMTargetHasJIT(LLVMTargetRef T) { in LLVMTargetHasJIT() 91 LLVMBool LLVMTargetHasTargetMachine(LLVMTargetRef T) { in LLVMTargetHasTargetMachine() 95 LLVMBool LLVMTargetHasAsmBackend(LLVMTargetRef T) { in LLVMTargetHasAsmBackend() 99 LLVMTargetMachineRef LLVMCreateTargetMachine(LLVMTargetRef T, in LLVMCreateTargetMachine() 151 void LLVMDisposeTargetMachine(LLVMTargetMachineRef T) { delete unwrap(T); } in LLVMDisposeTargetMachine() [all …]
|
| /openbsd/src/gnu/llvm/clang/tools/libclang/ |
| D | CXType.cpp | 86 static CXTypeKind GetTypeKind(QualType T) { in GetTypeKind() 129 CXType cxtype::MakeCXType(QualType T, CXTranslationUnit TU) { in MakeCXType() 233 QualType T = cxcursor::getCursorExpr(C)->getType(); in clang_getCursorType() local 260 QualType T in clang_getCursorType() local 266 QualType T = Context.getObjCInterfaceType(getCursorObjCClassRef(C).first); in clang_getCursorType() local 271 QualType T = Context.getTypeDeclType(getCursorTypeRef(C).first); in clang_getCursorType() local 300 QualType T = GetQualType(CT); in clang_getTypeSpelling() local 322 QualType T = TD->getUnderlyingType(); in clang_getTypedefDeclUnderlyingType() local 340 QualType T = TD->getIntegerType(); in clang_getEnumDeclIntegerType() local 401 QualType T = GetQualType(CT); in clang_getCanonicalType() local [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/BinaryFormat/ |
| D | MachO.cpp | 15 static MachO::CPUSubTypeX86 getX86SubType(const Triple &T) { in getX86SubType() 26 static MachO::CPUSubTypeARM getARMSubType(const Triple &T) { in getARMSubType() 57 static MachO::CPUSubTypeARM64 getARM64SubType(const Triple &T) { in getARM64SubType() 67 static MachO::CPUSubTypePowerPC getPowerPCSubType(const Triple &T) { in getPowerPCSubType() 71 static Error unsupported(const char *Str, const Triple &T) { in unsupported() 77 Expected<uint32_t> MachO::getCPUType(const Triple &T) { in getCPUType() 95 Expected<uint32_t> MachO::getCPUSubType(const Triple &T) { in getCPUSubType()
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/ |
| D | cond2.C | 8 struct T struct 11 T(int j) { i = j; printf("UP\n"); up++; } in T() function 12 T(const T& t) { i = t.i; printf("unwanted copy\n"); } in T() argument 13 ~T() { printf ("DOWN\n"); down++; } in ~T() argument
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/testsuite/23_containers/ |
| D | deque_ctor.cc | 61 typedef int T; in requiredTypesCheck() typedef 124 typedef int T; in defaultConstructorCheckPOD() typedef 144 typedef copy_tracker T; in defaultConstructorCheck() typedef 182 typedef copy_tracker T; in copyConstructorCheck() typedef 223 typedef copy_tracker T; in fillConstructorCheck() typedef 250 typedef copy_tracker T; in fillConstructorCheck2() typedef 276 typedef copy_tracker T; in rangeConstructorCheckForwardIterator() typedef 306 typedef copy_tracker T; in rangeConstructorCheckInputIterator() typedef 327 typedef copy_tracker T; in copyAssignmentCheck() typedef 354 typedef copy_tracker T; in fillAssignmentCheck() typedef [all …]
|
| D | vector_ctor.cc | 114 typedef copy_tracker T; in test_default_ctor_exception_gurantee() typedef 147 typedef copy_tracker T; in test_copy_ctor_exception_gurantee() typedef 186 typedef copy_tracker T; in test_assignment_operator_1() typedef 214 typedef copy_tracker T; in test_assignment_operator_2() typedef 244 typedef copy_tracker T; in test_assignment_operator_3() typedef 274 typedef copy_tracker T; in test_assignment_operator_3_exception_guarantee() typedef 319 typedef copy_tracker T; in test_fill_assign_1() typedef 347 typedef copy_tracker T; in test_fill_assign_2() typedef 381 typedef copy_tracker T; in test_fill_assign_3() typedef 417 typedef copy_tracker T; in test_fill_assign_3_exception_guarantee() typedef [all …]
|
| /openbsd/src/gnu/llvm/clang/include/clang/AST/ |
| D | ASTNodeTraverser.h | 159 void Visit(QualType T) { in Visit() 170 void Visit(const Type *T) { in Visit() 283 else if (const auto *T = N.get<Type>()) in Visit() local 289 else if (const auto *T = N.get<TemplateArgument>()) in Visit() local 341 void VisitComplexType(const ComplexType *T) { Visit(T->getElementType()); } in VisitComplexType() 342 void VisitLocInfoType(const LocInfoType *T) { in VisitLocInfoType() 345 void VisitPointerType(const PointerType *T) { Visit(T->getPointeeType()); } in VisitPointerType() 346 void VisitBlockPointerType(const BlockPointerType *T) { in VisitBlockPointerType() 349 void VisitReferenceType(const ReferenceType *T) { in VisitReferenceType() 352 void VisitMemberPointerType(const MemberPointerType *T) { in VisitMemberPointerType() [all …]
|
| D | StmtOpenMP.h | 676 static bool classof(const Stmt *T) { in classof() 952 static bool classof(const Stmt *T) { in classof() 994 static bool classof(const Stmt *T) { in classof() 1519 static bool classof(const Stmt *T) { in classof() 1619 static bool classof(const Stmt *T) { in classof() 1709 static bool classof(const Stmt *T) { in classof() 1772 static bool classof(const Stmt *T) { in classof() 1852 static bool classof(const Stmt *T) { in classof() 1912 static bool classof(const Stmt *T) { in classof() 1965 static bool classof(const Stmt *T) { in classof() [all …]
|
| /openbsd/src/gnu/gcc/include/ |
| D | libiberty.h | 312 #define XNEW(T) ((T *) xmalloc (sizeof (T))) argument 313 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T))) argument 318 #define XNEWVEC(T, N) ((T *) xmalloc (sizeof (T) * (N))) argument 319 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T))) argument 320 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N))) argument 325 #define XNEWVAR(T, S) ((T *) xmalloc ((S))) argument 326 #define XCNEWVAR(T, S) ((T *) xcalloc (1, (S))) argument 327 #define XRESIZEVAR(T, P, S) ((T *) xrealloc ((P), (S))) argument 331 #define XOBNEW(O, T) ((T *) obstack_alloc ((O), sizeof (T))) argument 332 #define XOBFINISH(O, T) ((T) obstack_finish ((O))) argument
|
| /openbsd/src/gnu/lib/libiberty/include/ |
| D | libiberty.h | 312 #define XNEW(T) ((T *) xmalloc (sizeof (T))) argument 313 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T))) argument 318 #define XNEWVEC(T, N) ((T *) xmalloc (sizeof (T) * (N))) argument 319 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T))) argument 320 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N))) argument 325 #define XNEWVAR(T, S) ((T *) xmalloc ((S))) argument 326 #define XCNEWVAR(T, S) ((T *) xcalloc (1, (S))) argument 327 #define XRESIZEVAR(T, P, S) ((T *) xrealloc ((P), (S))) argument 331 #define XOBNEW(O, T) ((T *) obstack_alloc ((O), sizeof (T))) argument 332 #define XOBFINISH(O, T) ((T) obstack_finish ((O))) argument
|
| /openbsd/src/gnu/usr.bin/binutils-2.17/include/ |
| D | libiberty.h | 312 #define XNEW(T) ((T *) xmalloc (sizeof (T))) argument 313 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T))) argument 318 #define XNEWVEC(T, N) ((T *) xmalloc (sizeof (T) * (N))) argument 319 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T))) argument 320 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N))) argument 325 #define XNEWVAR(T, S) ((T *) xmalloc ((S))) argument 326 #define XCNEWVAR(T, S) ((T *) xcalloc (1, (S))) argument 327 #define XRESIZEVAR(T, P, S) ((T *) xrealloc ((P), (S))) argument 331 #define XOBNEW(O, T) ((T *) obstack_alloc ((O), sizeof (T))) argument 332 #define XOBFINISH(O, T) ((T) obstack_finish ((O))) argument
|
| /openbsd/src/gnu/llvm/llvm/lib/MC/ |
| D | MCObjectFileInfo.cpp | 30 static bool useCompactUnwind(const Triple &T) { in useCompactUnwind() 54 void MCObjectFileInfo::initMachOMCObjectFileInfo(const Triple &T) { in initMachOMCObjectFileInfo() 329 void MCObjectFileInfo::initELFMCObjectFileInfo(const Triple &T, bool Large) { in initELFMCObjectFileInfo() 537 void MCObjectFileInfo::initGOFFMCObjectFileInfo(const Triple &T) { in initGOFFMCObjectFileInfo() 547 void MCObjectFileInfo::initCOFFMCObjectFileInfo(const Triple &T) { in initCOFFMCObjectFileInfo() 827 void MCObjectFileInfo::initSPIRVMCObjectFileInfo(const Triple &T) { in initSPIRVMCObjectFileInfo() 832 void MCObjectFileInfo::initWasmMCObjectFileInfo(const Triple &T) { in initWasmMCObjectFileInfo() 918 void MCObjectFileInfo::initXCOFFMCObjectFileInfo(const Triple &T) { in initXCOFFMCObjectFileInfo() 1028 void MCObjectFileInfo::initDXContainerObjectFileInfo(const Triple &T) { in initDXContainerObjectFileInfo()
|
| /openbsd/src/gnu/llvm/llvm/lib/Support/ |
| D | YAMLParser.cpp | 604 Token T = scanner.getNext(); in dumpTokens() local 688 Token T = scanner.getNext(); in scanTokens() local 1102 Token T; in unrollIndent() local 1126 Token T; in rollIndent() local 1174 Token T; in scanStreamStart() local 1193 Token T; in scanStreamEnd() local 1213 Token T; in scanDirective() local 1237 Token T; in scanDocumentIndicator() local 1246 Token T; in scanFlowCollectionStart() local 1265 Token T; in scanFlowCollectionEnd() local [all …]
|
| /openbsd/src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| D | BasicValueFactory.h | 41 QualType T; variable 148 APSIntType getAPSIntType(QualType T) const { in getAPSIntType() 177 const llvm::APSInt &Convert(QualType T, const llvm::APSInt &From) { in Convert() 190 QualType T = isUnsigned ? Ctx.UnsignedIntTy : Ctx.IntTy; in getIntValue() local 202 const llvm::APSInt &getMaxValue(QualType T) { in getMaxValue() 206 const llvm::APSInt &getMinValue(QualType T) { in getMinValue() 210 const llvm::APSInt &getMaxValue(APSIntType T) { in getMaxValue() 214 const llvm::APSInt &getMinValue(APSIntType T) { in getMinValue() 230 const llvm::APSInt &getZeroWithTypeSize(QualType T) { in getZeroWithTypeSize() 235 const llvm::APSInt &getTruthValue(bool b, QualType T) { in getTruthValue()
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/ |
| D | init13.C | 8 struct T { struct 11 T( int g):m(g){} in T() argument
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/gcov/ |
| D | gcov-3.h | 21 struct T { struct 23 T() { i = 0; } in T() argument
|
| /openbsd/src/gnu/llvm/clang/lib/Sema/ |
| D | TypeLocBuilder.h | 73 TypeSpecTypeLoc pushTypeSpec(QualType T) { in pushTypeSpec() 91 void TypeWasModifiedSafely(QualType T) { in TypeWasModifiedSafely() 99 template <class TyLocType> TyLocType push(QualType T) { in push() 107 TypeSourceInfo *getTypeSourceInfo(ASTContext& Context, QualType T) { in getTypeSourceInfo() 120 TypeLoc getTypeLocInContext(ASTContext &Context, QualType T) { in getTypeLocInContext() 144 TypeLoc getTemporaryTypeLoc(QualType T) { in getTemporaryTypeLoc()
|
| /openbsd/src/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/ |
| D | scudo_unit_test.h | 37 #define SKIP_ON_FUCHSIA(T) DISABLED_##T argument 39 #define SKIP_ON_FUCHSIA(T) T argument 43 #define SKIP_NO_DEBUG(T) T argument 45 #define SKIP_NO_DEBUG(T) DISABLED_##T argument
|