Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.h476 using storage_type = uint16_t;
493 static constexpr storage_type TotalWidth = 0
500 storage_type Value;
561 storage_type getAsOpaqueInt() const { return Value; } in getAsOpaqueInt()
562 static FPOptions getFromOpaqueInt(storage_type Value) { in getFromOpaqueInt()
595 FPOptions::storage_type OverrideMask = 0;
602 using storage_type = uint32_t; variable
603 static_assert(sizeof(storage_type) >= 2 * sizeof(FPOptions::storage_type),
608 static constexpr storage_type OverrideMaskBits =
646 storage_type getAsOpaqueInt() const { in getAsOpaqueInt()
[all …]
/freebsd-13.1/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()
142 getStorage()->~storage_type(); in ~ErrorOr()
175 new (getStorage()) storage_type(*Other.getStorage()); in copyConstruct()
207 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct()
236 storage_type *getStorage() { in getStorage()
238 return reinterpret_cast<storage_type *>(&TStorage); in getStorage()
241 const storage_type *getStorage() const { in getStorage()
243 return reinterpret_cast<const storage_type *>(&TStorage); in getStorage()
256 AlignedCharArrayUnion<storage_type> TStorage;
H A DError.h483 using storage_type = std::conditional_t<isRef, wrap, T>;
522 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
556 getStorage()->~storage_type(); in ~Expected()
640 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct()
663 storage_type *getStorage() { in getStorage()
665 return reinterpret_cast<storage_type *>(&TStorage); in getStorage()
668 const storage_type *getStorage() const { in getStorage()
670 return reinterpret_cast<const storage_type *>(&TStorage); in getStorage()
714 AlignedCharArrayUnion<storage_type> TStorage;
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/orc/
H A Derror.h194 using storage_type = std::conditional_t<IsRef, wrap, T>; variable
214 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
248 getStorage()->~storage_type(); in ~Expected()
320 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct()
343 storage_type *getStorage() { in getStorage()
345 return reinterpret_cast<storage_type *>(&TStorage); in getStorage()
348 const storage_type *getStorage() const { in getStorage()
350 return reinterpret_cast<const storage_type *>(&TStorage); in getStorage()
372 std::aligned_union_t<1, storage_type> TStorage;
/freebsd-13.1/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;
216 storage_type Buckets = Data + BucketOffset;