Searched refs:field_base (Results 1 – 1 of 1) sorted by relevance
148 uintptr_t field_base; in sds_struct_read() local175 field_base = (uintptr_t)header + SDS_HEADER_SIZE + fld_off; in sds_struct_read()176 if (check_uptr_overflow(field_base, size - 1)) in sds_struct_read()180 memcpy(data, (void *)field_base, size); in sds_struct_read()197 uintptr_t field_base; in sds_struct_write() local224 field_base = (uintptr_t)header + SDS_HEADER_SIZE + fld_off; in sds_struct_write()225 if (check_uptr_overflow(field_base, size - 1)) in sds_struct_write()229 memcpy((void *)field_base, data, size); in sds_struct_write()232 flush_dcache_range((uintptr_t)field_base, size); in sds_struct_write()