Home | History | Annotate | Download | only in DWARF

Lines Matching defs:uint

57     uint64_t  uint;
72 uint = data.GetULEB128(offset_ptr);
74 s.Printf("%" PRIu64 " %" PRIi64, uint, sint);
164 case 1: uint = data.GetU8(offset_ptr); s.Printf("0x%2.2" PRIx64, uint); break;
165 case 2: uint = data.GetU16(offset_ptr); s.Printf("0x%4.4" PRIx64, uint); break;
166 case 4: uint = data.GetU32(offset_ptr); s.Printf("0x%8.8" PRIx64, uint); break;
167 case 8: uint = data.GetU64(offset_ptr); s.Printf("0x%16.16" PRIx64, uint); break;
168 case 128: uint = data.GetULEB128(offset_ptr); s.Printf("0x%" PRIx64, uint); break;