Lines Matching refs:uval
154 Value.uval = data.getUnsigned(offset_ptr, AddrSize) + R.second; in extractValue()
156 Value.uval = data.getUnsigned(offset_ptr, AddrSize); in extractValue()
161 Value.uval = data.getULEB128(offset_ptr); in extractValue()
165 Value.uval = data.getU8(offset_ptr); in extractValue()
169 Value.uval = data.getU16(offset_ptr); in extractValue()
173 Value.uval = data.getU32(offset_ptr); in extractValue()
179 Value.uval = data.getU8(offset_ptr); in extractValue()
183 Value.uval = data.getU16(offset_ptr); in extractValue()
187 Value.uval = data.getU32(offset_ptr); in extractValue()
192 Value.uval += AI->second.second; in extractValue()
197 Value.uval = data.getU64(offset_ptr); in extractValue()
203 Value.uval = data.getU32(offset_ptr); in extractValue()
208 Value.uval += AI->second.second; in extractValue()
213 Value.uval = data.getULEB128(offset_ptr); in extractValue()
224 Value.uval = data.getU32(offset_ptr); in extractValue()
229 Value.uval += AI->second.second; in extractValue()
233 Value.uval = 1; in extractValue()
236 Value.uval = data.getU64(offset_ptr); in extractValue()
240 Value.uval = data.getULEB128(offset_ptr); in extractValue()
248 StringRef str = data.getData().substr(*offset_ptr, Value.uval); in extractValue()
252 *offset_ptr += Value.uval; in extractValue()
368 uint64_t uvalue = Value.uval; in dump()
424 case DW_FORM_udata: OS << Value.uval; break; in dump()
502 uint32_t Offset = Value.uval; in getAsCString()
519 uint32_t Index = Value.uval; in getAsAddress()
525 return Value.uval; in getAsAddress()
539 return Value.uval + U->getOffset(); in getAsReference()
541 return Value.uval; in getAsReference()
544 return Value.uval; in getAsReference()
551 return Value.uval; in getAsSectionOffset()
558 return Value.uval; in getAsUnsignedConstant()
563 (Form == DW_FORM_udata && uint64_t(LLONG_MAX) < Value.uval)) in getAsSignedConstant()
567 return int32_t(Value.uval); in getAsSignedConstant()
569 return int16_t(Value.uval); in getAsSignedConstant()
571 return int8_t(Value.uval); in getAsSignedConstant()
582 return ArrayRef<uint8_t>(Value.data, Value.uval); in getAsBlock()