Lines Matching refs:uval
54 // Put an offset "uval" out to the stream using the printf format
58 Stream::Offset (uint32_t uval, const char *format)
60 Printf (format, uval);
64 // Put an SLEB128 "uval" out to the stream using the printf format
98 // Put an ULEB128 "uval" out to the stream using the printf format
102 Stream::PutULEB128 (uint64_t uval)
110 uint8_t byte = uval & 0x7fu;
111 uval >>= 7;
112 if (uval != 0)
118 } while (uval != 0);
122 bytes_written = Printf ("0x%" PRIx64, uval);
294 // Stream a uint8_t "uval" out to this stream.
297 Stream::operator<< (uint8_t uval)
299 PutHex8(uval);
304 // Stream a uint16_t "uval" out to this stream.
307 Stream::operator<< (uint16_t uval)
309 PutHex16(uval, m_byte_order);
314 // Stream a uint32_t "uval" out to this stream.
317 Stream::operator<< (uint32_t uval)
319 PutHex32(uval, m_byte_order);
324 // Stream a uint64_t "uval" out to this stream.
327 Stream::operator<< (uint64_t uval)
329 PutHex64(uval, m_byte_order);