Searched refs:void_dst (Results 1 – 1 of 1) sorted by relevance
/external/lldb/source/Core/ |
D | DataExtractor.cpp | 467 DataExtractor::GetU16 (offset_t *offset_ptr, void *void_dst, uint32_t count) const in GetU16() argument 475 uint16_t *dst_pos = (uint16_t *)void_dst; in GetU16() 487 memcpy (void_dst, src, src_size); in GetU16() 490 return void_dst; in GetU16() 526 DataExtractor::GetU32 (offset_t *offset_ptr, void *void_dst, uint32_t count) const in GetU32() argument 534 uint32_t *dst_pos = (uint32_t *)void_dst; in GetU32() 546 memcpy (void_dst, src, src_size); in GetU32() 549 return void_dst; in GetU32() 583 DataExtractor::GetU64 (offset_t *offset_ptr, void *void_dst, uint32_t count) const in GetU64() argument 591 uint64_t *dst_pos = (uint64_t *)void_dst; in GetU64() [all …]
|