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.h48 class DynamicAPInt {
77 LLVM_ATTRIBUTE_ALWAYS_INLINE explicit DynamicAPInt( in DynamicAPInt() function
116 LLVM_ATTRIBUTE_ALWAYS_INLINE explicit DynamicAPInt(int64_t Val) in DynamicAPInt() function
120 LLVM_ATTRIBUTE_ALWAYS_INLINE explicit DynamicAPInt(const APInt &Val) { in DynamicAPInt() function
128 LLVM_ATTRIBUTE_ALWAYS_INLINE DynamicAPInt() : DynamicAPInt(0) {} in DynamicAPInt() function
129 LLVM_ATTRIBUTE_ALWAYS_INLINE ~DynamicAPInt() { in ~DynamicAPInt()
133 LLVM_ATTRIBUTE_ALWAYS_INLINE DynamicAPInt(const DynamicAPInt &O) in DynamicAPInt() function
139 LLVM_ATTRIBUTE_ALWAYS_INLINE DynamicAPInt &operator=(const DynamicAPInt &O) {
147 LLVM_ATTRIBUTE_ALWAYS_INLINE DynamicAPInt &operator=(int X) {
157 bool operator==(const DynamicAPInt &O) const;
[all …]
H A DSlowDynamicAPInt.h25 class DynamicAPInt; variable
78 friend DynamicAPInt; variable
H A DAPInt.h33 class DynamicAPInt; variable
1948 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()
36 LLVM_DUMP_METHOD void DynamicAPInt::dump() const { print(dbgs()); } in dump()