Lines Matching refs:target_offset
82 target_offset: usize, field
97 target_offset: usize, field
181 let target_offset = sg_entry.offset.checked_add(parent_offset).ok_or(EINVAL)?; in validate_parent_fixup() localVariable
188 target_offset, in validate_parent_fixup()
768 target_offset: info.target_offset, in translate_object()
813 target_offset: info.target_offset, in translate_object()
851 view.alloc.info_add_fd(file, info.target_offset + i, true)?; in translate_object()
880 let target_offset_end = fixup.target_offset.checked_add(fixup_len).ok_or(EINVAL)?; in apply_sg()
881 if fixup.target_offset < end_of_previous_fixup || offset_end < target_offset_end { in apply_sg()
884 fixup.target_offset, in apply_sg()
893 let copy_len = fixup.target_offset - end_of_previous_fixup; in apply_sg()
899 let res = alloc.write::<u64>(fixup.target_offset, &fixup.pointer_value); in apply_sg()