/src/sys/ufs/lfs/ |
lfs_rename.c | 284 doff_t from_prev_start, from_prev_end, to_start, to_end; local in function:ulfs_rename_ulr_overlap_p 302 to_start = tulr->ulr_offset; 303 KASSERT(tulr->ulr_count < (LFS_MAXDIRSIZE - to_start)); 304 to_end = (to_start + tulr->ulr_count); 307 (((to_start <= from_prev_start) && (from_prev_start < to_end)) || 308 ((to_start <= from_prev_end) && (from_prev_end < to_end)));
|
lfs_rename.c | 284 doff_t from_prev_start, from_prev_end, to_start, to_end; local in function:ulfs_rename_ulr_overlap_p 302 to_start = tulr->ulr_offset; 303 KASSERT(tulr->ulr_count < (LFS_MAXDIRSIZE - to_start)); 304 to_end = (to_start + tulr->ulr_count); 307 (((to_start <= from_prev_start) && (from_prev_start < to_end)) || 308 ((to_start <= from_prev_end) && (from_prev_end < to_end)));
|
/src/sys/ufs/ufs/ |
ufs_rename.c | 561 doff_t from_prev_start, from_prev_end, to_start, to_end; local in function:ufs_rename_ulr_overlap_p 579 to_start = tulr->ulr_offset; 580 KASSERT(tulr->ulr_count < (UFS_MAXDIRSIZE - to_start)); 581 to_end = (to_start + tulr->ulr_count); 584 (((to_start <= from_prev_start) && (from_prev_start < to_end)) || 585 ((to_start <= from_prev_end) && (from_prev_end < to_end)));
|
ufs_rename.c | 561 doff_t from_prev_start, from_prev_end, to_start, to_end; local in function:ufs_rename_ulr_overlap_p 579 to_start = tulr->ulr_offset; 580 KASSERT(tulr->ulr_count < (UFS_MAXDIRSIZE - to_start)); 581 to_end = (to_start + tulr->ulr_count); 584 (((to_start <= from_prev_start) && (from_prev_start < to_end)) || 585 ((to_start <= from_prev_end) && (from_prev_end < to_end)));
|
/src/sys/ufs/ext2fs/ |
ext2fs_rename.c | 512 doff_t from_prev_start, from_prev_end, to_start, to_end; local in function:ext2fs_rename_ulr_overlap_p 530 to_start = tulr->ulr_offset; 531 KASSERT(tulr->ulr_count < (EXT2FS_MAXDIRSIZE - to_start)); 532 to_end = (to_start + tulr->ulr_count); 535 (((to_start <= from_prev_start) && (from_prev_start < to_end)) || 536 ((to_start <= from_prev_end) && (from_prev_end < to_end)));
|
ext2fs_rename.c | 512 doff_t from_prev_start, from_prev_end, to_start, to_end; local in function:ext2fs_rename_ulr_overlap_p 530 to_start = tulr->ulr_offset; 531 KASSERT(tulr->ulr_count < (EXT2FS_MAXDIRSIZE - to_start)); 532 to_end = (to_start + tulr->ulr_count); 535 (((to_start <= from_prev_start) && (from_prev_start < to_end)) || 536 ((to_start <= from_prev_end) && (from_prev_end < to_end)));
|