Searched refs:storage_type (Results 1 – 6 of 6) sorted by relevance
/openbsd/gnu/llvm/clang/include/clang/Basic/ |
H A D | LangOptions.h | 660 using storage_type = uint32_t; 677 static constexpr storage_type TotalWidth = 0 684 storage_type Value; 771 storage_type getAsOpaqueInt() const { return Value; } in getAsOpaqueInt() 772 static FPOptions getFromOpaqueInt(storage_type Value) { in getFromOpaqueInt() 808 FPOptions::storage_type OverrideMask = 0; 815 using storage_type = uint64_t; variable 816 static_assert(sizeof(storage_type) >= 2 * sizeof(FPOptions::storage_type), 821 static constexpr storage_type OverrideMaskBits = 861 storage_type getAsOpaqueInt() const { in getAsOpaqueInt() [all …]
|
/openbsd/gnu/llvm/llvm/include/llvm/Support/ |
H A D | ErrorOr.h | 64 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 D | Error.h | 481 using storage_type = std::conditional_t<isRef, wrap, T>; 520 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError() 553 getStorage()->~storage_type(); in ~Expected() 647 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct() 670 storage_type *getStorage() { in getStorage() 672 return reinterpret_cast<storage_type *>(&TStorage); in getStorage() 675 const storage_type *getStorage() const { in getStorage() 677 return reinterpret_cast<const storage_type *>(&TStorage); in getStorage() 719 AlignedCharArrayUnion<storage_type> TStorage;
|
/openbsd/gnu/llvm/compiler-rt/lib/orc/ |
H A D | error.h | 192 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;
|
/openbsd/gnu/llvm/clang/lib/Serialization/ |
H A D | MultiOnDiskHashTable.h | 46 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;
|
/openbsd/gnu/llvm/clang/lib/Basic/ |
H A D | LangOptions.cpp | 208 FPOptions::storage_type OverrideMask = 0; in getChangesSlow()
|