Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_value.cpp75 return SIntMax(UIntMax(Val) << ExtraBits) >> ExtraBits; in getSIntValue()
78 return SIntMax(UIntMax(*reinterpret_cast<s64 *>(Val)) << ExtraBits) >> in getSIntValue()
83 return SIntMax(UIntMax(*reinterpret_cast<s128 *>(Val)) << ExtraBits) >> in getSIntValue()
92 UIntMax Value::getUIntValue() const { in getUIntValue()
108 UIntMax Value::getPositiveIntValue() const { in getPositiveIntValue()
H A Dubsan_value.h33 typedef u128 UIntMax; typedef
36 typedef u64 UIntMax;
212 UIntMax getUIntValue() const;
215 UIntMax getPositiveIntValue() const;
H A Dubsan_diag.h144 Arg(UIntMax UInt) : Kind(AK_UInt), UInt(UInt) {}
152 UIntMax UInt;
195 Diag &operator<<(unsigned long long V) { return AddArg(UIntMax(V)); } in AddArg()
H A Dubsan_diag.cpp135 static void RenderHex(InternalScopedString *Buffer, UIntMax Val) { in RenderHex()