Home
last modified time | relevance | path

Searched refs:void_dst (Results 1 – 1 of 1) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DDataExtractor.cpp398 void *DataExtractor::GetU16(offset_t *offset_ptr, void *void_dst, in GetU16() argument
405 uint16_t *dst_pos = static_cast<uint16_t *>(void_dst); in GetU16()
414 memcpy(void_dst, src, src_size); in GetU16()
418 return void_dst; in GetU16()
447 void *DataExtractor::GetU32(offset_t *offset_ptr, void *void_dst, in GetU32() argument
454 uint32_t *dst_pos = static_cast<uint32_t *>(void_dst); in GetU32()
463 memcpy(void_dst, src, src_size); in GetU32()
467 return void_dst; in GetU32()
502 uint64_t *dst_pos = static_cast<uint64_t *>(void_dst); in GetU64()
511 memcpy(void_dst, src, src_size); in GetU64()
[all …]