Searched refs:fsize (Results 51 - 75 of 77) sorted by relevance

1234

/freebsd-13-stable/tests/sys/fs/fusefs/
H A Dcopy_file_range.cc326 off_t fsize = 1 << 20; /* 1 MiB */ local
332 expect_lookup(RELPATH, ino, S_IFREG | 0644, fsize, 1);
H A Ddefault_permissions.cc512 off_t fsize = 16; local
519 FuseTest::expect_lookup(RELPATH_IN, ino_in, S_IFREG | oldmode, fsize, 1,
522 FuseTest::expect_lookup(RELPATH_OUT, ino_out, S_IFREG | oldmode, fsize,
526 expect_chmod(ino_out, newmode, fsize);
556 off_t fsize = 16; local
563 FuseTest::expect_lookup(RELPATH_IN, ino_in, S_IFREG | oldmode, fsize, 1,
566 FuseTest::expect_lookup(RELPATH_OUT, ino_out, S_IFREG | oldmode, fsize,
570 expect_chmod(ino_out, newmode, fsize);
H A Dread.cc232 off_t fsize = 2 * m_maxbcachebuf; local
238 expect_lookup(RELPATH, ino, fsize);
/freebsd-13-stable/sys/dev/hid/
H A Dhidbus.c107 hri->fsize = len == 0 ? HID_RSIZE_MAX :
122 if (hri->fsize > HID_RSIZE_MAX) {
124 hri->fsize);
125 hri->fsize = HID_RSIZE_MAX;
H A Dhid.h294 hid_size_t fsize; member in struct:hid_rdesc_info
H A Dhidraw.c654 size = sc->sc_rdesc->fsize;
685 size = sc->sc_rdesc->fsize;
/freebsd-13-stable/stand/libsa/
H A Ddosfs.c141 static off_t fsize(DOS_FS *, DOS_DE *);
296 if ((size = fsize(f->fs, &f->de)) == -1)
400 if ((sb->st_size = fsize(f->fs, &f->de)) == -1)
718 fsize(DOS_FS *fs, DOS_DE *de) function
/freebsd-13-stable/sbin/newfs/
H A Dmkfs.c181 sblock.fs_fsize = fsize;
338 density = MAX(NFPI, minfragsperinode) * fsize;
339 } else if (density < minfragsperinode * fsize) {
341 density = minfragsperinode * fsize;
350 fsize <<= 1;
/freebsd-13-stable/usr.sbin/newsyslog/
H A Dnewsyslog.c159 int fsize; /* size found for the log file */ member in struct:conf_entry
407 tempwork->fsize = -1;
427 tempwork->fsize = -1;
505 ent->fsize = sizefile(ent->log);
506 oversized = ((ent->trsize > 0) && (ent->fsize >= ent->trsize));
510 if (ent->fsize < 0) {
535 if (ent->flags & CE_NOEMPTY && ent->fsize == 0) {
582 printf("size (Kb): %d [%d] ", ent->fsize, ent->trsize);
1922 save_zipwork(ent, swork, ent->fsize, file1);
/freebsd-13-stable/sys/kern/
H A Dvfs_default.c949 off_t fsize, len, cur, offset; local
967 fsize = vap->va_size;
1005 vap->va_size = fsize;
1022 if (offset < fsize) {
/freebsd-13-stable/usr.bin/mail/
H A Dfio.c308 fsize(FILE *iob) function
H A Dsend.c317 if (fsize(mtf) == 0) {
/freebsd-13-stable/sys/fs/udf/
H A Dudf_vfsops.c738 off_t fsize; local
749 fsize = le64toh(np->fentry->inf_len);
752 vnode_create_vobject(*vpp, fsize, curthread);
/freebsd-13-stable/usr.sbin/vidcontrol/
H A Dvidcontrol.c367 fsize(FILE *file) function
542 dsize[1] = fsize(fd);
571 if (fsize(fd) != size ||
/freebsd-13-stable/contrib/sendmail/src/
H A Dqueue.c5812 ** fsize -- file size in bytes
5817 ** hold a file of size 'fsize', otherwise the index of
5829 pickqdir(qg, fsize, e)
5831 long fsize;
5848 if (MinBlocksFree <= 0 && fsize <= 0)
5863 if (fsize > 0)
5864 needed += fsize / FILE_SYS_BLKSIZE(qp->qp_fsysidx)
5865 + ((fsize % FILE_SYS_BLKSIZE(qp->qp_fsysidx)
5899 fsize, MinBlocksFree,
6604 ** fsize
[all...]
/freebsd-13-stable/sys/dev/iwi/
H A Dif_iwireg.h167 uint32_t fsize; /* size of firmware image */ member in struct:iwi_firmware_hdr
H A Dif_iwi.c2290 + le32toh(hdr->fsize)) {
2302 sc->fw_fw.size = le32toh(hdr->fsize);
/freebsd-13-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_iso9660.c1760 uint64_t fsize, offset; local
1779 fsize = toi(isodirrec + DR_size_offset, DR_size_size);
1793 (location + ((fsize + iso9660->logical_block_size -1)
1802 if (fsize != 0 && location < 0) {
1827 file->size = fsize;
/freebsd-13-stable/sys/dev/mlx5/mlx5_ib/
H A Dmlx5_ib.h582 struct dentry *fsize; member in struct:mlx5_cache_ent
/freebsd-13-stable/sys/dev/age/
H A Dif_age.c2572 uint32_t reg, fsize; local
2691 fsize = roundup(sc->age_max_frame_size, sizeof(uint64_t));
2693 (((fsize / sizeof(uint64_t)) <<
2779 (((fsize / sizeof(uint64_t) << TX_JUMBO_TPD_TH_SHIFT)) &
/freebsd-13-stable/sys/dev/usb/controller/
H A Dmusb_otg.c3053 uint8_t fsize; local
3181 fsize = MUSB2_READ_1(sc, MUSB2_REG_FSIZE);
3182 frx = (fsize & MUSB2_MASK_RX_FSIZE) / 16;
3183 ftx = (fsize & MUSB2_MASK_TX_FSIZE);
/freebsd-13-stable/sys/dev/usb/input/
H A Dusbhid.c384 MAX(rdesc->isize, MAX(rdesc->osize, rdesc->fsize));
/freebsd-13-stable/sys/contrib/openzfs/cmd/ztest/
H A Dztest.c3898 size_t fsize; local
3907 fsize = lseek(fd, 0, SEEK_END);
3912 vd->vdev_path, (ulong_t)fsize, (ulong_t)*newsize);
6009 size_t fsize; local
6199 fsize = lseek(fd, 0, SEEK_END);
6229 offset = ztest_random(fsize / (leaves << bshift)) *
6253 uint64_t psize = P2ALIGN(fsize, sizeof (vdev_label_t));
/freebsd-13-stable/contrib/elftoolchain/readelf/
H A Dreadelf.c4802 Dwarf_Unsigned offset, endoff, length, hdrlen, dirndx, mtime, fsize; local
4914 fsize = _decode_uleb128(&p, pe);
4917 (uintmax_t) fsize, pn);
4966 fsize = _decode_uleb128(&p, pe);
/freebsd-13-stable/sys/contrib/openzfs/cmd/zdb/
H A Dzdb.c3144 uint64_t uid, gid, mode, fsize, parent, links; local
3168 &fsize, 8);
3211 (void) printf("\tsize %llu\n", (u_longlong_t)fsize);

Completed in 505 milliseconds

1234