Searched defs:uvalue (Results 1 - 7 of 7) sorted by relevance

/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.cpp283 uint64_t uvalue = Unsigned(); local
290 case DW_FORM_addr: s.Address(uvalue, sizeof (uint64_t)); break;
292 case DW_FORM_data1: s.PutHex8(uvalue); break;
293 case DW_FORM_data2: s.PutHex16(uvalue); break;
295 case DW_FORM_data4: s.PutHex32(uvalue); break;
297 case DW_FORM_data8: s.PutHex64(uvalue); break;
304 if (uvalue > 0)
309 case DW_FORM_block: s.Printf("<0x%" PRIx64 "> ", uvalue); break;
310 case DW_FORM_block1: s.Printf("<0x%2.2x> ", (uint8_t)uvalue); break;
311 case DW_FORM_block2: s.Printf("<0x%4.4x> ", (uint16_t)uvalue); brea
[all...]
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFFormValue.cpp372 uint64_t uvalue = Value.uval; local
376 case DW_FORM_addr: OS << format("0x%016" PRIx64, uvalue); break;
378 OS << format(" indexed (%8.8x) address = ", (uint32_t)uvalue);
380 if (cu->getAddrOffsetSectionItem(uvalue, Address))
388 case DW_FORM_data1: OS << format("0x%02x", (uint8_t)uvalue); break;
389 case DW_FORM_data2: OS << format("0x%04x", (uint16_t)uvalue); break;
390 case DW_FORM_data4: OS << format("0x%08x", (uint32_t)uvalue); break;
392 case DW_FORM_data8: OS << format("0x%016" PRIx64, uvalue); break;
403 if (uvalue > 0) {
406 case DW_FORM_block: OS << format("<0x%" PRIx64 "> ", uvalue); brea
[all...]
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_gcc.cpp68 UT uvalue; local
72 uvalue = static_cast<UT>(-(value + 1)) + 1;
74 uvalue = value;
77 T order = uvalue / radix;
83 string[d + i] = "0123456789abcdef"[uvalue % radix];
84 uvalue /= radix;
/external/lldb/source/Core/
H A DStream.cpp515 Stream::PutNHex8 (size_t n, uint8_t uvalue) argument
519 bytes_written += _PutHex8 (uvalue, m_flags.Test(eAddPrefix));
524 Stream::_PutHex8 (uint8_t uvalue, bool add_prefix) argument
529 bytes_written = Write (&uvalue, 1);
538 nibble_chars[0] = g_hex_to_ascii_hex_char[(uvalue >> 4) & 0xf];
539 nibble_chars[1] = g_hex_to_ascii_hex_char[(uvalue >> 0) & 0xf];
546 Stream::PutHex8 (uint8_t uvalue) argument
548 return _PutHex8 (uvalue, m_flags.Test(eAddPrefix));
552 Stream::PutHex16 (uint16_t uvalue, ByteOrder byte_order) argument
561 for (size_t byte = 0; byte < sizeof(uvalue);
573 PutHex32(uint32_t uvalue, ByteOrder byte_order) argument
594 PutHex64(uint64_t uvalue, ByteOrder byte_order) argument
615 PutMaxHex64( uint64_t uvalue, size_t byte_size, lldb::ByteOrder byte_order ) argument
[all...]
/external/openssh/openbsd-compat/
H A Dbsd-snprintf.c559 unsigned LLONG uvalue; local
569 uvalue = value;
574 uvalue = -value;
588 [uvalue % (unsigned)base ];
589 uvalue = (uvalue / (unsigned)base );
590 } while(uvalue && (place < 20));
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_snprintf.c898 UINTMAX_T uvalue; local
909 uvalue = value;
911 uvalue = (value >= 0) ? value : -value;
920 pos = convert(uvalue, iconvert, sizeof(iconvert), base,
923 if (flags & PRINT_F_NUM && uvalue != 0) {
/external/kernel-headers/original/uapi/linux/dvb/
H A Dfrontend.h450 __u64 uvalue; /* for counters and relative scales */ member in union:dtv_stats::__anon7982

Completed in 383 milliseconds