HomeSort by: relevance | last modified time | path
    Searched refs:e2di_blocks (Results 1 - 9 of 9) sorted by relevancy

  /src/sbin/fsck_ext2fs/
pass1.c 172 memcmp(dp->e2di_blocks, zino.e2di_blocks,
255 if (dp->e2di_blocks[j] != 0) {
258 fs2h32(dp->e2di_blocks[j]));
264 if (dp->e2di_blocks[j+EXT2FS_NDADDR] != 0) {
267 fs2h32(dp->e2di_blocks[j+EXT2FS_NDADDR]));
inode.c 186 for (ap = &dino.e2di_blocks[0]; ap < &dino.e2di_blocks[EXT2FS_NDADDR];
199 (ap - &dino.e2di_blocks[0]) *
220 for (ap = &dino.e2di_blocks[EXT2FS_NDADDR], n = 1; n <= EXT2FS_NIADDR; ap++, n++) {
521 memcpy(&inp->i_blks[0], &dp->e2di_blocks[0], (size_t)inp->i_numblks);
719 dp->e2di_blocks[0] = h2fs32(allocblk());
720 if (dp->e2di_blocks[0] == 0) {
dir.c 562 if (lastbn >= EXT2FS_NDADDR - 1 || fs2h32(dp->e2di_blocks[lastbn]) == 0 ||
569 dp->e2di_blocks[lastbn + 1] = dp->e2di_blocks[lastbn];
570 dp->e2di_blocks[lastbn] = h2fs32(newblk);
573 bp = getdirblk(fs2h32(dp->e2di_blocks[lastbn + 1]),
588 bp = getdirblk(fs2h32(dp->e2di_blocks[lastbn + 1]),
603 dp->e2di_blocks[lastbn] = dp->e2di_blocks[lastbn + 1];
604 dp->e2di_blocks[lastbn + 1] = 0;
641 bp = getdirblk(fs2h32(dp->e2di_blocks[0]), sblock.e2fs_bsize)
    [all...]
pass2.c 182 memcpy(&dino.e2di_blocks[0], &inp->i_blks[0], (size_t)inp->i_numblks);
  /src/sys/ufs/ext2fs/
ext2fs_dinode.h 123 uint32_t e2di_blocks[EXT2FS_NDADDR+EXT2FS_NIADDR]; member in struct:ext2fs_dinode
158 #define i_e2fs_blocks i_din.e2fs_din->e2di_blocks
264 * The e2di_blocks fields may be overlaid with other information for
271 #define e2di_rdev e2di_blocks[0]
272 #define e2di_shortlink e2di_blocks
ext2fs_extents.c 189 ehp = (struct ext4_extent_header *)ip->i_din.e2fs_din->e2di_blocks;
  /src/sbin/newfs_ext2fs/
mke2fs.c 953 node.e2di_blocks[0] = alloc(sblock.e2fs_bsize, node.e2di_mode);
954 if (node.e2di_blocks[0] == 0) {
965 node.e2di_blocks[i] = blk;
967 wtfs(EXT2_FSBTODB(&sblock, node.e2di_blocks[0]),
973 wtfs(EXT2_FSBTODB(&sblock, node.e2di_blocks[i]),
1000 node.e2di_blocks[0] = alloc(node.e2di_size, node.e2di_mode);
1001 if (node.e2di_blocks[0] == 0) {
1005 wtfs(EXT2_FSBTODB(&sblock, node.e2di_blocks[0]),
1150 node.e2di_blocks[i] = 0;
1152 node.e2di_blocks[EXT2FS_NDADDR + SINGLE] = 0
    [all...]
  /src/usr.sbin/installboot/
ext2fs.c 250 level[0].blknums = &inode->e2di_blocks[0];
252 level[1].blknums = &inode->e2di_blocks[UFS_NDADDR + 0];
254 level[2].blknums = &inode->e2di_blocks[UFS_NDADDR + 1];
256 level[3].blknums = &inode->e2di_blocks[UFS_NDADDR + 2];
  /src/sys/lib/libsa/
ext2fs.c 219 * e2di_blocks[0..EXT2FS_NDADDR-1]
223 * e2di_blocks[EXT2FS_NDADDR+0]
228 * e2di_blocks[EXT2FS_NDADDR+1]
234 * e2di_blocks[EXT2FS_NDADDR+2]
245 *disk_block_p = fs2h32(fp->f_di.e2di_blocks[file_block]);
269 fs2h32(fp->f_di.e2di_blocks[EXT2FS_NDADDR +
633 memcpy(namebuf, fp->f_di.e2di_blocks, link_len);

Completed in 90 milliseconds