Home
last modified time | relevance | path

Searched refs:uvalue (Results 1 – 9 of 9) sorted by relevance

/NextBSD/contrib/llvm/tools/lldb/source/Core/
HDStream.cpp515 Stream::PutNHex8 (size_t n, uint8_t uvalue) in PutNHex8() argument
519 bytes_written += _PutHex8 (uvalue, m_flags.Test(eAddPrefix)); in PutNHex8()
524 Stream::_PutHex8 (uint8_t uvalue, bool add_prefix) in _PutHex8() argument
529 bytes_written = Write (&uvalue, 1); in _PutHex8()
538 nibble_chars[0] = g_hex_to_ascii_hex_char[(uvalue >> 4) & 0xf]; in _PutHex8()
539 nibble_chars[1] = g_hex_to_ascii_hex_char[(uvalue >> 0) & 0xf]; in _PutHex8()
546 Stream::PutHex8 (uint8_t uvalue) in PutHex8() argument
548 return _PutHex8 (uvalue, m_flags.Test(eAddPrefix)); in PutHex8()
552 Stream::PutHex16 (uint16_t uvalue, ByteOrder byte_order) in PutHex16() argument
561 for (size_t byte = 0; byte < sizeof(uvalue); ++byte, add_prefix = false) in PutHex16()
[all …]
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
HDDWARFFormValue.cpp347 uint64_t uvalue = Unsigned(); in Dump() local
354 case DW_FORM_addr: s.Address(uvalue, sizeof (uint64_t)); break; in Dump()
356 case DW_FORM_data1: s.PutHex8(uvalue); break; in Dump()
357 case DW_FORM_data2: s.PutHex16(uvalue); break; in Dump()
359 case DW_FORM_data4: s.PutHex32(uvalue); break; in Dump()
361 case DW_FORM_data8: s.PutHex64(uvalue); break; in Dump()
368 if (uvalue > 0) in Dump()
373 case DW_FORM_block: s.Printf("<0x%" PRIx64 "> ", uvalue); break; in Dump()
374 case DW_FORM_block1: s.Printf("<0x%2.2x> ", (uint8_t)uvalue); break; in Dump()
375 case DW_FORM_block2: s.Printf("<0x%4.4x> ", (uint16_t)uvalue); break; in Dump()
[all …]
/NextBSD/contrib/llvm/lib/DebugInfo/DWARF/
HDDWARFFormValue.cpp366 uint64_t uvalue = Value.uval; in dump() local
370 case DW_FORM_addr: OS << format("0x%016" PRIx64, uvalue); break; in dump()
372 OS << format(" indexed (%8.8x) address = ", (uint32_t)uvalue); in dump()
374 if (cu->getAddrOffsetSectionItem(uvalue, Address)) in dump()
382 case DW_FORM_data1: OS << format("0x%02x", (uint8_t)uvalue); break; in dump()
383 case DW_FORM_data2: OS << format("0x%04x", (uint16_t)uvalue); break; in dump()
384 case DW_FORM_data4: OS << format("0x%08x", (uint32_t)uvalue); break; in dump()
386 case DW_FORM_data8: OS << format("0x%016" PRIx64, uvalue); break; in dump()
397 if (uvalue > 0) { in dump()
400 case DW_FORM_block: OS << format("<0x%" PRIx64 "> ", uvalue); break; in dump()
[all …]
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Core/
HDStream.h146 PutHex8 (uint8_t uvalue);
149 PutNHex8 (size_t n, uint8_t uvalue);
152 PutHex16 (uint16_t uvalue,
156 PutHex32 (uint32_t uvalue,
160 PutHex64 (uint64_t uvalue,
164 PutMaxHex64 (uint64_t uvalue,
605 size_t _PutHex8 (uint8_t uvalue, bool add_prefix);
/NextBSD/contrib/binutils/binutils/
HDdwarf.c590 unsigned long uvalue; in decode_location_expression() local
860 uvalue = read_leb128 (data, &bytes_read, 0); in decode_location_expression()
862 printf ("DW_OP_bregx: %lu %ld", uvalue, in decode_location_expression()
937 unsigned long uvalue = 0; in read_and_display_attr_value() local
949 uvalue = byte_get (data, pointer_size); in read_and_display_attr_value()
954 uvalue = byte_get (data, offset_size); in read_and_display_attr_value()
964 uvalue = byte_get (data, pointer_size); in read_and_display_attr_value()
969 uvalue = byte_get (data, offset_size); in read_and_display_attr_value()
974 uvalue = 1; in read_and_display_attr_value()
980 uvalue = byte_get (data++, 1); in read_and_display_attr_value()
[all …]
/NextBSD/crypto/openssl/crypto/bio/
HDb_print.c468 unsigned LLONG uvalue; in fmtint() local
477 uvalue = value; in fmtint()
481 uvalue = -value; in fmtint()
497 [uvalue % (unsigned)base]; in fmtint()
498 uvalue = (uvalue / (unsigned)base); in fmtint()
499 } while (uvalue && (place < (int)sizeof(convert))); in fmtint()
/NextBSD/crypto/openssh/openbsd-compat/
HDbsd-snprintf.c559 unsigned LLONG uvalue; in fmtint() local
569 uvalue = value; in fmtint()
574 uvalue = -value; in fmtint()
588 [uvalue % (unsigned)base ]; in fmtint()
589 uvalue = (uvalue / (unsigned)base ); in fmtint()
590 } while(uvalue && (place < 20)); in fmtint()
/NextBSD/contrib/binutils/bfd/
HDelf32-score.c242 unsigned long hi16_offset, hi16_value, uvalue; in score_elf_lo16_reloc() local
251 uvalue = ((hi16_offset << 16) | (offset & 0xffff)) + val; in score_elf_lo16_reloc()
252 hi16_offset = (uvalue >> 16) << 1; in score_elf_lo16_reloc()
255 offset = (uvalue & 0xffff) << 1; in score_elf_lo16_reloc()
536 signed long hi16_offset, hi16_value, uvalue; in score_elf_got_lo16_reloc() local
545 uvalue = ((hi16_offset << 16) | (offset & 0xffff)) + val; in score_elf_got_lo16_reloc()
546 if ((uvalue > -0x8000) && (uvalue < 0x7fff)) in score_elf_got_lo16_reloc()
549 hi16_offset = (uvalue >> 16) & 0x7fff; in score_elf_got_lo16_reloc()
552 offset = (uvalue & 0xffff) << 1; in score_elf_got_lo16_reloc()
1757 unsigned long hi16_addend, hi16_offset, hi16_value, uvalue; in score_elf_add_to_rel() local
[all …]
/NextBSD/contrib/ntp/libntp/
HDsnprintf.c994 UINTMAX_T uvalue; in fmtint() local
1005 uvalue = value; in fmtint()
1007 uvalue = (value >= 0) ? value : -value; in fmtint()
1016 pos = convert(uvalue, iconvert, sizeof(iconvert), base, in fmtint()
1019 if (flags & PRINT_F_NUM && uvalue != 0) { in fmtint()