Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.h770 using storage_type = uint32_t;
774 static constexpr unsigned StorageBitSize = 8 * sizeof(storage_type);
778 static constexpr storage_type FirstShift = 0, FirstWidth = 0;
780 static constexpr storage_type NAME##Shift = \
782 static constexpr storage_type NAME##Width = WIDTH; \
783 static constexpr storage_type NAME##Mask = ((1 << NAME##Width) - 1) \
787 static constexpr storage_type TotalWidth = 0
794 storage_type Value;
882 storage_type getAsOpaqueInt() const { return Value; } in getAsOpaqueInt()
883 static FPOptions getFromOpaqueInt(storage_type Value) { in getFromOpaqueInt()
[all …]
/freebsd/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.h492 using storage_type = std::conditional_t<isRef, wrap, T>;
531 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
564 getStorage()->~storage_type(); in ~Expected()
658 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct()
681 storage_type *getStorage() { in getStorage()
683 return reinterpret_cast<storage_type *>(&TStorage); in getStorage()
686 const storage_type *getStorage() const { in getStorage()
688 return reinterpret_cast<const storage_type *>(&TStorage); in getStorage()
730 AlignedCharArrayUnion<storage_type> TStorage;
/freebsd/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/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/contrib/llvm-project/clang/lib/Basic/
H A DLangOptions.cpp219 FPOptions::storage_type OverrideMask = 0; in getChangesSlow()