/freebsd/contrib/llvm-project/llvm/lib/Target/ |
H A D | Target.cpp | 55 void LLVMDisposeTargetData(LLVMTargetDataRef TD) { in LLVMDisposeTargetData() argument 56 delete unwrap(TD); in LLVMDisposeTargetData() 64 char *LLVMCopyStringRepOfTargetData(LLVMTargetDataRef TD) { in LLVMCopyStringRepOfTargetData() argument 65 std::string StringRep = unwrap(TD)->getStringRepresentation(); in LLVMCopyStringRepOfTargetData() 69 LLVMByteOrdering LLVMByteOrder(LLVMTargetDataRef TD) { in LLVMByteOrder() argument 70 return unwrap(TD)->isLittleEndian() ? LLVMLittleEndian : LLVMBigEndian; in LLVMByteOrder() 73 unsigned LLVMPointerSize(LLVMTargetDataRef TD) { in LLVMPointerSize() argument 74 return unwrap(TD)->getPointerSize(0); in LLVMPointerSize() 77 unsigned LLVMPointerSizeForAS(LLVMTargetDataRef TD, unsigned AS) { in LLVMPointerSizeForAS() argument 78 return unwrap(TD)->getPointerSize(AS); in LLVMPointerSizeForAS() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
H A D | Target.h | 201 void LLVMDisposeTargetData(LLVMTargetDataRef TD); 212 char *LLVMCopyStringRepOfTargetData(LLVMTargetDataRef TD); 217 enum LLVMByteOrdering LLVMByteOrder(LLVMTargetDataRef TD); 221 unsigned LLVMPointerSize(LLVMTargetDataRef TD); 226 unsigned LLVMPointerSizeForAS(LLVMTargetDataRef TD, unsigned AS); 230 LLVMTypeRef LLVMIntPtrType(LLVMTargetDataRef TD); 235 LLVMTypeRef LLVMIntPtrTypeForAS(LLVMTargetDataRef TD, unsigned AS); 239 LLVMTypeRef LLVMIntPtrTypeInContext(LLVMContextRef C, LLVMTargetDataRef TD); 244 LLVMTypeRef LLVMIntPtrTypeForASInContext(LLVMContextRef C, LLVMTargetDataRef TD, 249 unsigned long long LLVMSizeOfTypeInBits(LLVMTargetDataRef TD, LLVMTypeRef Ty); [all …]
|
/freebsd/contrib/ncurses/progs/ |
H A D | tparm_type.c | 46 #define TD(code, longname, ti, tc) \ in tparm_type() macro 50 #define XD(code, onlyname) TD(code, onlyname, onlyname, onlyname) in tparm_type() 57 TD(Num_Str, "pkey_key", "pfkey", "pk"), in tparm_type() 58 TD(Num_Str, "pkey_local", "pfloc", "pl"), in tparm_type() 59 TD(Num_Str, "pkey_xmit", "pfx", "px"), in tparm_type() 60 TD(Num_Str, "plab_norm", "pln", "pn"), in tparm_type() 61 TD(Num_Str_Str, "pkey_plab", "pfxl", "xl"), in tparm_type()
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | ber | 15 # - TAP files (TD.57) - CDR batches and notifications 16 # - RAP files (TD.32) - return batches and acknowledgements 17 # - NRT files (TD.35) - CDR batches for 'near real time' processing 22 # cf. https://www.gsma.com/newsroom/wp-content/uploads/TD.57-v32.31.pdf 31 >>>>&0 byte x TAP 3.%d Batch (TD.57, Transferred Account) 39 >>>&0 byte x TAP 3.%d Notification (TD.57, Transferred Account) 47 >>&0 byte x NRT 2.%d (TD.35, Near Real Time Roaming Data Exchange) 50 # cf. https://www.gsma.com/newsroom/wp-content/uploads/TD.32-v6.11.pdf 59 >>>>&0 byte x RAP 1.%d Batch (TD.32, Returned Account Procedure), 65 >&1 search/b5 \x5f\x81\x44 RAP Acknowledgement (TD.32, Returned Account Procedure)
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | LLVMConventionsChecker.cpp | 57 const TypedefNameDecl *TD = TT->getDecl(); in IsStdString() local 59 if (!TD->isInStdNamespace()) in IsStdString() 62 return TD->getName() == "string"; in IsStdString() 87 TemplateDecl *TD = TM.getAsTemplateDecl(); in IsStdVector() local 89 if (!TD || !InNamespace(TD, "std")) in IsStdVector() 92 return TD->getName() == "vector"; in IsStdVector() 101 TemplateDecl *TD = TM.getAsTemplateDecl(); in IsSmallVector() local 103 if (!TD || !InNamespace(TD, "llvm")) in IsSmallVector() 106 return TD->getName() == "SmallVector"; in IsSmallVector()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | QualTypeNames.cpp | 46 const ASTContext &Ctx, const TypeDecl *TD, 202 } else if (const auto *TD = dyn_cast<TagDecl>(DC)) { in createOuterNNS() local 203 return createNestedNameSpecifier(Ctx, TD, FullyQualify, WithGlobalNsPrefix); in createOuterNNS() 244 const TagDecl *TD = nullptr; in getFullyQualifiedNestedNameSpecifier() local 246 TD = TagDeclType->getDecl(); in getFullyQualifiedNestedNameSpecifier() 248 TD = Type->getAsCXXRecordDecl(); in getFullyQualifiedNestedNameSpecifier() 250 if (TD) { in getFullyQualifiedNestedNameSpecifier() 251 return TypeName::createNestedNameSpecifier(Ctx, TD, in getFullyQualifiedNestedNameSpecifier() 299 } else if (const auto *TD = dyn_cast<TagDecl>(Outer)) { in createNestedNameSpecifierForScopeOf() local 301 Ctx, TD, FullyQualified, WithGlobalNsPrefix); in createNestedNameSpecifierForScopeOf() [all …]
|
H A D | CXXABI.h | 63 virtual void addTypedefNameForUnnamedTagDecl(TagDecl *TD, 67 getTypedefNameForUnnamedTagDecl(const TagDecl *TD) = 0; 69 virtual void addDeclaratorForUnnamedTagDecl(TagDecl *TD, 72 virtual DeclaratorDecl *getDeclaratorForUnnamedTagDecl(const TagDecl *TD) = 0;
|
H A D | ItaniumCXXABI.cpp | 180 unsigned getManglingNumber(const TagDecl *TD, unsigned) override { in getManglingNumber() argument 181 return ++TagManglingNumbers[TD->getIdentifier()]; in getManglingNumber() 268 void addTypedefNameForUnnamedTagDecl(TagDecl *TD, in addTypedefNameForUnnamedTagDecl() argument 271 TypedefNameDecl *getTypedefNameForUnnamedTagDecl(const TagDecl *TD) override { in getTypedefNameForUnnamedTagDecl() argument 275 void addDeclaratorForUnnamedTagDecl(TagDecl *TD, in addDeclaratorForUnnamedTagDecl() argument 278 DeclaratorDecl *getDeclaratorForUnnamedTagDecl(const TagDecl *TD) override { in getDeclaratorForUnnamedTagDecl() argument
|
H A D | ItaniumMangle.cpp | 513 void mangleTemplateName(const TemplateDecl *TD, 546 void mangleNestedName(const TemplateDecl *TD, 982 if (const TemplateDecl *TD = FD->getPrimaryTemplate()) { in isTemplate() local 984 return GD.getWithDecl(TD); in isTemplate() 1006 const TemplateDecl *TD = dyn_cast_or_null<TemplateDecl>(GD.getDecl()); in asTemplateName() local 1007 return TemplateName(const_cast<TemplateDecl*>(TD)); in asTemplateName() 1096 if (GlobalDecl TD = isTemplate(GD, TemplateArgs)) { in mangleNameWithAbiTags() local 1097 mangleUnscopedTemplateName(TD, DC, AdditionalAbiTags); in mangleNameWithAbiTags() 1098 mangleTemplateArgs(asTemplateName(TD), *TemplateArgs); in mangleNameWithAbiTags() 1146 void CXXNameMangler::mangleTemplateName(const TemplateDecl *TD, in mangleTemplateName() argument [all …]
|
H A D | StmtIterator.cpp | 84 else if (TypedefNameDecl* TD = dyn_cast<TypedefNameDecl>(D)) { in HandleDecl() local 86 FindVA(TD->getUnderlyingType().getTypePtr())) { in HandleDecl()
|
/freebsd/contrib/netbsd-tests/sbin/resize_ffs/ |
H A D | common.sh | 64 uudecode -p ${TDBASE64} | (cd mnt; tar xzf - -s/testdata/TD$1/) 79 rm -rf mnt/TD$1 94 (cd mnt/TD$1 && md5 *) > TD$1.md5 95 atf_check diff -u ${GOODMD5} TD$1.md5
|
/freebsd/contrib/llvm-project/clang/lib/Interpreter/ |
H A D | InterpreterUtils.cpp | 55 if (const auto *TD = dyn_cast<clang::TagDecl>(Within); in LookupNamespace() local 56 TD && !TD->getDefinition()) in LookupNamespace() 83 if (const auto *TD = dyn_cast<TagDecl>(Within)) in LookupNamed() local 84 PrimaryWithin = llvm::dyn_cast_or_null<DeclContext>(TD->getDefinition()); in LookupNamed()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/ |
H A D | xray_profile_collector.cpp | 316 for (auto &TD : *TDArray) { in reset() 317 TD.BQ->releaseBuffer(TD.Buffers.NodeBuffer); in reset() 318 TD.BQ->releaseBuffer(TD.Buffers.RootsBuffer); in reset() 319 TD.BQ->releaseBuffer(TD.Buffers.ShadowStackBuffer); in reset() 320 TD.BQ->releaseBuffer(TD.Buffers.NodeIdPairBuffer); in reset()
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | ASTConsumers.cpp | 103 if (auto *TD = dyn_cast<TemplateDecl>(D)) in print() local 104 InnerD = TD->getTemplatedDecl(); in print() 110 if (auto *TD = dyn_cast<TypeDecl>(InnerD)) in print() local 111 TD->getTypeForDecl()->dump(Out, TD->getASTContext()); in print()
|
H A D | MultiplexConsumer.cpp | 94 void AddedCXXTemplateSpecialization(const ClassTemplateDecl *TD, 96 void AddedCXXTemplateSpecialization(const VarTemplateDecl *TD, 98 void AddedCXXTemplateSpecialization(const FunctionTemplateDecl *TD, 153 const ClassTemplateDecl *TD, const ClassTemplateSpecializationDecl *D) { in AddedCXXTemplateSpecialization() argument 155 Listeners[i]->AddedCXXTemplateSpecialization(TD, D); in AddedCXXTemplateSpecialization() 158 const VarTemplateDecl *TD, const VarTemplateSpecializationDecl *D) { in AddedCXXTemplateSpecialization() argument 160 Listeners[i]->AddedCXXTemplateSpecialization(TD, D); in AddedCXXTemplateSpecialization() 163 const FunctionTemplateDecl *TD, const FunctionDecl *D) { in AddedCXXTemplateSpecialization() argument 165 Listeners[i]->AddedCXXTemplateSpecialization(TD, D); in AddedCXXTemplateSpecialization()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-cxxdump/ |
H A D | llvm-cxxdump.cpp | 271 TypeDescriptor TD; in dumpCXXData() local 273 TD.AlwaysZero = *reinterpret_cast<const little64_t *>(DataPtr); in dumpCXXData() 275 TD.AlwaysZero = *reinterpret_cast<const little32_t *>(DataPtr); in dumpCXXData() 276 TD.MangledName = SymContents.drop_front(BytesInAddress * 2); in dumpCXXData() 277 StringRef *I = std::begin(TD.Symbols), *E = std::end(TD.Symbols); in dumpCXXData() 279 TDs[SymName] = TD; in dumpCXXData() 396 const TypeDescriptor &TD = TDPair.second; in dumpCXXData() local 397 outs() << TDName << "[VFPtr]: " << TD.Symbols[0] << '\n'; in dumpCXXData() 398 outs() << TDName << "[AlwaysZero]: " << TD in dumpCXXData() [all...] |
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ASTMutationListener.h | 63 virtual void AddedCXXTemplateSpecialization(const ClassTemplateDecl *TD, in AddedCXXTemplateSpecialization() argument 69 AddedCXXTemplateSpecialization(const VarTemplateDecl *TD, in AddedCXXTemplateSpecialization() argument 74 virtual void AddedCXXTemplateSpecialization(const FunctionTemplateDecl *TD, in AddedCXXTemplateSpecialization() argument
|
H A D | JSONNodeDumper.h | 248 void VisitTypedefDecl(const TypedefDecl *TD); 422 void writeTemplateDecl(const TemplateDecl *TD, bool DumpExplicitInst) { in writeTemplateDecl() argument 429 dumpTemplateParameters(TD->getTemplateParameters()); in writeTemplateDecl() 431 Visit(TD->getTemplatedDecl()); in writeTemplateDecl() 433 for (const auto *Child : TD->specializations()) in writeTemplateDecl() 435 !TD->isCanonicalDecl()); in writeTemplateDecl()
|
/freebsd/tools/tools/vop_table/ |
H A D | vop_table.pl | 32 open TD, "vnode_if_typedef.h" || die "Unable to open typedef file: $!\n"; 33 @vop_tdefs = <TD>; 34 close TD;
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaCXXScopeSpec.cpp | 338 if (const TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(SD)) { in isAcceptableNestedNameSpecifier() local 339 if (TD->getUnderlyingType()->isRecordType()) in isAcceptableNestedNameSpecifier() 341 if (TD->getUnderlyingType()->isEnumeralType()) { in isAcceptableNestedNameSpecifier() 627 if (auto *TD = dyn_cast_or_null<TypedefNameDecl>(SD)) in BuildCXXNestedNameSpecifier() local 628 MarkAnyDeclReferenced(TD->getLocation(), TD, /*OdrUse=*/false); in BuildCXXNestedNameSpecifier() 750 if (TypeDecl *TD = Found.getAsSingle<TypeDecl>()) { in BuildCXXNestedNameSpecifier() local 752 << Context.getTypeDeclType(TD) << getLangOpts().CPlusPlus; in BuildCXXNestedNameSpecifier() 898 TemplateDecl *TD = Template.getAsTemplateDecl(); in ActOnCXXNestedNameSpecifier() local 900 isa<FunctionTemplateDecl>(TD) || isa<VarTemplateDecl>(TD)) { in ActOnCXXNestedNameSpecifier() 906 << isa_and_nonnull<VarTemplateDecl>(TD) << Template << R; in ActOnCXXNestedNameSpecifier()
|
H A D | SemaAvailability.cpp | 99 while (const auto *TD = dyn_cast<TypedefNameDecl>(D)) { in ShouldDiagnoseAvailabilityOfDecl() local 101 if (const auto *TT = TD->getUnderlyingType()->getAs<TagType>()) { in ShouldDiagnoseAvailabilityOfDecl() 367 if (const auto *TD = dyn_cast<TagDecl>(D)) { in createAttributeInsertion() local 369 Lexer::getLocForEndOfToken(TD->getInnerLocStart(), 0, SM, LangOpts); in createAttributeInsertion() 477 if (const auto *TD = dyn_cast<TagDecl>(Enclosing)) in DoEmitAvailabilityWarning() local 478 if (TD->getDeclName().isEmpty()) { in DoEmitAvailabilityWarning() 479 S.Diag(TD->getLocation(), in DoEmitAvailabilityWarning() 481 << /*Anonymous*/ 1 << TD->getKindName(); in DoEmitAvailabilityWarning() 974 TagDecl *TD = TT->getDecl(); in VisitTypeLoc() local 975 DiagnoseDeclAvailability(TD, Range); in VisitTypeLoc() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFTypeUnit.cpp | 19 DWARFDie TD = getDIEForOffset(getTypeOffset() + getOffset()); in dump() local 20 const char *Name = TD.getName(DINameKind::ShortName); in dump()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | MachineJumpTableInfo.h | 94 unsigned getEntrySize(const DataLayout &TD) const; 96 unsigned getEntryAlignment(const DataLayout &TD) const;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
H A D | SPIRVDuplicatesTracker.h | 250 void add(const SPIRV::SpecialTypeDescriptor &TD, const MachineFunction *MF, in add() argument 252 ST.add(TD, MF, R); in add() 285 Register find(const SPIRV::SpecialTypeDescriptor &TD, in find() argument 287 return ST.find(TD, MF); in find()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUPrintfRuntimeBinding.cpp | 62 const DataLayout *TD; member in __anon02acc0030211::AMDGPUPrintfRuntimeBindingImpl 186 unsigned ArgSize = TD->getTypeAllocSize(ArgType); in lowerPrintfForGpu() 212 ArgSize = TD->getTypeAllocSize(ArgType); in lowerPrintfForGpu() 410 unsigned ArgSize = TD->getTypeAllocSize(TheBtCast->getType()); in lowerPrintfForGpu() 453 TD = &M.getDataLayout(); in run()
|