Home
last modified time | relevance | path

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

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