| /freebsd/contrib/llvm-project/lldb/source/ValueObject/ |
| H A D | DILEval.cpp | 316 CompilerType base_type = base->GetCompilerType(); in Visit() local 318 base_type = base_type.GetPointeeType(); in Visit() 354 auto base_type = base->GetCompilerType().GetNonReferenceType(); in Visit() local 355 if (!base_type.IsPointerType() && !base_type.IsArrayType()) in Visit() 359 if (base_type.IsPointerToVoid()) in Visit() 364 if (base_type.IsArrayType()) { in Visit()
|
| /freebsd/sys/vm/ |
| H A D | vm_pager.c | 399 vm_pager_alloc_dyn_type(struct pagerops *ops, int base_type) in vm_pager_alloc_dyn_type() argument 404 MPASS(base_type == -1 || in vm_pager_alloc_dyn_type() 405 (base_type >= OBJT_SWAP && base_type < nitems(pagertab))); in vm_pager_alloc_dyn_type() 414 if (base_type != -1) { in vm_pager_alloc_dyn_type() 415 MPASS(pagertab[base_type] != NULL); in vm_pager_alloc_dyn_type() 418 ops->pgo_##n = pagertab[base_type]->pgo_##n in vm_pager_alloc_dyn_type()
|
| H A D | vm_pager.h | 284 int vm_pager_alloc_dyn_type(struct pagerops *ops, int base_type);
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | OnDiskHashTable.h | 438 typedef OnDiskChainedHashTable<Info> base_type; typedef 439 typedef typename base_type::internal_key_type internal_key_type; 440 typedef typename base_type::external_key_type external_key_type; 441 typedef typename base_type::data_type data_type; 442 typedef typename base_type::hash_value_type hash_value_type; 443 typedef typename base_type::offset_type offset_type; 500 : base_type(NumBuckets, NumEntries, Buckets, Base, InfoObj), in base_type() function
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | AllocatorList.h | 95 using base_type = variable 108 explicit IteratorImpl(const IteratorBase &I) : base_type(I) {} in IteratorImpl() 114 : base_type(X.wrapped()) {} 118 reference operator*() const { return base_type::wrapped()->V; }
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/ |
| H A D | ObjCLanguageRuntime.cpp | 427 ObjCLanguageRuntime::GetRuntimeType(CompilerType base_type) { in GetRuntimeType() argument 431 if (TypeSystemClang::IsObjCObjectPointerType(base_type, &class_type)) in GetRuntimeType() 433 else if (TypeSystemClang::IsObjCObjectOrInterfaceType(base_type)) in GetRuntimeType() 434 class_type = base_type; in GetRuntimeType()
|
| H A D | ObjCLanguageRuntime.h | 277 std::optional<CompilerType> GetRuntimeType(CompilerType base_type) override;
|
| /freebsd/sys/dev/bhnd/nvram/ |
| H A D | bhnd_nvram_data_sprom_subr.c | 594 bhnd_nvram_type base_type; in bhnd_sprom_opcode_set_type() local 617 base_type = bhnd_nvram_base_type(type); in bhnd_sprom_opcode_set_type() 618 switch (base_type) { in bhnd_sprom_opcode_set_type() 640 state->var.base_type = base_type; in bhnd_sprom_opcode_set_type()
|
| H A D | bhnd_nvram_data_spromvar.h | 102 bhnd_nvram_type base_type; /**< current bind input type */ member
|
| H A D | bhnd_nvram_data_sprom.c | 565 binding_var->base_type, in bhnd_nvram_sprom_write_var() 1175 binding_var->base_type, in bhnd_nvram_sprom_read_var()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/ARM/ |
| H A D | ABISysV_arm.cpp | 1697 CompilerType base_type; in GetReturnValueObjectImpl() local 1699 compiler_type.IsHomogeneousAggregate(&base_type); in GetReturnValueObjectImpl() 1703 llvm::expectedToOptional(base_type.GetByteSize(&thread)); in GetReturnValueObjectImpl() 1704 if (base_type.IsVectorType()) { in GetReturnValueObjectImpl() 1712 } else if (base_type.IsFloatingPointType(float_count, is_complex)) { in GetReturnValueObjectImpl() 1727 base_type = compiler_type.GetFieldAtIndex(index, name, nullptr, in GetReturnValueObjectImpl() 1730 if (base_type.IsFloatingPointType(float_count, is_complex)) { in GetReturnValueObjectImpl() 1732 llvm::expectedToOptional(base_type.GetByteSize(&thread)); in GetReturnValueObjectImpl()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/AArch64/ |
| H A D | ABIMacOSX_arm64.cpp | 450 CompilerType base_type; in LoadValueFromConsecutiveGPRRegisters() local 452 value_type.IsHomogeneousAggregate(&base_type); in LoadValueFromConsecutiveGPRRegisters() 456 if (!base_type) in LoadValueFromConsecutiveGPRRegisters() 459 base_type.GetByteSize(exe_ctx.GetBestExecutionContextScope())); in LoadValueFromConsecutiveGPRRegisters()
|
| H A D | ABISysV_arm64.cpp | 494 CompilerType base_type; in LoadValueFromConsecutiveGPRRegisters() local 496 value_type.IsHomogeneousAggregate(&base_type); in LoadValueFromConsecutiveGPRRegisters() 500 if (!base_type) in LoadValueFromConsecutiveGPRRegisters() 503 base_type.GetByteSize(exe_ctx.GetBestExecutionContextScope())); in LoadValueFromConsecutiveGPRRegisters()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | LanguageRuntime.h | 191 virtual std::optional<CompilerType> GetRuntimeType(CompilerType base_type) { in GetRuntimeType() argument
|
| /freebsd/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | CompilerType.cpp | 506 CompilerType base_type = GetDirectBaseClassAtIndex(i, &bit_offset); in GetNumberOfNonEmptyBaseClasses() local 507 if (base_type.GetNumFields() > 0 || in GetNumberOfNonEmptyBaseClasses() 508 base_type.GetNumberOfNonEmptyBaseClasses() > 0) in GetNumberOfNonEmptyBaseClasses()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | PDBASTParser.cpp | 1369 auto base_type = symbol_file.ResolveTypeUID(base->getTypeId()); in AddRecordBases() local 1370 if (!base_type) in AddRecordBases() 1373 auto base_comp_type = base_type->GetFullCompilerType(); in AddRecordBases()
|
| /freebsd/sys/dev/bhnd/tools/ |
| H A D | nvram_map_gen.awk | 2683 function parse_array_type_specifier(str, base_type, _count) { 2687 return (array_type_new(base_type, int(_count))) 2689 return (base_type) 4094 function parse_srom_segment(base_offset, base_type, _simple, _type, _type_str, 4127 _type = base_type
|
| /freebsd/sys/contrib/openzfs/cmd/zfs/ |
| H A D | zfs_main.c | 6151 char base_type = '\0'; in store_allow_perm() local 6166 base_type = ZFS_DELEG_NAMED_SET; in store_allow_perm() 6172 base_type = ZFS_DELEG_CREATE; in store_allow_perm() 6178 base_type = ZFS_DELEG_USER; in store_allow_perm() 6187 base_type = ZFS_DELEG_GROUP; in store_allow_perm() 6196 base_type = ZFS_DELEG_EVERYONE; in store_allow_perm() 6204 assert(set_type != '\0' && base_type != '\0'); in store_allow_perm() 6238 base_type, locality, who); in store_allow_perm() 6242 base_type, locality); in store_allow_perm() 6271 "%c%c$%s", base_type, locality, who); in store_allow_perm() [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangASTImporter.cpp | 729 QualType base_type = bi->getType(); in importRecordLayoutFromOrigin() local 730 const RecordType *base_record_type = base_type->getAs<RecordType>(); in importRecordLayoutFromOrigin()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
| H A D | SampleProf.h | 1351 size_t erase(const key_type &Key) { return base_type::erase(Key); } 1353 iterator erase(iterator It) { return base_type::erase(It); }
|
| /freebsd/crypto/openssl/test/ |
| H A D | evp_extra_test.c | 7936 int base_type, variant_type, nid; in test_EVP_CIPHER_get_type_des_ede3() local 7941 base_type = EVP_CIPHER_get_type(cipher); in test_EVP_CIPHER_get_type_des_ede3() 7948 if (!TEST_int_eq(variant_type, base_type)) in test_EVP_CIPHER_get_type_des_ede3() 7964 if (!TEST_int_eq(variant_type, base_type)) in test_EVP_CIPHER_get_type_des_ede3() 7980 if (!TEST_int_eq(variant_type, base_type)) in test_EVP_CIPHER_get_type_des_ede3()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | Dwarf.def | 184 HANDLE_DW_TAG(0x0024, base_type, 2, DWARF, DW_KIND_TYPE)
|