Searched refs:void_dst (Results 1 – 1 of 1) sorted by relevance
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/ |
| D | DataExtractor.cpp | 496 DataExtractor::GetU16 (offset_t *offset_ptr, void *void_dst, uint32_t count) const in GetU16() argument 504 uint16_t *dst_pos = (uint16_t *)void_dst; in GetU16() 516 memcpy (void_dst, src, src_size); in GetU16() 519 return void_dst; in GetU16() 559 DataExtractor::GetU32 (offset_t *offset_ptr, void *void_dst, uint32_t count) const in GetU32() argument 567 uint32_t *dst_pos = (uint32_t *)void_dst; in GetU32() 579 memcpy (void_dst, src, src_size); in GetU32() 582 return void_dst; in GetU32() 620 DataExtractor::GetU64 (offset_t *offset_ptr, void *void_dst, uint32_t count) const in GetU64() argument 628 uint64_t *dst_pos = (uint64_t *)void_dst; in GetU64() [all …]
|