Lines Matching refs:void_dst
435 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()
536 void *DataExtractor::GetU64(offset_t *offset_ptr, void *void_dst, in GetU64() argument
542 uint64_t *dst_pos = (uint64_t *)void_dst; in GetU64()
551 memcpy(void_dst, src, src_size); in GetU64()
555 return void_dst; in GetU64()