Lines Matching defs:UValue

383   uint64_t UValue = Value.uval;
407 uint32_t Index = UValue >> 32;
408 uint32_t Offset = UValue & 0xffffffff;
411 AddrOS << format("indexed (%8.8x) address = ", (uint32_t)UValue);
424 OS << format("0x%02x", (uint8_t)UValue);
427 OS << format("0x%04x", (uint16_t)UValue);
430 OS << format("0x%08x", (uint32_t)UValue);
433 AddrOS << format("0x%016" PRIx64, UValue);
436 OS << format("0x%016" PRIx64, UValue);
451 if (UValue > 0) {
455 AddrOS << format("<0x%" PRIx64 "> ", UValue);
458 AddrOS << format("<0x%2.2x> ", (uint8_t)UValue);
461 AddrOS << format("<0x%4.4x> ", (uint16_t)UValue);
464 AddrOS << format("<0x%8.8x> ", (uint32_t)UValue);
472 // UValue contains size of block
473 const uint8_t *EndDataPtr = DataPtr + UValue;
492 OS << format(" .debug_str[0x%0*" PRIx64 "] = ", OffsetDumpWidth, UValue);
498 UValue);
508 OS << format("indexed (%8.8x) string = ", (uint32_t)UValue);
513 OS << format("alt indirect string, offset: 0x%" PRIx64 "", UValue);
517 AddrOS << format("0x%016" PRIx64, UValue);
522 AddrOS << format("cu + 0x%2.2x", (uint8_t)UValue);
527 AddrOS << format("cu + 0x%4.4x", (uint16_t)UValue);
532 AddrOS << format("cu + 0x%4.4x", (uint32_t)UValue);
537 AddrOS << format("cu + 0x%8.8" PRIx64, UValue);
542 AddrOS << format("cu + 0x%" PRIx64, UValue);
545 AddrOS << format("<alt 0x%" PRIx64 ">", UValue);
555 OS << format("indexed (0x%x) rangelist = ", (uint32_t)UValue);
559 OS << format("indexed (0x%x) loclist = ", (uint32_t)UValue);
563 AddrOS << format("0x%0*" PRIx64, OffsetDumpWidth, UValue);
576 << format("0x%8.8" PRIx64, UValue + (U ? U->getOffset() : 0));