Home
last modified time | relevance | path

Searched refs:UnsignedValue (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMIRYamlMapping.h100 struct UnsignedValue {
104 UnsignedValue() = default;
105 UnsignedValue(unsigned Value) : Value(Value) {}
107 bool operator==(const UnsignedValue &Other) const {
112 template <> struct ScalarTraits<UnsignedValue> {
113 static void output(const UnsignedValue &Value, void *Ctx, raw_ostream &OS) {
117 static StringRef input(StringRef Scalar, void *Ctx, UnsignedValue &Value) {
185 LLVM_YAML_IS_FLOW_SEQUENCE_VECTOR(llvm::yaml::UnsignedValue)
191 UnsignedValue ID;
247 UnsignedValue ID;
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/MCTargetDesc/
H A DM68kAsmBackend.cpp195 uint64_t UnsignedValue) const { in fixupNeedsRelaxation()
196 int64_t Value = static_cast<int64_t>(UnsignedValue); in fixupNeedsRelaxation()
/freebsd/contrib/llvm-project/llvm/lib/Remarks/
H A DYAMLRemarkParser.cpp291 unsigned UnsignedValue = 0; in parseUnsigned() local
292 if (Value->getValue(Tmp).getAsInteger(10, UnsignedValue)) in parseUnsigned()
294 return UnsignedValue; in parseUnsigned()