HomeSort by: relevance | last modified time | path
    Searched refs:superblock (Results 1 - 25 of 83) sorted by relevancy

1 2 3 4

  /src/usr.sbin/fstyp/
ufs.c 56 int sb, superblock; local
62 * superblock corresponds to the size of the underlying provider.
66 for (sb = 0; (superblock = superblocks[sb]) != -1; sb++) {
67 fs = (struct fs *)read_buf(fp, superblock, SBLOCKSIZE);
107 if (fs->fs_sblockloc != superblock || fs->fs_ncg < 1 ||
  /src/external/gpl3/gdb.old/dist/gdb/
block.c 80 a = a->superblock ();
95 && bl->superblock () != NULL)
96 bl = bl->superblock ();
108 while (bl->function () == NULL && bl->superblock () != NULL)
109 bl = bl->superblock ();
290 block = block->superblock ())
355 if (superblock () == nullptr)
359 while (block->superblock ()->superblock () != NULL)
360 block = block->superblock ();
    [all...]
block.h 134 /* Return this block's superblock. */
135 const block *superblock () const function in struct:block
138 /* Set this block's superblock. */
139 void set_superblock (const block *superblock)
140 { m_superblock = superblock; }
261 const block *sup = superblock ();
274 { return superblock () == nullptr; }
326 The superblock of a top-level local block (i.e. a function in the
327 case of C) is the STATIC_BLOCK. The superblock of the
inline-frame.c 228 while (cur_block->superblock ())
235 cur_block = cur_block->superblock ();
357 while (cur_block->superblock ())
381 cur_block = cur_block->superblock ();
blockframe.c 77 bl = bl->superblock ();
124 while (bl->function () == NULL && bl->superblock () != NULL)
125 bl = bl->superblock ();
  /src/sys/fs/v7fs/
v7fs_superblock_util.c 66 struct v7fs_superblock *sb = &fs->superblock;
82 const struct v7fs_superblock *sb = &fs->superblock;
v7fs_dirent.c 65 struct v7fs_superblock *sb = &fs->superblock;
v7fs_superblock.c 70 /* Load superblock from disk. */
81 v7fs_superblock_endian_convert(fs, &fs->superblock, disksb);
90 /* Writeback superblock to disk. */
94 struct v7fs_superblock *memsb = &fs->superblock;
120 const struct v7fs_superblock *sb = &fs->superblock;
141 /* Fill free block to superblock cache. */
145 /* Assume superblock is locked by caller. */
146 struct v7fs_superblock *sb = &fs->superblock;
155 /* Update in-core superblock freelist. */
195 /* Fill free inode to superblock cache. *
    [all...]
v7fs_inode.c 102 struct v7fs_superblock *sb = &fs->superblock;
118 /* Get inode from superblock cache. */
141 struct v7fs_superblock *sb = &fs->superblock;
153 /* If superblock inode cache is full, this inode charged by
286 v7fs_inode_number_sanity(&fs->superblock, n);
296 return v7fs_inode_block_sanity(&fs->superblock, *block);
  /src/external/gpl3/gdb/dist/gdb/
block.c 79 a = a->superblock ();
94 && bl->superblock () != NULL)
95 bl = bl->superblock ();
107 while (bl->function () == NULL && bl->superblock () != NULL)
108 bl = bl->superblock ();
289 block = block->superblock ())
354 if (superblock () == nullptr)
358 while (block->superblock ()->superblock () != NULL)
359 block = block->superblock ();
    [all...]
block.h 135 /* Return this block's superblock. */
136 const block *superblock () const function in struct:block
139 /* Set this block's superblock. */
140 void set_superblock (const block *superblock)
141 { m_superblock = superblock; }
266 const block *sup = superblock ();
279 { return superblock () == nullptr; }
352 The superblock of a top-level local block (i.e. a function in the
353 case of C) is the STATIC_BLOCK. The superblock of the
blockframe.c 77 bl = bl->superblock ();
123 while (bl->function () == NULL && bl->superblock () != NULL)
124 bl = bl->superblock ();
inline-frame.c 234 while (cur_block->superblock ())
241 cur_block = cur_block->superblock ();
385 cur_block = cur_block->superblock ();
  /src/external/gpl3/gdb/dist/gdb/guile/
