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

/external/lldb/source/Utility/
H A DStringExtractor.cpp165 StringExtractor::GetU32 (uint32_t fail_value, int base) function in class:StringExtractor
/external/lldb/source/Core/
H A DDataExtractor.cpp502 DataExtractor::GetU32 (offset_t *offset_ptr) const function in class:DataExtractor
526 DataExtractor::GetU32 (offset_t *offset_ptr, void *void_dst, uint32_t count) const function in class:DataExtractor
628 case 4: return GetU32(offset_ptr); break;
653 case 4: return GetU32(offset_ptr); break;
685 case 4: return (int32_t)GetU32(offset_ptr); break;
917 case DW_EH_PE_udata4 : addressValue = GetU32(offset_ptr); break;
921 case DW_EH_PE_sdata4 : addressValue = (int32_t)GetU32(offset_ptr); break;
1866 s->Printf("U+0x%8.8x", GetU32 (&offset));
2062 case TypeUInt32: sstr.Printf (format ? format : " %8.8x", GetU32(&offset)); break;

Completed in 103 milliseconds