Searched refs:inum (Results 1 - 25 of 41) sorted by relevance

12

/netbsd-6-1-5-RELEASE/sys/ufs/chfs/
H A Dchfs_ihash.c39 #define INOHASH(device, inum) (((device) + (inum)) & chfs_ihash)
103 * Use the device/inum pair to find the incore inode, and return a pointer
107 chfs_ihashlookup(dev_t dev, ino_t inum) argument
112 dbg("dev: %ju, inum: %ju\n", (uintmax_t )dev, (uintmax_t )inum);
116 ipp = &chfs_ihashtbl[INOHASH(dev, inum)];
118 if (inum == ip->ino && dev == ip->dev) {
131 * Use the device/inum pair to find the incore inode, and return a pointer
135 chfs_ihashget(dev_t dev, ino_t inum, in argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/22_locale/num_put/put/char/
H A D8.cc50 long inum = 123; local
53 np.put(oss.rdbuf(), oss, '+', inum);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/22_locale/num_put/put/wchar_t/
H A D8.cc50 long inum = 123; local
53 np.put(oss.rdbuf(), oss, L'+', inum);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/22_locale/num_put/put/char/
H A D8.cc51 long inum = 123; local
54 np.put(oss.rdbuf(), oss, '+', inum);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/22_locale/num_put/put/wchar_t/
H A D8.cc51 long inum = 123; local
54 np.put(oss.rdbuf(), oss, L'+', inum);
/netbsd-6-1-5-RELEASE/sys/ufs/ufs/
H A Dufs_ihash.c51 #define INOHASH(device, inum) (((device) + (inum)) & ihash)
110 * Use the device/inum pair to find the incore inode, and return a pointer
114 ufs_ihashlookup(dev_t dev, ino_t inum) argument
121 ipp = &ihashtbl[INOHASH(dev, inum)];
123 if (inum == ip->i_number && dev == ip->i_dev)
132 * Use the device/inum pair to find the incore inode, and return a pointer
136 ufs_ihashget(dev_t dev, ino_t inum, int flags) argument
144 ipp = &ihashtbl[INOHASH(dev, inum)];
146 if (inum
[all...]
/netbsd-6-1-5-RELEASE/sbin/restore/
H A Dsymtab.c84 lookupino(ino_t inum) argument
88 if (inum < WINO || inum >= maxino)
90 for (ep = entry[inum % entrytblsize]; ep != NULL; ep = ep->e_next)
91 if (ep->e_ino == inum)
100 addino(ino_t inum, struct entry *np) argument
104 if (inum < WINO || inum >= maxino)
105 panic("addino: out of range %llu\n", (unsigned long long)inum);
106 epp = &entry[inum
120 deleteino(ino_t inum) argument
220 addentry(const char *name, ino_t inum, int type) argument
276 ino_t inum; local
[all...]
/netbsd-6-1-5-RELEASE/sys/fs/ntfs/
H A Dntfs_ihash.c56 #define NTNOHASH(device, inum) ((minor(device) + (inum)) & ntfs_nthash)
114 * Use the device/inum pair to find the incore inode, and return a pointer
118 ntfs_nthashlookup(dev_t dev, ino_t inum) argument
124 ipp = &ntfs_nthashtbl[NTNOHASH(dev, inum)];
126 if (inum == ip->i_number && dev == ip->i_dev)
/netbsd-6-1-5-RELEASE/sbin/dump/
H A Dffs_inode.c220 getino(ino_t inum) argument
230 curino = inum;
231 if (inum >= minino && inum < maxino)
233 bread(fsatoda(ufsib, ino_to_fsba(sblock, inum)), (char *)inoblock,
235 minino = inum - (inum % INOPB(sblock));
252 dp2 = &((struct ufs2_dinode *)inoblock)[inum - minino];
255 dp1 = &((struct ufs1_dinode *)inoblock)[inum - minino];
/netbsd-6-1-5-RELEASE/sys/dev/acpi/
H A Dtpm_acpi.c123 int rv, inum; local
184 inum = -1;
186 inum = irq->ar_irq;
188 if ((rv = (*sc->sc_init)(sc, inum, device_xname(sc->sc_dev))) != 0)
192 if (inum != -1 &&
/netbsd-6-1-5-RELEASE/sys/fs/efs/
H A Defs_ihash.c68 #define INOHASH(device, inum) (((device) + (inum)) & ihash)
129 * Use the device/inum pair to find the incore inode, and return a pointer
133 efs_ihashget(dev_t dev, ino_t inum, int flags) argument
141 ipp = &ihashtbl[INOHASH(dev, inum)];
143 if (inum == eip->ei_number && dev == eip->ei_dev) {
/netbsd-6-1-5-RELEASE/sys/fs/filecorefs/
H A Dfilecore_node.c96 #define INOHASH(device, inum) (((device) + ((inum)>>12)) & filecorehash)
159 * Use the device/inum pair to find the incore inode, and return a pointer
163 filecore_ihashget(dev_t dev, ino_t inum) argument
170 LIST_FOREACH(ip, &filecorehashtbl[INOHASH(dev, inum)], i_hash) {
171 if (inum == ip->i_number && dev == ip->i_dev) {
/netbsd-6-1-5-RELEASE/sbin/fsdb/
H A Dfsdb.c238 snprintf(pstring, sizeof(pstring), "fsdb (inum: %llu)> ",
318 #define GETINUM(ac,inum) inum = strtoull(argv[ac], &cp, 0); \
319 if (inum < ROOTINO || inum >= maxino || cp == argv[ac] || *cp != '\0' ) { \
321 (unsigned long long)inum, (unsigned long long)ROOTINO, \
331 ino_t inum; local
334 GETINUM(1, inum);
335 curinode = ginode(inum);
337 curinum = inum;
352 ino_t inum; local
497 ino_t inum, inosused; local
909 ino_t inum; local
960 ino_t inum; local
[all...]
H A Dfsdbutil.c91 printstat(const char *cp, ino_t inum, union dinode *dp) argument
142 printf("I=%llu MODE=%o SIZE=%llu", (unsigned long long)inum, mode,
/netbsd-6-1-5-RELEASE/usr.sbin/dumplfs/
H A Ddumplfs.c115 (void)printf("inum\tstatus\tversion\tdaddr\t\tfreeptr\n")
272 int block_limit, i, inum, j, nblocks, psize; local
302 for (inum = 0, addrp = dip->di_db, i = 0; i < block_limit;
314 inum = dump_ipage_segusage(lfsp, inum, ipage,
317 inum = (i < lfsp->lfs_segtabsz + lfsp->lfs_cleansz - 1);
318 if (!inum) {
325 inum = dump_ipage_ifile(lfsp, inum, ipage, lfsp->lfs_ifpb);
347 inum
[all...]
/netbsd-6-1-5-RELEASE/sbin/dump_lfs/
H A Dlfs_inode.c316 getino(ino_t inum) argument
325 if(inum == sblock->lfs_ifile) {
331 dp = lfs_ifind(sblock, inum, inoblock);
337 curino = inum;
338 blkno = lfs_ientry(inum)->if_daddr;
351 return (union dinode *)lfs_ifind(sblock, inum, inoblock);
/netbsd-6-1-5-RELEASE/sbin/fsck_ffs/
H A Dutilities.c577 inoinfo(ino_t inum) argument
583 if (inum > maxino)
585 (unsigned long long)inum);
586 ilp = &inostathead[inum / sblock->fs_ipg];
587 iloff = inum % sblock->fs_ipg;
730 update_uquot(ino_t inum, uid_t uid, gid_t gid, int64_t bchange, int64_t ichange) argument
736 if (inum < ROOTINO)
738 if (is_journal_inode(inum))
740 if (is_quota_inode(inum))
757 is_quota_inode(ino_t inum) argument
[all...]
H A Dinode.c430 setinodebuf(ino_t inum) argument
433 if (inum % sblock->fs_ipg != 0)
435 (unsigned long long)inum);
437 lastvalidinum = inum + sblock->fs_ipg - 1;
439 nextino = inum;
440 lastinum = inum;
/netbsd-6-1-5-RELEASE/usr.sbin/dumpfs/
H A Ddumpfs.c559 int i, inum; local
566 for (inum = c * afs.fs_ipg ; inum < (c+n) * afs.fs_ipg; inum += afs.fs_inopb) {
568 ino_to_fsba(&afs, inum) * afs.fs_fsize) != afs.fs_bsize) {
573 print_inode(inum + i, i, ino_buf);
660 print_ufs1_inode(int inum, int i_off, void *ibuf) argument
674 if (inum % afs.fs_ipg == 0)
681 inum, i->di_mode, i->di_nlink, i->di_size,
687 print_ufs2_inode(int inum, in argument
[all...]
/netbsd-6-1-5-RELEASE/sys/fs/cd9660/
H A Dcd9660_node.c66 #define INOHASH(device, inum) (((device) + ((inum)>>12)) & isohash)
135 * Use the device/inum pair to find the incore inode, and return a pointer
139 cd9660_ihashget(dev_t dev, ino_t inum, int flags) argument
146 LIST_FOREACH(ip, &isohashtbl[INOHASH(dev, inum)], i_hash) {
147 if (inum == ip->i_number && dev == ip->i_dev) {
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/postsuper/
H A Dpostsuper.c634 const char *actual_id, ino_t inum)
648 vstring_sprintf(new_id, "%.5s%lX", actual_id, (unsigned long) inum);
694 unsigned long inum; local
832 if (sscanf(path + 5, "%lx", &inum) != 1) {
836 if (inum != (unsigned long) st.st_ino) {
876 if (sscanf(path + 5, "%lx", &inum) != 1) {
880 if (inum != (unsigned long) st.st_ino) {
633 fix_queue_id(const char *actual_path, const char *actual_queue, const char *actual_id, ino_t inum) argument
/netbsd-6-1-5-RELEASE/usr.bin/rdist/
H A Ddefs.h126 ino_t inum; member in struct:linkbuf
/netbsd-6-1-5-RELEASE/sbin/resize_ffs/
H A Dresize_ffs.c1148 dblk_callback(union dinode * di, unsigned int inum, void *arg) argument
1428 moveblocks_callback(union dinode * di, unsigned int inum, void *arg) argument
1453 iflags[inum] |= IF_DIRTY;
1456 iflags[inum] |= IF_DIRTY;
1575 int inum; local
1579 inum = newsb->fs_ipg * cg->cg_cgx;
1580 for (i = 0; i < newsb->fs_ipg; i++, inum++) {
1581 if (DIP(inodes + inum,di_mode) != 0) {
1586 inomove[inum] = fi;
1664 dirmove_callback(union dinode * di, unsigned int inum, voi argument
1927 int inum; local
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/quotacheck/
H A Dquotacheck.c761 setinodebuf(ino_t inum) argument
764 if (inum % sblock.fs_ipg != 0)
766 (unsigned long long)inum);
768 lastvalidinum = inum + sblock.fs_ipg - 1;
769 nextino = inum;
770 lastinum = inum;
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Dmoxie-tdep.c827 int inum = moxie_process_readu (addr+2, (char *) buf, local
830 switch (inum)

Completed in 425 milliseconds

12