Searched refs:storage_type (Results 1 – 4 of 4) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | LangOptions.h | 454 using storage_type = uint16_t; 458 static constexpr unsigned StorageBitSize = 8 * sizeof(storage_type); 462 static constexpr storage_type FirstShift = 0, FirstWidth = 0; 464 static constexpr storage_type NAME##Shift = \ 466 static constexpr storage_type NAME##Width = WIDTH; \ 467 static constexpr storage_type NAME##Mask = ((1 << NAME##Width) - 1) \ 471 static constexpr storage_type TotalWidth = 0 478 storage_type Value; 539 storage_type getAsOpaqueInt() const { return Value; } in getAsOpaqueInt() 540 static FPOptions getFromOpaqueInt(storage_type Value) { in getFromOpaqueInt() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/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 | 450 using storage_type = std::conditional_t<isRef, wrap, T>; 489 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError() 523 getStorage()->~storage_type(); in ~Expected() 607 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct() 630 storage_type *getStorage() { in getStorage() 632 return reinterpret_cast<storage_type *>(&TStorage); in getStorage() 635 const storage_type *getStorage() const { in getStorage() 637 return reinterpret_cast<const storage_type *>(&TStorage); in getStorage() 681 AlignedCharArrayUnion<storage_type> TStorage;
|
| /netbsd-src/external/apache2/llvm/dist/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;
|