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

/external/lldb/source/Core/
H A DDataExtractor.cpp561 DataExtractor::GetU64 (offset_t *offset_ptr) const function in class:DataExtractor
576 // GetU64
583 DataExtractor::GetU64 (offset_t *offset_ptr, void *void_dst, uint32_t count) const function in class:DataExtractor
654 case 8: return GetU64(offset_ptr); break;
686 case 8: return (int64_t)GetU64(offset_ptr); break;
918 case DW_EH_PE_udata8 : addressValue = GetU64(offset_ptr); break;
922 case DW_EH_PE_sdata8 : addressValue = (int64_t)GetU64(offset_ptr); break;
1278 u64 = data.GetU64(offset_ptr);
1301 u64 = data.GetU64(&temp_offset);
2063 case TypeUInt64: sstr.Printf (format ? format : " %16.16" PRIx64, GetU64(
[all...]

Completed in 476 milliseconds