Lines Matching refs:void_dst
396 void *DataExtractor::GetU16(offset_t *offset_ptr, void *void_dst, in GetU16() argument
403 uint16_t *dst_pos = static_cast<uint16_t *>(void_dst); in GetU16()
412 memcpy(void_dst, src, src_size); in GetU16()
416 return void_dst; in GetU16()
445 void *DataExtractor::GetU32(offset_t *offset_ptr, void *void_dst, in GetU32() argument
452 uint32_t *dst_pos = static_cast<uint32_t *>(void_dst); in GetU32()
461 memcpy(void_dst, src, src_size); in GetU32()
465 return void_dst; in GetU32()
493 void *DataExtractor::GetU64(offset_t *offset_ptr, void *void_dst, in GetU64() argument
500 uint64_t *dst_pos = static_cast<uint64_t *>(void_dst); in GetU64()
509 memcpy(void_dst, src, src_size); in GetU64()
513 return void_dst; in GetU64()