Lines Matching refs:void_dst
397 void *DataExtractor::GetU16(offset_t *offset_ptr, void *void_dst, in GetU16() argument
404 uint16_t *dst_pos = static_cast<uint16_t *>(void_dst); in GetU16()
413 memcpy(void_dst, src, src_size); in GetU16()
417 return void_dst; in GetU16()
446 void *DataExtractor::GetU32(offset_t *offset_ptr, void *void_dst, in GetU32() argument
453 uint32_t *dst_pos = static_cast<uint32_t *>(void_dst); in GetU32()
462 memcpy(void_dst, src, src_size); in GetU32()
466 return void_dst; in GetU32()
494 void *DataExtractor::GetU64(offset_t *offset_ptr, void *void_dst, in GetU64() argument
501 uint64_t *dst_pos = static_cast<uint64_t *>(void_dst); in GetU64()
510 memcpy(void_dst, src, src_size); in GetU64()
514 return void_dst; in GetU64()