Home
last modified time | relevance | path

Searched refs:storage_type (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.h728 using storage_type = uint32_t;
745 static constexpr storage_type TotalWidth = 0
752 storage_type Value;
840 storage_type getAsOpaqueInt() const { return Value; } in getAsOpaqueInt()
841 static FPOptions getFromOpaqueInt(storage_type Value) { in getFromOpaqueInt()
877 FPOptions::storage_type OverrideMask = 0;
884 using storage_type = uint64_t; variable
885 static_assert(sizeof(storage_type) >= 2 * sizeof(FPOptions::storage_type),
890 static constexpr storage_type OverrideMaskBits =
931 storage_type getAsOpaqueInt() const { in getAsOpaqueInt()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DErrorOr.h64 using storage_type = std::conditional_t<isRef, wrap, T>;
90 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
141 getStorage()->~storage_type(); in ~ErrorOr()
174 new (getStorage()) storage_type(*Other.getStorage()); in copyConstruct()
206 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct()
235 storage_type *getStorage() { in getStorage()
237 return reinterpret_cast<storage_type *>(&TStorage); in getStorage()
240 const storage_type *getStorage() const { in getStorage()
242 return reinterpret_cast<const storage_type *>(&TStorage); in getStorage()
255 AlignedCharArrayUnion<storage_type> TStorage;
H A DError.h485 using storage_type = std::conditional_t<isRef, wrap, T>;
524 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
557 getStorage()->~storage_type(); in ~Expected()
651 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct()
674 storage_type *getStorage() { in getStorage()
676 return reinterpret_cast<storage_type *>(&TStorage); in getStorage()
679 const storage_type *getStorage() const { in getStorage()
681 return reinterpret_cast<const storage_type *>(&TStorage); in getStorage()
723 AlignedCharArrayUnion<storage_type> TStorage;
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/orc/
H A Derror.h192 using storage_type = std::conditional_t<IsRef, wrap, T>; variable
212 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
246 getStorage()->~storage_type(); in ~Expected()
318 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct()
341 storage_type *getStorage() { in getStorage()
343 return reinterpret_cast<storage_type *>(&TStorage); in getStorage()
346 const storage_type *getStorage() const { in getStorage()
348 return reinterpret_cast<const storage_type *>(&TStorage); in getStorage()
370 std::aligned_union_t<1, storage_type> TStorage;
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DMultiOnDiskHashTable.h46 using storage_type = const unsigned char *; variable
67 storage_type Buckets, storage_type Payload, storage_type Base, in OnDiskTable()
197 void add(file_type File, storage_type Data, Info InfoObj = Info()) {
200 storage_type Ptr = Data;
218 storage_type Buckets = Data + BucketOffset;
/freebsd-14.2/contrib/llvm-project/clang/lib/Basic/
H A DLangOptions.cpp217 FPOptions::storage_type OverrideMask = 0; in getChangesSlow()