Home
last modified time | relevance | path

Searched refs:DynamicAPInt (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDynamicAPInt.h44 class DynamicAPInt {
73 LLVM_ATTRIBUTE_ALWAYS_INLINE explicit DynamicAPInt( in DynamicAPInt() function
112 LLVM_ATTRIBUTE_ALWAYS_INLINE explicit DynamicAPInt(int64_t Val) in DynamicAPInt() function
116 LLVM_ATTRIBUTE_ALWAYS_INLINE DynamicAPInt() : DynamicAPInt(0) {} in DynamicAPInt() function
117 LLVM_ATTRIBUTE_ALWAYS_INLINE ~DynamicAPInt() { in ~DynamicAPInt()
121 LLVM_ATTRIBUTE_ALWAYS_INLINE DynamicAPInt(const DynamicAPInt &O) in DynamicAPInt() function
127 LLVM_ATTRIBUTE_ALWAYS_INLINE DynamicAPInt &operator=(const DynamicAPInt &O) {
135 LLVM_ATTRIBUTE_ALWAYS_INLINE DynamicAPInt &operator=(int X) {
145 bool operator==(const DynamicAPInt &O) const;
146 bool operator!=(const DynamicAPInt &O) const;
[all …]
H A DSlowDynamicAPInt.h25 class DynamicAPInt; variable
77 friend DynamicAPInt; variable
H A DAPInt.h33 class DynamicAPInt; variable
1900 friend DynamicAPInt;
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DDynamicAPInt.cpp15 hash_code llvm::hash_value(const DynamicAPInt &X) { in hash_value()
21 void DynamicAPInt::static_assert_layout() { in static_assert_layout()
23 offsetof(DynamicAPInt, ValLarge.Val.BitWidth); in static_assert_layout()
24 constexpr size_t ValSmallOffset = offsetof(DynamicAPInt, ValSmall); in static_assert_layout()
29 raw_ostream &DynamicAPInt::print(raw_ostream &OS) const { in print()
35 void DynamicAPInt::dump() const { print(dbgs()); } in dump()