Home
last modified time | relevance | path

Searched full:storage (Results 1 – 25 of 2525) sorted by relevance

12345678910>>...101

/freebsd-src/crypto/heimdal/doc/doxyout/krb5/man/man3/
H A Dkrb5_storage.31 .TH "Heimdal Kerberos 5 storage functions" 3 "11 Jan 2012" "Version 1.5.2" "HeimdalKerberos5library…
5 Heimdal Kerberos 5 storage functions \-
176 Read a address block from the storage.
180 \fIsp\fP the storage buffer to write to
182 \fIadr\fP the address block read from storage
193 Read a addresses block from the storage.
197 \fIsp\fP the storage buffer to write to
199 \fIadr\fP the addresses block read from storage
210 Read a auth data from the storage.
214 \fIsp\fP the storage buffer to write to
[all …]
/freebsd-src/contrib/expat/tests/
H A Dstructdata.c72 StructData_Init(StructData *storage) { in StructData_Init() argument
73 assert(storage != NULL); in StructData_Init()
74 storage->count = 0; in StructData_Init()
75 storage->max_count = 0; in StructData_Init()
76 storage->entries = NULL; in StructData_Init()
80 StructData_AddItem(StructData *storage, const XML_Char *s, int data0, int data1, in StructData_AddItem() argument
84 assert(storage != NULL); in StructData_AddItem()
86 if (storage->count == storage->max_count) { in StructData_AddItem()
89 storage->max_count += STRUCT_EXTENSION_COUNT; in StructData_AddItem()
91 storage->entries, storage->max_count * sizeof(StructDataEntry)); in StructData_AddItem()
[all …]
H A Dchardata.c61 CharData_Init(CharData *storage) { in CharData_Init() argument
62 assert(storage != NULL); in CharData_Init()
63 storage->count = -1; in CharData_Init()
67 CharData_AppendXMLChars(CharData *storage, const XML_Char *s, int len) { in CharData_AppendXMLChars() argument
70 assert(storage != NULL); in CharData_AppendXMLChars()
72 maxchars = sizeof(storage->data) / sizeof(storage->data[0]); in CharData_AppendXMLChars()
73 if (storage->count < 0) in CharData_AppendXMLChars()
74 storage->count = 0; in CharData_AppendXMLChars()
77 if ((len + storage->count) > maxchars) { in CharData_AppendXMLChars()
78 len = (maxchars - storage->count); in CharData_AppendXMLChars()
[all …]
H A Dbasic_tests.c394 CharData storage; in START_TEST() local
396 CharData_Init(&storage); in START_TEST()
397 XML_SetUserData(g_parser, &storage); in START_TEST()
402 CharData_CheckXMLChars(&storage, expected); in START_TEST()
654 StructData storage; in START_TEST() local
656 StructData_Init(&storage); in START_TEST()
657 XML_SetUserData(g_parser, &storage); in START_TEST()
664 StructData_CheckItems(&storage, expected, expected_count); in START_TEST()
665 StructData_Dispose(&storage); in START_TEST()
795 CharData storage; in START_TEST() local
1424 CharData storage; START_TEST() local
1466 CharData storage; START_TEST() local
1493 CharData storage; START_TEST() local
1563 CharData storage; START_TEST() local
1607 CharData storage; START_TEST() local
1850 struct handler_record_list storage; START_TEST() local
1880 struct handler_record_list storage; START_TEST() local
1908 struct handler_record_list storage; START_TEST() local
1944 struct handler_record_list storage; START_TEST() local
1981 struct handler_record_list storage; START_TEST() local
2017 struct handler_record_list storage; START_TEST() local
2390 CharData storage; START_TEST() local
2995 CharData storage; START_TEST() local
3055 CharData storage; START_TEST() local
3082 CharData storage; START_TEST() local
3109 CharData storage; START_TEST() local
3399 CharData storage; START_TEST() local
3637 CharData storage; START_TEST() local
3750 CharData storage; START_TEST() local
3976 CharData storage; START_TEST() local
3992 CharData storage; START_TEST() local
4008 CharData storage; START_TEST() local
4023 CharData storage; START_TEST() local
4038 CharData storage; START_TEST() local
4064 CharData storage; START_TEST() local
4090 CharData storage; START_TEST() local
4110 CharData storage; START_TEST() local
4129 CharData storage; START_TEST() local
4217 CharData storage; START_TEST() local
4239 CharData storage; START_TEST() local
4352 CharData storage; START_TEST() local
4383 CharData storage; START_TEST() local
4418 CharData storage; START_TEST() local
4449 CharData storage; START_TEST() local
4478 CharData storage; START_TEST() local
4507 CharData storage; START_TEST() local
4558 CharData storage; START_TEST() local
4708 CharData storage; START_TEST() local
4729 CharData storage; START_TEST() local
4749 CharData storage; START_TEST() local
4791 CharData storage; START_TEST() local
4935 CharData storage; START_TEST() local
4957 CharData storage; START_TEST() local
4986 CharData storage; START_TEST() local
5018 CharData storage; START_TEST() local
5159 CharData storage; START_TEST() local
5183 CharData storage; START_TEST() local
5325 CharData storage; START_TEST() local
5522 CharData storage; START_TEST() local
5644 CharData storage; START_TEST() local
5779 CharData storage; START_TEST() local
[all...]
H A Dcommon.c228 CharData storage; in accumulate_characters()
230 CharData_Init(&storage); in accumulate_characters()
231 XML_SetUserData(g_parser, &storage);
236 CharData_CheckXMLChars(&storage, expected); in accumulate_attribute()
242 CharData storage; in accumulate_attribute()
244 CharData_Init(&storage); in accumulate_attribute()
245 XML_SetUserData(g_parser, &storage); in accumulate_attribute()
250 CharData_CheckXMLChars(&storage, expected); in _run_character_check()
256 CharData *const storage = (CharData *)malloc(sizeof(CharData)); in _run_character_check()
258 CharData_Init(storage); in _run_character_check()
235 CharData *storage = (CharData *)userData; accumulate_attribute() local
251 CharData storage; _run_character_check() local
265 CharData storage; _run_attribute_check() local
285 CharData *const storage = (CharData *)malloc(sizeof(CharData)); _run_ext_character_check() local
[all...]
/freebsd-src/crypto/heimdal/lib/krb5/
H A Dstore.c44 * Add the flags on a storage buffer by or-ing in the flags to the buffer.
46 * @param sp the storage buffer to set the flags on
59 * Clear the flags on a storage buffer
61 * @param sp the storage buffer to clear the flags on
74 * Return true or false depending on if the storage flags is set or
77 * @param sp the storage buffer to check flags on
92 * Set the new byte order of the storage buffer.
94 * @param sp the storage buffer to set the byte order for.
125 * @param sp the storage buffer set the max allow for
160 * @param sp the storage buffer to seek in.
[all …]
/freebsd-src/crypto/openssl/crypto/
H A Dex_data.c218 EX_CALLBACK **storage = NULL; in ossl_crypto_new_ex_data_ex() local
235 storage = stack; in ossl_crypto_new_ex_data_ex()
237 storage = OPENSSL_malloc(sizeof(*storage) * mx); in ossl_crypto_new_ex_data_ex()
238 if (storage != NULL) in ossl_crypto_new_ex_data_ex()
240 storage[i] = sk_EX_CALLBACK_value(ip->meth, i); in ossl_crypto_new_ex_data_ex()
244 if (mx > 0 && storage == NULL) { in ossl_crypto_new_ex_data_ex()
249 if (storage[i] != NULL && storage[i]->new_func != NULL) { in ossl_crypto_new_ex_data_ex()
251 storage[i]->new_func(obj, ptr, ad, i, in ossl_crypto_new_ex_data_ex()
252 storage[i]->argl, storage[i]->argp); in ossl_crypto_new_ex_data_ex()
255 if (storage != stack) in ossl_crypto_new_ex_data_ex()
[all …]
/freebsd-src/contrib/llvm-project/clang/lib/AST/
H A DTemplateName.cpp103 Storage = StorageType::getFromOpaqueValue(Ptr); in TemplateName()
106 TemplateName::TemplateName(TemplateDecl *Template) : Storage(Template) {} in TemplateName()
107 TemplateName::TemplateName(OverloadedTemplateStorage *Storage) in TemplateName() argument
108 : Storage(Storage) {} in TemplateName()
109 TemplateName::TemplateName(AssumedTemplateStorage *Storage) in TemplateName() argument
110 : Storage(Storage) {} in TemplateName()
111 TemplateName::TemplateName(SubstTemplateTemplateParmStorage *Storage) in TemplateName() argument
112 : Storage(Storag in TemplateName()
113 TemplateName(SubstTemplateTemplateParmPackStorage * Storage) TemplateName() argument
[all...]
/freebsd-src/contrib/llvm-project/lldb/source/Target/
H A DTrace.cpp189 Storage &storage = GetUpdatedStorage(); in GetLiveThreadBinaryDataSize() local
190 return Lookup(storage.live_thread_data, tid, ConstString(kind)); in GetLiveThreadBinaryDataSize()
195 Storage &storage = GetUpdatedStorage(); in GetLiveCpuBinaryDataSize() local
196 return Lookup(storage.live_cpu_data_sizes, cpu_id, ConstString(kind)); in GetLiveCpuBinaryDataSize()
201 Storage &storage = GetUpdatedStorage(); in GetLiveProcessBinaryDataSize() local
202 return Lookup(storage.live_process_data, ConstString(kind)); in GetLiveProcessBinaryDataSize()
278 Trace::Storage &Trace::GetUpdatedStorage() { in GetUpdatedStorage()
295 m_storage = Trace::Storage(); in RefreshLiveProcessState()
376 Storage &storage = GetUpdatedStorage(); in GetPostMortemThreadDataFile() local
378 Lookup(storage.postmortem_thread_data, tid, ConstString(kind))) in GetPostMortemThreadDataFile()
[all …]
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPT.cpp182 Storage &storage = GetUpdatedStorage(); in Decode() local
183 if (storage.multicpu_decoder) in Decode()
184 return storage.multicpu_decoder->Decode(thread); in Decode()
186 auto it = storage.thread_decoders.find(thread.GetID()); in Decode()
187 if (it == storage.thread_decoders.end()) in Decode()
193 Storage &storage = GetUpdatedStorage(); in FindBeginningOfTimeNanos() local
194 if (storage.beginning_of_time_nanos_calculated) in FindBeginningOfTimeNanos()
195 return storage.beginning_of_time_nanos; in FindBeginningOfTimeNanos()
196 storage.beginning_of_time_nanos_calculated = true; in FindBeginningOfTimeNanos()
198 if (!storage.tsc_conversion) in FindBeginningOfTimeNanos()
[all …]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ADT/
H A DBitfields.h18 /// packed together but are not required to. This is problematic when storage is
22 /// layout/storage as well as protection against out of range values.
27 /// uint8_t Storage = 0;
31 /// Bitfield::set<Bool>(Storage, true);
32 /// EXPECT_EQ(Storage, 0b00000001);
34 /// EXPECT_EQ(Bitfield::get<Bool>(Storage), true);
41 /// Bitfield::set<Suit>(Storage, SuitEnum::HEARTS);
42 /// EXPECT_EQ(Storage, 0b00000101);
44 /// EXPECT_EQ(Bitfield::get<Suit>(Storage), SuitEnum::HEARTS);
48 /// Bitfield::set<Value>(Storage, 10);
[all …]
H A DAny.h66 : Storage(Other.Storage ? Other.Storage->clone() : nullptr) {} in Any()
89 Storage = in Any()
93 Any(Any &&Other) : Storage(std::move(Other.Storage)) {} in Any()
96 std::swap(Storage, Other.Storage); in swap()
101 Storage = std::move(Other.Storage);
105 bool has_value() const { return !!Storage; } in has_value()
107 void reset() { Storage.reset(); } in reset()
112 if (!Storage) in isa()
114 return Storage->id() == &Any::TypeId<remove_cvref_t<T>>::Id; in isa()
124 std::unique_ptr<StorageBase> Storage; variable
[all …]
H A DLazyAtomicPointer.h21 /// a generator for the same storage is unlikely.
30 /// The underlying storage is \a std::atomic<uintptr_t>.
67 if (Storage.compare_exchange_weak(RawExistingValue, makeRaw(NewValue))) in compare_exchange_weak()
83 if (Storage.compare_exchange_strong(RawExistingValue, makeRaw(NewValue))) in compare_exchange_strong()
90 if (Storage.compare_exchange_weak(RawExistingValue, makeRaw(NewValue))) in compare_exchange_strong()
101 uintptr_t RawValue = Storage.load(); in load()
111 uintptr_t Raw = Storage.load(); in loadOrGenerate()
117 Storage.compare_exchange_strong(Raw, getBusy()))) { in loadOrGenerate()
120 Storage.store(Raw); in loadOrGenerate()
126 Raw = Storage in loadOrGenerate()
[all...]
/freebsd-src/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowEnvironment.h85 /// `Val1` and `Val2` must be assigned to the same storage location in
107 /// `Val1` and `Val2` must be assigned to the same storage location in
139 /// `Prev` and `Current` must be assigned to the same storage location in in widen()
190 /// Assigns storage locations and values to all parameters, captures, global
208 /// callee. Uses the storage location from each argument in the `Call` as the
209 /// storage location for the corresponding parameter in the callee.
228 /// - have the same mappings from declarations to storage locations,
229 /// - have the same mappings from expressions to storage locations,
231 /// the same storage locations.
247 /// Joins two environments by taking the intersection of storage location
[all...]
H A DStorageLocation.h30 /// Each storage location holds a value. The mapping from storage locations to
43 // Non-copyable because addresses of storage locations are used as their
45 // for construction and destruction of storage locations.
60 /// A storage location that is not subdivided further for the purposes of
72 /// A storage location for a record (struct, class, or union).
74 /// Contains storage locations for all modeled fields of the record (also
78 /// Record storage locations may also contain so-called synthetic fields. These
84 /// The storage location for a field of reference type may be null. This
89 /// Storage locations for fields of all other types must be non-null.
91 /// FIXME: Currently, the storage location of unions is modelled the same way as
[all …]
/freebsd-src/contrib/llvm-project/llvm/lib/Object/
H A DIRSymtab.cpp91 std::vector<storage::Comdat> Comdats;
92 std::vector<storage::Module> Mods;
93 std::vector<storage::Symbol> Syms;
94 std::vector<storage::Uncommon> Uncommons;
99 std::vector<storage::Str> DependentLibraries;
101 void setStr(storage::Str &S, StringRef Value) {
107 void writeRange(storage::Range<T> &R, const std::vector<T> &Objs) {
148 storage::Module Mod; in addModule()
172 storage::Str Specifier; in addModule()
207 storage in getComdatIndex()
[all...]
/freebsd-src/contrib/llvm-project/clang/include/clang/Basic/
H A DCustomizableOptional.h1 //===- CustomizableOptional.h - Optional with custom storage ----*- C++ -*-===//
26 // Optional type which internal storage can be specialized by providing
29 optional_detail::OptionalStorage<T> Storage; variable
37 constexpr CustomizableOptional(const T &y) : Storage(std::in_place, y) {} in CustomizableOptional()
41 : Storage(std::in_place, std::move(y)) {} in CustomizableOptional()
46 : Storage(std::in_place, std::forward<ArgTypes>(Args)...) {} in CustomizableOptional()
55 Storage = std::move(y);
62 Storage.emplace(std::forward<ArgTypes>(Args)...); in emplace()
66 Storage = y;
71 void reset() { Storage
[all...]
/freebsd-src/sys/contrib/openzfs/man/man8/
H A Dzpool.835 .Nd configure ZFS storage pools
49 command configures ZFS storage pools.
50 A storage pool is a collection of devices that provides physical storage and
52 All datasets within a storage pool share the same space.
57 For an overview of creating and managing ZFS storage pools see the
67 command provides subcommands to create and destroy storage pools, add capacity
68 to storage pools, and provide information about the storage pools.
96 Creates a new storage poo
[all...]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Object/
H A DIRSymtab.h46 namespace storage {
161 } // end namespace storage
168 /// This represents a symbol that has been read from a storage::Symbol and
169 /// possibly a storage::Uncommon.
171 // Copied from storage::Symbol.
176 // Copied from storage::Uncommon.
192 using S = storage::Symbol;
239 ArrayRef<storage::Module> Modules;
240 ArrayRef<storage::Comdat> Comdats;
241 ArrayRef<storage::Symbol> Symbols;
[all …]
/freebsd-src/sys/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_util.c53 queue->storage = kzalloc(size * sizeof(VCHIQ_HEADER_T *), GFP_KERNEL); in vchiu_queue_init()
54 if (queue->storage == NULL) { in vchiu_queue_init()
63 if (queue->storage != NULL) in vchiu_queue_delete()
64 kfree(queue->storage); in vchiu_queue_delete()
89 * Write to queue->storage must be visible after read from in vchiu_queue_push()
94 queue->storage[queue->write & (queue->size - 1)] = header; in vchiu_queue_push()
97 * Write to queue->storage must be visible before write to in vchiu_queue_push()
118 * Read from queue->storage must be visible after read from in vchiu_queue_peek()
123 return queue->storage[queue->read & (queue->size - 1)]; in vchiu_queue_peek()
137 * Read from queue->storage must be visible after read from in vchiu_queue_pop()
[all …]
/freebsd-src/contrib/llvm-project/llvm/lib/IR/
H A DDebugInfoMetadata.cpp58 DILocation::DILocation(LLVMContext &C, StorageType Storage, unsigned Line, in DILocation()
61 : MDNode(C, DILocationKind, Storage, MDs) { in DILocation()
83 StorageType Storage, bool ShouldCreate) { in getImpl()
87 if (Storage == Uniqued) { in getImpl()
102 return storeImpl(new (Ops.size(), Storage) DILocation(
103 Context, Storage, Line, Column, Ops, ImplicitCode), in getMergedLocations()
104 Storage, Context.pImpl->DILocations); in getMergedLocations()
395 StorageType Storage, bool ShouldCreate) { in getImpl()
397 if (Storage == Uniqued) { in getImpl()
411 return storeImpl(new (DwarfOps.size() + 1, Storage) GenericDINod in getImpl()
54 DILocation(LLVMContext & C,StorageType Storage,unsigned Line,unsigned Column,ArrayRef<Metadata * > MDs,bool ImplicitCode) DILocation() argument
79 getImpl(LLVMContext & Context,unsigned Line,unsigned Column,Metadata * Scope,Metadata * InlinedAt,bool ImplicitCode,StorageType Storage,bool ShouldCreate) getImpl() argument
391 getImpl(LLVMContext & Context,unsigned Tag,MDString * Header,ArrayRef<Metadata * > DwarfOps,StorageType Storage,bool ShouldCreate) getImpl() argument
447 DISubrange(LLVMContext & C,StorageType Storage,ArrayRef<Metadata * > Ops) DISubrange() argument
451 getImpl(LLVMContext & Context,int64_t Count,int64_t Lo,StorageType Storage,bool ShouldCreate) getImpl() argument
461 getImpl(LLVMContext & Context,Metadata * CountNode,int64_t Lo,StorageType Storage,bool ShouldCreate) getImpl() argument
471 getImpl(LLVMContext & Context,Metadata * CountNode,Metadata * LB,Metadata * UB,Metadata * Stride,StorageType Storage,bool ShouldCreate) getImpl() argument
560 DIGenericSubrange(LLVMContext & C,StorageType Storage,ArrayRef<Metadata * > Ops) DIGenericSubrange() argument
568 getImpl(LLVMContext & Context,Metadata * CountNode,Metadata * LB,Metadata * UB,Metadata * Stride,StorageType Storage,bool ShouldCreate) getImpl() argument
643 DIEnumerator(LLVMContext & C,StorageType Storage,const APInt & Value,bool IsUnsigned,ArrayRef<Metadata * > Ops) DIEnumerator() argument
652 getImpl(LLVMContext & Context,const APInt & Value,bool IsUnsigned,MDString * Name,StorageType Storage,bool ShouldCreate) getImpl() argument
662 getImpl(LLVMContext & Context,unsigned Tag,MDString * Name,uint64_t SizeInBits,uint32_t AlignInBits,unsigned Encoding,DIFlags Flags,StorageType Storage,bool ShouldCreate) getImpl() argument
690 getImpl(LLVMContext & Context,unsigned Tag,MDString * Name,Metadata * StringLength,Metadata * StringLengthExp,Metadata * StringLocationExp,uint64_t SizeInBits,uint32_t AlignInBits,unsigned Encoding,StorageType Storage,bool ShouldCreate) getImpl() argument
741 getImpl(LLVMContext & Context,unsigned Tag,MDString * Name,Metadata * File,unsigned Line,Metadata * Scope,Metadata * BaseType,uint64_t SizeInBits,uint32_t AlignInBits,uint64_t OffsetInBits,std::optional<unsigned> DWARFAddressSpace,DIFlags Flags,Metadata * ExtraData,Metadata * Annotations,StorageType Storage,bool ShouldCreate) getImpl() argument
761 getImpl(LLVMContext & Context,unsigned Tag,MDString * Name,Metadata * File,unsigned Line,Metadata * Scope,Metadata * BaseType,uint64_t SizeInBits,uint32_t AlignInBits,uint64_t OffsetInBits,DIFlags Flags,Metadata * Elements,unsigned RuntimeLang,Metadata * VTableHolder,Metadata * TemplateParams,MDString * Identifier,Metadata * Discriminator,Metadata * DataLocation,Metadata * Associated,Metadata * Allocated,Metadata * Rank,Metadata * Annotations,StorageType Storage,bool ShouldCreate) getImpl() argument
856 DISubroutineType(LLVMContext & C,StorageType Storage,DIFlags Flags,uint8_t CC,ArrayRef<Metadata * > Ops) DISubroutineType() argument
865 getImpl(LLVMContext & Context,DIFlags Flags,uint8_t CC,Metadata * TypeArray,StorageType Storage,bool ShouldCreate) getImpl() argument
872 DIFile(LLVMContext & C,StorageType Storage,std::optional<ChecksumInfo<MDString * >> CS,MDString * Src,ArrayRef<Metadata * > Ops) DIFile() argument
906 getImpl(LLVMContext & Context,MDString * Filename,MDString * Directory,std::optional<DIFile::ChecksumInfo<MDString * >> CS,MDString * Source,StorageType Storage,bool ShouldCreate) getImpl() argument
917 DICompileUnit(LLVMContext & C,StorageType Storage,unsigned SourceLanguage,bool IsOptimized,unsigned RuntimeVersion,unsigned EmissionKind,uint64_t DWOId,bool SplitDebugInlining,bool DebugInfoForProfiling,unsigned NameTableKind,bool RangesBaseAddress,ArrayRef<Metadata * > Ops) DICompileUnit() argument
940 getImpl(LLVMContext & Context,unsigned SourceLanguage,Metadata * File,MDString * Producer,bool IsOptimized,MDString * Flags,unsigned RuntimeVersion,MDString * SplitDebugFilename,unsigned EmissionKind,Metadata * EnumTypes,Metadata * RetainedTypes,Metadata * GlobalVariables,Metadata * ImportedEntities,Metadata * Macros,uint64_t DWOId,bool SplitDebugInlining,bool DebugInfoForProfiling,unsigned NameTableKind,bool RangesBaseAddress,MDString * SysRoot,MDString * SDK,StorageType Storage,bool ShouldCreate) getImpl() argument
1012 DISubprogram(LLVMContext & C,StorageType Storage,unsigned Line,unsigned ScopeLine,unsigned VirtualIndex,int ThisAdjustment,DIFlags Flags,DISPFlags SPFlags,ArrayRef<Metadata * > Ops) DISubprogram() argument
1120 getImpl(LLVMContext & Context,Metadata * Scope,MDString * Name,MDString * LinkageName,Metadata * File,unsigned Line,Metadata * Type,unsigned ScopeLine,Metadata * ContainingType,unsigned VirtualIndex,int ThisAdjustment,DIFlags Flags,DISPFlags SPFlags,Metadata * Unit,Metadata * TemplateParams,Metadata * Declaration,Metadata * RetainedNodes,Metadata * ThrownTypes,Metadata * Annotations,MDString * TargetFuncName,StorageType Storage,bool ShouldCreate) getImpl() argument
1160 DILexicalBlockBase(LLVMContext & C,unsigned ID,StorageType Storage,ArrayRef<Metadata * > Ops) DILexicalBlockBase() argument
1166 getImpl(LLVMContext & Context,Metadata * Scope,Metadata * File,unsigned Line,unsigned Column,StorageType Storage,bool ShouldCreate) getImpl() argument
1180 getImpl(LLVMContext & Context,Metadata * Scope,Metadata * File,unsigned Discriminator,StorageType Storage,bool ShouldCreate) getImpl() argument
1188 DINamespace(LLVMContext & Context,StorageType Storage,bool ExportSymbols,ArrayRef<Metadata * > Ops) DINamespace() argument
1195 getImpl(LLVMContext & Context,Metadata * Scope,MDString * Name,bool ExportSymbols,StorageType Storage,bool ShouldCreate) getImpl() argument
1203 DICommonBlock(LLVMContext & Context,StorageType Storage,unsigned LineNo,ArrayRef<Metadata * > Ops) DICommonBlock() argument
1212 getImpl(LLVMContext & Context,Metadata * Scope,Metadata * Decl,MDString * Name,Metadata * File,unsigned LineNo,StorageType Storage,bool ShouldCreate) getImpl() argument
1220 DIModule(LLVMContext & Context,StorageType Storage,unsigned LineNo,bool IsDecl,ArrayRef<Metadata * > Ops) DIModule() argument
1230 getImpl(LLVMContext & Context,Metadata * File,Metadata * Scope,MDString * Name,MDString * ConfigurationMacros,MDString * IncludePath,MDString * APINotesFile,unsigned LineNo,bool IsDecl,StorageType Storage,bool ShouldCreate) getImpl() argument
1240 DITemplateTypeParameter(LLVMContext & Context,StorageType Storage,bool IsDefault,ArrayRef<Metadata * > Ops) DITemplateTypeParameter() argument
1250 getImpl(LLVMContext & Context,MDString * Name,Metadata * Type,bool isDefault,StorageType Storage,bool ShouldCreate) getImpl() argument
1259 getImpl(LLVMContext & Context,unsigned Tag,MDString * Name,Metadata * Type,bool isDefault,Metadata * Value,StorageType Storage,bool ShouldCreate) getImpl() argument
1273 getImpl(LLVMContext & Context,Metadata * Scope,MDString * Name,MDString * LinkageName,Metadata * File,unsigned Line,Metadata * Type,bool IsLocalToUnit,bool IsDefinition,Metadata * StaticDataMemberDeclaration,Metadata * TemplateParams,uint32_t AlignInBits,Metadata * Annotations,StorageType Storage,bool ShouldCreate) getImpl() argument
1298 getImpl(LLVMContext & Context,Metadata * Scope,MDString * Name,Metadata * File,unsigned Line,Metadata * Type,unsigned Arg,DIFlags Flags,uint32_t AlignInBits,Metadata * Annotations,StorageType Storage,bool ShouldCreate) getImpl() argument
1311 DIVariable(LLVMContext & C,unsigned ID,StorageType Storage,signed Line,ArrayRef<Metadata * > Ops,uint32_t AlignInBits) DIVariable() argument
1340 DILabel(LLVMContext & C,StorageType Storage,unsigned Line,ArrayRef<Metadata * > Ops) DILabel() argument
1346 getImpl(LLVMContext & Context,Metadata * Scope,MDString * Name,Metadata * File,unsigned Line,StorageType Storage,bool ShouldCreate) getImpl() argument
1357 getImpl(LLVMContext & Context,ArrayRef<uint64_t> Elements,StorageType Storage,bool ShouldCreate) getImpl() argument
1381 getImpl(LLVMContext & Context,StorageType Storage,bool ShouldCreate) getImpl() argument
2068 getImpl(LLVMContext & Context,Metadata * Variable,Metadata * Expression,StorageType Storage,bool ShouldCreate) getImpl() argument
2074 DIObjCProperty(LLVMContext & C,StorageType Storage,unsigned Line,unsigned Attributes,ArrayRef<Metadata * > Ops) DIObjCProperty() argument
2083 getImpl(LLVMContext & Context,MDString * Name,Metadata * File,unsigned Line,MDString * GetterName,MDString * SetterName,unsigned Attributes,Metadata * Type,StorageType Storage,bool ShouldCreate) getImpl() argument
2097 getImpl(LLVMContext & Context,unsigned Tag,Metadata * Scope,Metadata * Entity,Metadata * File,unsigned Line,MDString * Name,Metadata * Elements,StorageType Storage,bool ShouldCreate) getImpl() argument
2107 getImpl(LLVMContext & Context,unsigned MIType,unsigned Line,MDString * Name,MDString * Value,StorageType Storage,bool ShouldCreate) getImpl() argument
2117 getImpl(LLVMContext & Context,unsigned MIType,unsigned Line,Metadata * File,Metadata * Elements,StorageType Storage,bool ShouldCreate) getImpl() argument
[all...]
/freebsd-src/share/man/man4/
H A Dhv_storvsc.431 .Nd Hyper-V Storage Virtual Service Consumer
47 storage devices attached to the Hyper-V server.
50 guest can access storage devices using Hyper-V's
55 driver implements a storage
57 Service Consumer (VSC) that relays storage requests from the guest partition
58 to the storage Virtual Service Provider (VSP) hosted in the root partition
62 The VSP in the root partition then forwards the storage related requests to
63 the physical storage device.
/freebsd-src/contrib/unbound/
H A DMakefile.in131 util/rtt.c util/siphash.c util/edns.c util/storage/dnstree.c util/storage/lookup3.c \
132 util/storage/lruhash.c util/storage/slabhash.c util/tcp_conn_limit.c \
479 $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h \
719 $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h \
721 $(srcdir)/util/data/msgreply.h $(srcdir)/services/cache/rrset.h $(srcdir)/util/storage/slabhash.h \
726 $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h $(srcdir)/util/storage/dnstree.h \
729 $(srcdir)/util/storage/slabhas
[all...]
/freebsd-src/contrib/unbound/validator/
H A Dval_anchor.h2 * validator/val_anchor.h - validator trust anchor storage.
39 * This file contains storage for the trust anchors for the validator.
124 * Create trust anchor storage
125 * @return new storage or NULL on error.
130 * Delete trust anchor storage.
137 * @param anchors: struct anchor storage
157 * @param anchors: struct anchor storage
168 * @param anchors: anchor storage.
180 * @param anchors: anchor storage.
189 * Get memory in use by the trust anchor storage
[all …]
/freebsd-src/contrib/llvm-project/clang/include/clang/AST/
H A DASTTypeTraits.h10 // that can be used to store an AST base node at runtime in the same storage in
275 /// the storage inside DynTypedNode. For those nodes, do not
278 return BaseConverter<T>::get(NodeKind, &Storage);
286 return BaseConverter<T>::getUnchecked(NodeKind, &Storage);
298 ? *reinterpret_cast<void *const *>(&Storage)
420 static const T *get(ASTNodeKind NodeKind, const void *Storage) {
422 return &getUnchecked(NodeKind, Storage);
425 static const T &getUnchecked(ASTNodeKind NodeKind, const void *Storage) {
428 *reinterpret_cast<const void *const *>(Storage)));
433 new (&Result.Storage) const void *(&Node);
[all …]

12345678910>>...101