| /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 | 203 LLVM_C_ABI void LLVMDisposeTargetData(LLVMTargetDataRef TD); 214 LLVM_C_ABI char *LLVMCopyStringRepOfTargetData(LLVMTargetDataRef TD); 219 LLVM_C_ABI enum LLVMByteOrdering LLVMByteOrder(LLVMTargetDataRef TD); 223 LLVM_C_ABI unsigned LLVMPointerSize(LLVMTargetDataRef TD); 228 LLVM_C_ABI unsigned LLVMPointerSizeForAS(LLVMTargetDataRef TD, unsigned AS); 232 LLVM_C_ABI LLVMTypeRef LLVMIntPtrType(LLVMTargetDataRef TD); 237 LLVM_C_ABI LLVMTypeRef LLVMIntPtrTypeForAS(LLVMTargetDataRef TD, unsigned AS); 242 LLVMTargetDataRef TD); 248 LLVMTargetDataRef TD, 253 LLVM_C_ABI unsigned long long LLVMSizeOfTypeInBits(LLVMTargetDataRef TD, [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/llvm-project/compiler-rt/lib/tysan/ |
| H A D | tysan.cpp | 83 static tysan_type_descriptor *getRootTD(tysan_type_descriptor *TD) { in getRootTD() argument 84 tysan_type_descriptor *RootTD = TD; in getRootTD() 87 RootTD = TD; in getRootTD() 89 if (TD->Tag == TYSAN_STRUCT_TD) { in getRootTD() 90 if (TD->Struct.MemberCount > 0) in getRootTD() 91 TD = TD->Struct.Members[0].Type; in getRootTD() 93 TD = nullptr; in getRootTD() 94 } else if (TD->Tag == TYSAN_MEMBER_TD) { in getRootTD() 95 TD = TD->Member.Access; in getRootTD() 100 } while (TD); in getRootTD() [all …]
|
| /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) 46 >>&0 byte x NRT 2.%d (TD.35, Near Real Time Roaming Data Exchange) 49 # cf. https://www.gsma.com/newsroom/wp-content/uploads/TD.32-v6.11.pdf 58 >>>>&0 byte x RAP 1.%d Batch (TD.32, Returned Account Procedure), 64 >&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 | 43 const ASTContext &Ctx, const TypeDecl *TD, 199 } else if (const auto *TD = dyn_cast<TagDecl>(DC)) { in createOuterNNS() local 200 return createNestedNameSpecifier(Ctx, TD, FullyQualify, WithGlobalNsPrefix); in createOuterNNS() 240 const TagDecl *TD = nullptr; in getFullyQualifiedNestedNameSpecifier() local 242 TD = TagDeclType->getDecl(); in getFullyQualifiedNestedNameSpecifier() 244 TD = Type->getAsCXXRecordDecl(); in getFullyQualifiedNestedNameSpecifier() 246 if (TD) { in getFullyQualifiedNestedNameSpecifier() 247 return TypeName::createNestedNameSpecifier(Ctx, TD, in getFullyQualifiedNestedNameSpecifier() 295 } else if (const auto *TD = dyn_cast<TagDecl>(Outer)) { in createNestedNameSpecifierForScopeOf() local 297 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 | 179 unsigned getManglingNumber(const TagDecl *TD, unsigned) override { in getManglingNumber() argument 180 return ++TagManglingNumbers[TD->getIdentifier()]; in getManglingNumber() 267 void addTypedefNameForUnnamedTagDecl(TagDecl *TD, in addTypedefNameForUnnamedTagDecl() argument 270 TypedefNameDecl *getTypedefNameForUnnamedTagDecl(const TagDecl *TD) override { in getTypedefNameForUnnamedTagDecl() argument 274 void addDeclaratorForUnnamedTagDecl(TagDecl *TD, in addDeclaratorForUnnamedTagDecl() argument 277 DeclaratorDecl *getDeclaratorForUnnamedTagDecl(const TagDecl *TD) override { in getDeclaratorForUnnamedTagDecl() argument
|
| H A D | ItaniumMangle.cpp | 506 void mangleTemplateName(const TemplateDecl *TD, 540 void mangleNestedName(const TemplateDecl *TD, 980 if (const TemplateDecl *TD = FD->getPrimaryTemplate()) { in isTemplate() local 982 return GD.getWithDecl(TD); in isTemplate() 1004 const TemplateDecl *TD = dyn_cast_or_null<TemplateDecl>(GD.getDecl()); in asTemplateName() local 1005 return TemplateName(const_cast<TemplateDecl*>(TD)); in asTemplateName() 1097 if (GlobalDecl TD = isTemplate(GD, TemplateArgs)) { in mangleNameWithAbiTags() local 1098 mangleUnscopedTemplateName(TD, DC, AdditionalAbiTags); in mangleNameWithAbiTags() 1099 mangleTemplateArgs(asTemplateName(TD), *TemplateArgs); in mangleNameWithAbiTags() 1147 void CXXNameMangler::mangleTemplateName(const TemplateDecl *TD, in mangleTemplateName() argument [all …]
|
| /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/Sema/ |
| H A D | HeuristicResolver.cpp | 104 if (const auto *TD = dyn_cast<TypeDecl>(Decls[0])) { in resolveDeclsToType() local 105 return Ctx.getTypeDeclType(TD); in resolveDeclsToType() 143 TagDecl *TD = TT->getDecl(); in resolveTypeToTagDecl() local 146 if (const auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(TD)) { in resolveTypeToTagDecl() 151 return TD; in resolveTypeToTagDecl() 163 const ClassTemplateDecl *TD = in resolveTypeToTagDecl() local 165 if (!TD) in resolveTypeToTagDecl() 168 return TD->getTemplatedDecl(); in resolveTypeToTagDecl() 444 TagDecl *TD = resolveTypeToTagDecl(Specifier->getType()); in findOrdinaryMemberInDependentClasses() local 445 if (const auto *RD = dyn_cast_if_present<CXXRecordDecl>(TD)) { in findOrdinaryMemberInDependentClasses() [all …]
|
| H A D | SemaCXXScopeSpec.cpp | 333 if (const TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(SD)) { in isAcceptableNestedNameSpecifier() local 334 if (TD->getUnderlyingType()->isRecordType()) in isAcceptableNestedNameSpecifier() 336 if (TD->getUnderlyingType()->isEnumeralType()) { in isAcceptableNestedNameSpecifier() 622 if (auto *TD = dyn_cast_or_null<TypedefNameDecl>(SD)) in BuildCXXNestedNameSpecifier() local 623 MarkAnyDeclReferenced(TD->getLocation(), TD, /*OdrUse=*/false); in BuildCXXNestedNameSpecifier() 744 if (TypeDecl *TD = Found.getAsSingle<TypeDecl>()) { in BuildCXXNestedNameSpecifier() local 746 << Context.getTypeDeclType(TD) << getLangOpts().CPlusPlus; in BuildCXXNestedNameSpecifier() 891 TemplateDecl *TD = Template.getAsTemplateDecl(); in ActOnCXXNestedNameSpecifier() local 893 isa<FunctionTemplateDecl>(TD) || isa<VarTemplateDecl>(TD)) { in ActOnCXXNestedNameSpecifier() 899 << isa_and_nonnull<VarTemplateDecl>(TD) << Template << R; in ActOnCXXNestedNameSpecifier()
|
| /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/lldb/source/Plugins/Protocol/MCP/ |
| H A D | Protocol.cpp | 189 llvm::json::Value toJSON(const ToolDefinition &TD) { in toJSON() argument 190 llvm::json::Object Result{{"name", TD.name}}; in toJSON() 191 if (!TD.description.empty()) in toJSON() 192 Result.insert({"description", TD.description}); in toJSON() 193 if (TD.inputSchema) in toJSON() 194 Result.insert({"inputSchema", TD.inputSchema}); in toJSON() 198 bool fromJSON(const llvm::json::Value &V, ToolDefinition &TD, in fromJSON() argument 202 if (!O || !O.map("name", TD.name) || in fromJSON() 203 !O.mapOptional("description", TD.description)) in fromJSON() 205 return mapRaw(V, "inputSchema", TD.inputSchema, P); in fromJSON()
|
| /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 | 107 if (auto *TD = dyn_cast<TemplateDecl>(D)) in print() local 108 if (Decl *TempD = TD->getTemplatedDecl()) in print() 115 if (auto *TD = dyn_cast<TypeDecl>(InnerD)) in print() local 116 TD->getTypeForDecl()->dump(Out, TD->getASTContext()); in print()
|
| H A D | MultiplexConsumer.cpp | 99 void AddedCXXTemplateSpecialization(const ClassTemplateDecl *TD, 101 void AddedCXXTemplateSpecialization(const VarTemplateDecl *TD, 103 void AddedCXXTemplateSpecialization(const FunctionTemplateDecl *TD, 158 const ClassTemplateDecl *TD, const ClassTemplateSpecializationDecl *D) { in AddedCXXTemplateSpecialization() argument 160 Listeners[i]->AddedCXXTemplateSpecialization(TD, D); in AddedCXXTemplateSpecialization() 163 const VarTemplateDecl *TD, const VarTemplateSpecializationDecl *D) { in AddedCXXTemplateSpecialization() argument 165 Listeners[i]->AddedCXXTemplateSpecialization(TD, D); in AddedCXXTemplateSpecialization() 168 const FunctionTemplateDecl *TD, const FunctionDecl *D) { in AddedCXXTemplateSpecialization() argument 170 Listeners[i]->AddedCXXTemplateSpecialization(TD, D); in AddedCXXTemplateSpecialization()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | CocoaConventions.cpp | 26 while (const TypedefType *TD = RetTy->getAs<TypedefType>()) { in isRefType() local 27 StringRef TDName = TD->getDecl()->getIdentifier()->getName(); in isRefType() 33 RetTy = TD->getDecl()->getUnderlyingType(); in isRefType()
|
| /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.AlwaysZero << '\n'; in dumpCXXData() 400 outs().write_escaped(TD.MangledName.rtrim(StringRef("\0", 1)), in dumpCXXData()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
| H A D | ForwardDeclChecker.cpp | 61 bool VisitTypedefDecl(TypedefDecl *TD) { in checkASTDecl() 62 Checker->visitTypedef(TD); in checkASTDecl() 105 void visitTypedef(const TypedefDecl *TD) const { in visitTypedef() 106 RTC.visitTypedef(TD); in visitTypedef() 107 auto QT = TD->getUnderlyingType().getCanonicalType(); in visitTypedef() 109 if (BR->getSourceManager().isInSystemHeader(TD->getBeginLoc())) { in visitTypedef()
|
| /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
|
| /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/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 | 100 LLVM_ABI unsigned getEntrySize(const DataLayout &TD) const; 102 LLVM_ABI unsigned getEntryAlignment(const DataLayout &TD) const;
|