Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.h872 using storage_type = uint32_t;
876 static constexpr unsigned StorageBitSize = 8 * sizeof(storage_type);
880 static constexpr storage_type FirstShift = 0, FirstWidth = 0;
882 static constexpr storage_type NAME##Shift = \
884 static constexpr storage_type NAME##Width = WIDTH; \
885 static constexpr storage_type NAME##Mask = ((1 << NAME##Width) - 1) \
889 static constexpr storage_type TotalWidth = 0
896 storage_type Value;
984 storage_type getAsOpaqueInt() const { return Value; } in getAsOpaqueInt()
985 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()
240 const storage_type *getStorage() const { in getStorage()
256 storage_type TStorage;
H A DError.h496 using storage_type = std::conditional_t<isRef, wrap, T>;
535 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError()
568 getStorage()->~storage_type(); in ~Expected()
662 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct()
685 storage_type *getStorage() { in getStorage()
690 const storage_type *getStorage() const { in getStorage()
735 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 alignas(storage_type) char TStorage[sizeof(storage_type)];
/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()
195 void add(file_type File, storage_type Data, Info InfoObj = Info()) {
198 storage_type Ptr = Data;
215 storage_type Buckets = Data + BucketOffset;
/freebsd/contrib/llvm-project/clang/include/clang/CIR/Dialect/IR/
H A DCIRAttrs.td484 #bfi_a = #cir.bitfield_info<name = "a", storage_type = !u64i,
492 "mlir::Type":$storage_type,
498 $storage_type,
507 "mlir::Type":$storage_type,
512 return $_get($_ctxt, mlir::StringAttr::get($_ctxt, name), storage_type,
H A DCIROps.td1716 #bfi_e = #cir.bitfield_info<name = "e", storage_type = !u16i, size = 15,
1742 "mlir::Type":$storage_type,
1753 name, storage_type,
1801 #bfi_e = #cir.bitfield_info<name = "e", storage_type = !u16i, size = 15,
1825 "mlir::Type":$storage_type,
1835 name, storage_type,
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DLangOptions.cpp223 FPOptions::storage_type OverrideMask = 0; in getChangesSlow()