reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
336 s.Address(uvalue, sizeof(uint64_t)); 340 s.PutHex8(uvalue); 343 s.PutHex16(uvalue); 347 s.PutHex32(uvalue); 351 s.PutHex64(uvalue); 361 if (uvalue > 0) { 365 s.Printf("<0x%" PRIx64 "> ", uvalue); 368 s.Printf("<0x%2.2x> ", (uint8_t)uvalue); 371 s.Printf("<0x%4.4x> ", (uint16_t)uvalue); 374 s.Printf("<0x%8.8x> ", (uint32_t)uvalue); 383 data_ptr + uvalue; // uvalue contains size of block 394 s.PutSLEB128(uvalue); 397 s.PutULEB128(uvalue); 404 s.PutHex32(uvalue); 412 s.Address(uvalue, sizeof(uint64_t) * 2); 414 s.Address(uvalue, 4 * 2); // 4 for DWARF32, 8 for DWARF64, but we don't 449 s.Printf("{0x%8.8" PRIx64 "}", uvalue + m_unit->GetOffset());