Searched refs:uvalue (Results 1 – 7 of 7) sorted by relevance
| /openbsd-src/gnu/llvm/lldb/source/Utility/ |
| H A D | Stream.cpp | 210 size_t Stream::PutNHex8(size_t n, uint8_t uvalue) { in PutNHex8() argument 213 _PutHex8(uvalue, false); in PutNHex8() 217 void Stream::_PutHex8(uint8_t uvalue, bool add_prefix) { in _PutHex8() argument 219 Write(&uvalue, 1); in _PutHex8() 228 nibble_chars[0] = g_hex_to_ascii_hex_char[(uvalue >> 4) & 0xf]; in _PutHex8() 229 nibble_chars[1] = g_hex_to_ascii_hex_char[(uvalue >> 0) & 0xf]; in _PutHex8() 234 size_t Stream::PutHex8(uint8_t uvalue) { in PutHex8() argument 236 _PutHex8(uvalue, false); in PutHex8() 240 size_t Stream::PutHex16(uint16_t uvalue, ByteOrder byte_order) { in PutHex16() argument 247 for (size_t byte = 0; byte < sizeof(uvalue); ++byte) in PutHex16() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFFormValue.cpp | 336 uint64_t uvalue = Unsigned(); in Dump() local 341 DumpAddress(s.AsRawOstream(), uvalue, sizeof(uint64_t)); in Dump() 345 s.PutHex8(uvalue); in Dump() 348 s.PutHex16(uvalue); in Dump() 352 s.PutHex32(uvalue); in Dump() 356 s.PutHex64(uvalue); in Dump() 366 if (uvalue > 0) { in Dump() 370 s.Printf("<0x%" PRIx64 "> ", uvalue); in Dump() 373 s.Printf("<0x%2.2x> ", (uint8_t)uvalue); in Dump() 376 s.Printf("<0x%4.4x> ", (uint16_t)uvalue); in Dump() [all …]
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/binutils/ |
| H A D | dwarf.c | 589 unsigned long uvalue; in decode_location_expression() local 859 uvalue = read_leb128 (data, &bytes_read, 0); in decode_location_expression() 861 printf ("DW_OP_bregx: %lu %ld", uvalue, in decode_location_expression() 933 unsigned long uvalue = 0; in read_and_display_attr_value() local 945 uvalue = byte_get (data, pointer_size); in read_and_display_attr_value() 950 uvalue = byte_get (data, offset_size); in read_and_display_attr_value() 960 uvalue = byte_get (data, pointer_size); in read_and_display_attr_value() 965 uvalue = byte_get (data, offset_size); in read_and_display_attr_value() 972 uvalue = byte_get (data++, 1); in read_and_display_attr_value() 977 uvalue = byte_get (data, 2); in read_and_display_attr_value() [all …]
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Utility/ |
| H A D | Stream.h | 145 size_t PutHex8(uint8_t uvalue); 147 size_t PutNHex8(size_t n, uint8_t uvalue); 149 size_t PutHex16(uint16_t uvalue, 152 size_t PutHex32(uint32_t uvalue, 155 size_t PutHex64(uint64_t uvalue, 158 size_t PutMaxHex64(uint64_t uvalue, size_t byte_size, 370 void _PutHex8(uint8_t uvalue, bool add_prefix);
|
| /openbsd-src/gnu/usr.bin/binutils/binutils/ |
| H A D | readelf.c | 7321 unsigned long uvalue; in decode_location_expression() local 7589 uvalue = read_leb128 (data, &bytes_read, 0); in decode_location_expression() 7591 printf ("DW_OP_bregx: %lu %ld", uvalue, in decode_location_expression() 7875 unsigned long uvalue = 0; in read_and_display_attr_value() local 7887 uvalue = byte_get (data, pointer_size); in read_and_display_attr_value() 7892 uvalue = byte_get (data, offset_size); in read_and_display_attr_value() 7902 uvalue = byte_get (data, pointer_size); in read_and_display_attr_value() 7907 uvalue = byte_get (data, offset_size); in read_and_display_attr_value() 7914 uvalue = byte_get (data++, 1); in read_and_display_attr_value() 7919 uvalue = byte_get (data, 2); in read_and_display_attr_value() [all …]
|
| /openbsd-src/gnu/gcc/gcc/config/xtensa/ |
| H A D | xtensa.c | 684 unsigned HOST_WIDE_INT uvalue = (unsigned HOST_WIDE_INT)value; in gen_int_relational() local 690 (uvalue + p_info->const_add > uvalue) : in gen_int_relational()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/config/xtensa/ |
| H A D | xtensa.c | 997 unsigned HOST_WIDE_INT uvalue = (unsigned HOST_WIDE_INT)value; local 1003 (uvalue + p_info->const_add > uvalue) :
|