Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DDataExtractor.cpp435 void *DataExtractor::GetU16(offset_t *offset_ptr, void *void_dst, in GetU16() argument
441 uint16_t *dst_pos = (uint16_t *)void_dst; in GetU16()
450 memcpy(void_dst, src, src_size); in GetU16()
454 return void_dst; in GetU16()
486 void *DataExtractor::GetU32(offset_t *offset_ptr, void *void_dst, in GetU32() argument
492 uint32_t *dst_pos = (uint32_t *)void_dst; in GetU32()
501 memcpy(void_dst, src, src_size); in GetU32()
505 return void_dst; in GetU32()
542 uint64_t *dst_pos = (uint64_t *)void_dst; in GetU64()
551 memcpy(void_dst, src, src_size); in GetU64()
[all …]