scm-block.c 182 if (b->superblock () == NULL)
184 else if (b->superblock ()->superblock () == NULL)
414 /* (block-superblock <gdb:block>) -> <gdb:block> */
424 super_block = block->superblock ();
459 if (block->superblock () == NULL)
477 return scm_from_bool (block->superblock () == NULL);
490 if (block->superblock () != NULL
491 && block->superblock ()->superblock () == NULL
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/guile/
scm-block.c 182 if (b->superblock () == NULL)
184 else if (b->superblock ()->superblock () == NULL)
414 /* (block-superblock <gdb:block>) -> <gdb:block> */
424 super_block = block->superblock ();
459 if (block->superblock () == NULL)
477 return scm_from_bool (block->superblock () == NULL);
490 if (block->superblock () != NULL
491 && block->superblock ()->superblock () == NULL
    [all...]
  /src/sbin/fsck_v7fs/
inode.c 55 struct v7fs_superblock *sb = &fs->superblock;
137 struct v7fs_superblock *sb = &fs->superblock;
freeblock.c 119 struct v7fs_superblock *sb = &fs->superblock;
135 struct v7fs_superblock *sb = &fs->superblock;
143 /* Superblock cache. */
153 "from superblock", dupblk);
190 /* Writeback superblock. */
210 struct v7fs_superblock *sb = &fs->superblock;
219 /* Superblock cache. */
264 struct v7fs_superblock *sb = &fs->superblock;
  /src/sys/arch/sun68k/stand/
README 4 gets written right after the superblock in a partition (and is hence limited
  /src/dist/pf/sbin/pfctl/
pfctl_optimize.c 56 * A container that lets us sort a superblock to optimize the skip step jumps
66 * A superblock is a block of adjacent rules of similar action. If there
67 * are five PASS rules in a row, they all become members of a superblock.
68 * Once we have a superblock, we are free to re-order any rules within it
72 struct superblock { struct
74 TAILQ_ENTRY(superblock) sb_entry;
75 struct superblock *sb_profiled_block;
78 TAILQ_HEAD(superblocks, superblock);
86 BREAK, /* the field may not differ between rules in a superblock */
106 * superblock. Thus it will not be optimized. It also prevents th
    [all...]
  /src/usr.sbin/makefs/
ffs.c 264 struct fs *superblock; local
306 /* update various superblock parameters */
307 superblock = fsopts->superblock;
308 superblock->fs_fmod = 0;
309 superblock->fs_old_cstotal.cs_ndir = superblock->fs_cstotal.cs_ndir;
310 superblock->fs_old_cstotal.cs_nbfree = superblock->fs_cstotal.cs_nbfree;
311 superblock->fs_old_cstotal.cs_nifree = superblock->fs_cstotal.cs_nifree
    [all...]
  /src/external/gpl3/gdb/dist/gdb/python/
py-block.c 145 super_block = block->superblock ();
182 if (block->superblock () == NULL)
200 if (block->superblock ())
216 if (block->superblock () != NULL
217 && block->superblock ()->superblock () == NULL)
523 { "superblock", blpy_get_superblock, NULL,
  /src/external/gpl3/gdb.old/dist/gdb/python/
py-block.c 172 super_block = block->superblock ();
209 if (block->superblock () == NULL)
227 if (block->superblock ())
243 if (block->superblock () != NULL
244 && block->superblock ()->superblock () == NULL)
513 { "superblock", blpy_get_superblock, NULL,
  /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/dap/
globalvars.py 90 block_iter = block_iter.superblock
  /src/sbin/dump/
ffs_inode.c 70 * Read the superblock from disk, and check its magic number.
74 fs_read_sblock(char *superblock)
79 sblock = (struct fs *)superblock;
82 quit("can't find superblock");
83 rawread(sblock_try[i], (char *)superblock, MAXBSIZE);
  /src/sbin/newfs_v7fs/
main.c 78 struct v7fs_superblock *sb = &fs->superblock;
83 /* Invalid superblock information is OK. */
84 warnx("Can't read superblock sector.");
92 warnx("Can't write superblock sector.");
153 warnx("Can't write superblock.");
172 if (j == (int32_t)fs->superblock.volume_size)
224 /* Construct superblock */
225 sb = &fs->superblock;
246 /* Write superblock. */
250 warn("Can't write back superblock.")
    [all...]

Completed in 58 milliseconds

1 2 3 4