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

/external/lldb/source/Core/
H A DDataExtractor.cpp406 DataExtractor::GetU16 (offset_t *offset_ptr) const function in class:DataExtractor
467 DataExtractor::GetU16 (offset_t *offset_ptr, void *void_dst, uint32_t count) const function in class:DataExtractor
627 case 2: return GetU16(offset_ptr); break;
652 case 2: return GetU16(offset_ptr); break;
684 case 2: return (int16_t)GetU16(offset_ptr); break;
916 case DW_EH_PE_udata2 : addressValue = GetU16(offset_ptr); break;
920 case DW_EH_PE_sdata2 : addressValue = (int16_t)GetU16(offset_ptr); break;
1808 llvm::APInt apint(item_bit_size, this->GetU16(&offset));
1830 uint16_t half = this->GetU16(&offset);
1862 s->Printf("U+%4.4x", GetU16 (
[all...]

Completed in 483 milliseconds