HomeSort by relevance Sort by last modified time
    Searched defs:GetU32 (Results 1 - 2 of 2) sorted by null

  /external/lldb/source/Utility/
StringExtractor.cpp 165 StringExtractor::GetU32 (uint32_t fail_value, int base)
  /external/lldb/source/Core/
DataExtractor.cpp 502 DataExtractor::GetU32 (offset_t *offset_ptr) const
526 DataExtractor::GetU32 (offset_t *offset_ptr, void *void_dst, uint32_t count) const
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;
    [all...]

Completed in 561 milliseconds