Home
last modified time | relevance | path

Searched refs:Value_ (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A DStatistics.cpp52 SaturatingUINT64(uint64_t Value_) : Value(Value_) {} in SaturatingUINT64()
55 void operator+=(uint64_t Value_) { in operator +=()
57 if (Value < OverflowValue - Value_) in operator +=()
58 Value += Value_; in operator +=()
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h2348 BoolExpr(bool Value_) : Node(KBoolExpr), Value(Value_) {} in BoolExpr() argument
2416 IntegerLiteral(std::string_view Type_, std::string_view Value_) in IntegerLiteral() argument
2417 : Node(KIntegerLiteral), Type(Type_), Value(Value_) {} in IntegerLiteral()