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

  /src/sys/ufs/lfs/
lfs_pages.c 242 off_t startoffset, off_t endoffset, off_t blkeof,
261 soff = startoffset;
427 off_t origoffset, startoffset, endoffset, origendoffset, blkeof; local in function:lfs_putpages
523 startoffset = origoffset & ~(lfs_sb_getbmask(fs));
535 KASSERT(startoffset > 0 || endoffset >= startoffset);
536 if (startoffset == endoffset) {
539 DLOG((DLOG_PAGE, "lfs_putpages: startoffset = endoffset = %"
540 PRId64 "\n", startoffset));
544 ap->a_offlo = startoffset;
    [all...]
lfs_balloc.c 120 lfs_balloc(struct vnode *vp, off_t startoffset, int iosize, kauth_cred_t cred,
141 offset = lfs_blkoff(fs, startoffset);
147 lbn = lfs_lblkno(fs, startoffset);
lfs_rfw.c 784 daddr_t startoffset, offset, nextoffset, endpseg; local in function:lfs_roll_forward
820 endpseg = startoffset = offset = lfs_sb_getoffset(fs);
874 offset = startoffset;
908 offset = startoffset;
935 (intmax_t)(endpseg - startoffset)));
lfs_vfsops.c 2073 off_t eof, offset, startoffset = 0; local in function:lfs_gop_write
2150 startoffset = pg->offset;
2153 if (startoffset >= eof) {
2157 bytes = MIN(npages << PAGE_SHIFT, eof - startoffset);
2182 if (startoffset & lfs_sb_getbmask(fs))
2184 startoffset, lfs_sb_getbmask(fs),
2185 startoffset & lfs_sb_getbmask(fs));
2186 KASSERT((startoffset & lfs_sb_getbmask(fs)) == 0);
2232 for (offset = startoffset;
2276 if (offset == startoffset && iobytes == bytes)
    [all...]
ulfs_vnops.c 786 off_t startoffset, endoffset; local in function:ulfs_readdir
811 startoffset = calleruio->uio_offset;
812 endoffset = startoffset + callerbytes;
820 physstart = startoffset & ~(off_t)(fs->um_dirblksiz - 1);
822 skipstart = startoffset - physstart;
  /src/sys/external/bsd/libfdt/dist/
fdt.c 133 uint32_t fdt_next_tag(const void *fdt, int startoffset, int *nextoffset)
137 int offset = startoffset;
179 if (!fdt_offset_ptr(fdt, startoffset, offset - startoffset))
fdt_ro.c 632 int fdt_node_offset_by_prop_value(const void *fdt, int startoffset,
647 for (offset = fdt_next_node(fdt, startoffset, NULL);
814 int fdt_node_offset_by_compatible(const void *fdt, int startoffset,
826 for (offset = fdt_next_node(fdt, startoffset, NULL);
libfdt.h 943 * @startoffset: only find nodes after this offset
949 * node after startoffset, which has a property named propname whose
951 * startoffset is -1, the very first such node in the tree.
968 * structure block offset of the located node (>= 0, >startoffset),
971 * tree after startoffset
978 int fdt_node_offset_by_prop_value(const void *fdt, int startoffset,
1031 * @startoffset: only find nodes after this offset
1035 * node after startoffset, which has a 'compatible' property which
1036 * lists the given compatible string; or if startoffset is -1, the
1052 * structure block offset of the located node (>= 0, >startoffset),
    [all...]
  /src/sys/miscfs/genfs/
genfs_io.c 302 const off_t startoffset = trunc_blk(origoffset); local in function:genfs_getpages
306 const int ridx = (origoffset - startoffset) >> PAGE_SHIFT;
309 ((endoffset - startoffset) >> PAGE_SHIFT);
325 ridx, npages, startoffset, endoffset);
448 npages = (endoffset - startoffset) >> PAGE_SHIFT;
449 if (startoffset != origoffset || npages != orignmempages) {
462 startoffset, endoffset, 0,0);
464 if (uvn_findpages(uobj, startoffset, &npgs, pgs, NULL,
478 error = genfs_getpages_read(vp, pgs, npages, startoffset, diskeof,
577 off_t startoffset, off_t diskeof
1440 off_t eof, offset, startoffset; local in function:genfs_do_io
    [all...]
  /src/sbin/fsck_lfs/
lfs.c 1030 lfs_balloc(struct uvnode *vp, off_t startoffset, int iosize, struct ubuf **bpp)
1044 offset = lfs_blkoff(fs, startoffset);
1045 lbn = lfs_lblkno(fs, startoffset);
  /src/sys/ufs/ufs/
ufs_vnops.c 1579 off_t startoffset, endoffset; local in function:ufs_readdir
1609 startoffset = calleruio->uio_offset;
1610 endoffset = startoffset + callerbytes;
1650 physstart = rounddown2(startoffset, ump->um_dirblksiz);
1666 skipstart = startoffset - physstart;
1675 * = physend - physstart + startoffset - startoffset
1676 * = physend + (startoffset - physstart) - startoffset
1677 * = physend + skipstart - startoffset
    [all...]
  /src/usr.sbin/makefs/
cd9660.c 491 int64_t startoffset; local in function:cd9660_makefs
604 startoffset = diskStructure->sectorSize*diskStructure->dataFirstSector;
606 totalSpace = cd9660_compute_offsets(diskStructure, real_root, startoffset);
1829 int64_t startOffset)
1857 CD9660_BLOCKS(diskStructure->sectorSize,startOffset);
1895 used_bytes + startOffset);
1925 used_bytes + startOffset);

Completed in 24 milliseconds