Searched refs:fsize (Results 26 - 50 of 77) sorted by relevance

1234

/freebsd-13-stable/sys/fs/udf/
H A Dudf_vnops.c189 off_t fsize; local
191 fsize = le64toh(np->fentry->inf_len);
192 vnode_create_vobject(ap->a_vp, fsize, ap->a_td);
454 off_t diff, fsize; local
467 fsize = le32toh(fentry->l_ad);
470 diff = fsize - uio->uio_offset;
479 fsize = le64toh(node->fentry->inf_len);
486 diff = fsize - uio->uio_offset;
494 if (lblktosize(udfmp, rablock) < fsize) {
495 error = cluster_read(vp, fsize, lb
636 udf_opendir(struct udf_node *node, int offset, int fsize, struct udf_mnt *udfmp) argument
1133 int fsize, lkflags, ltype, numdirpasses; local
[all...]
H A Dudf.h70 int fsize; member in struct:udf_dirstream
/freebsd-13-stable/contrib/processor-trace/libipt/src/
H A Dpt_section.c44 uint64_t fsize; local
65 errcode = pt_section_mk_status(&status, &fsize, fname);
70 if (fsize <= offset) {
76 fsize -= offset;
77 if (fsize < size)
78 size = fsize;
/freebsd-13-stable/sys/contrib/openzfs/module/zfs/
H A Dspa_config.c87 uint64_t fsize; local
116 fsize = zfa.zfa_size;
117 buf = kmem_alloc(fsize, KM_SLEEP);
122 if (zfs_file_read(fp, buf, fsize, NULL) < 0)
128 if (nvlist_unpack(buf, fsize, &nvlist, KM_SLEEP) != 0)
153 kmem_free(buf, fsize);
/freebsd-13-stable/sys/dev/mlx5/mlx5_fpga_tools/
H A Dmlx5fpga_tools_char.c112 uint64_t fbase, fsize; local
123 fsize = mlx5_fpga_ddr_size_get(context->tdev->fdev);
126 else if (uio->uio_offset + *len > fbase + fsize)
127 *len = fbase + fsize - uio->uio_offset;
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_copies/
H A Dzfs_copies_002_pos.ksh77 fsize=${FILESIZE%[m|M]}
/freebsd-13-stable/contrib/netbsd-tests/dev/scsipi/libscsitest/
H A Dscsitest.c213 uint64_t fsize; local
216 if (rumpuser_getfileinfo(MYCDISO, &fsize, &ft, &error))
220 mycdsize = fsize / CDBLOCKSIZE;
/freebsd-13-stable/sys/dev/cxgbe/cudbg/
H A Dfastlz_api.c148 unsigned long fsize = pin_buff->size; local
168 buffer[0] = fsize & 255;
169 buffer[1] = (fsize >> 8) & 255;
170 buffer[2] = (fsize >> 16) & 255;
171 buffer[3] = (fsize >> 24) & 255;
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_posix.cpp195 uptr fsize = internal_filesize(fd); local
196 CHECK_NE(fsize, (uptr)-1);
197 CHECK_GT(fsize, 0);
198 *buff_size = RoundUpTo(fsize, GetPageSizeCached());
/freebsd-13-stable/sys/cddl/compat/opensolaris/sys/
H A Delf.h82 #define elf_fsize __elfN(fsize)
/freebsd-13-stable/usr.sbin/makefs/ffs/
H A Dmkfs.c103 static int fsize; /* fragment size */ variable
135 fsize = ffs_opts->fsize;
189 sblock.fs_fsize = fsize;
320 mindensity = minfragsperinode * fsize;
322 density = MAX(2, minfragsperinode) * fsize;
331 density = MIN(density, MAX(2, minfragsperinode) * fsize);
/freebsd-13-stable/usr.bin/mail/
H A Dcollect.c371 if (fsize(fbuf) == 0) {
588 if (fsize(nf) == 0) {
721 if (fsize(fp) == 0)
H A Dedit.c112 mp->m_size = (long)fsize(fp);
H A Dextern.h130 off_t fsize(FILE *);
H A Dlex.c131 mailsize = fsize(ibuf);
179 newsize = fsize(ibuf);
/freebsd-13-stable/contrib/less/
H A Dch.c67 POSITION fsize; member in struct:filestate
76 #define ch_fsize thisfile->fsize
871 thisfile->fsize = NULL_POSITION;
952 printf(" file %d, flags %x, fpos %x, fsize %x, blk/off %x/%x\n",
954 fs->fsize, fs->block, fs->offset);
/freebsd-13-stable/sys/net/
H A Dif_fwsubr.c90 uint16_t psize, fsize, dsize; local
262 fsize = psize - 2*sizeof(uint32_t);
267 if (m->m_pkthdr.len > fsize) {
272 mtail = m_split(m, fsize, M_NOWAIT);
/freebsd-13-stable/sys/mips/include/
H A Dasm.h182 #define NESTED(x, fsize, retpc) \
186 .frame sp, fsize, retpc; \
193 #define NESTED_NOPROFILE(x, fsize, retpc) \
197 .frame sp, fsize, retpc
/freebsd-13-stable/tests/sys/fs/fusefs/
H A Dwrite.cc860 off_t fsize = 10; local
864 FuseTest::expect_lookup(RELPATH, ino, S_IFREG | 0644, fsize, 1);
866 expect_read(ino, 0, fsize, fsize, INITIAL, O_WRONLY);
1053 ssize_t fsize = 2 * m_maxbcachebuf; local
1060 expect_lookup(RELPATH, ino, fsize);
1100 ssize_t fsize = 3 * bs; local
1117 expect_lookup(RELPATH, ino, fsize);
/freebsd-13-stable/contrib/lua/src/
H A Dldo.c454 int fsize = p->maxstacksize; /* frame size */ local
459 checkstackGC(L, fsize);
463 ci->top = func + 1 + fsize; /* top for new function */
514 int fsize = p->maxstacksize; /* frame size */ local
515 checkstackGCp(L, fsize, func);
519 ci->top = func + 1 + fsize;
/freebsd-13-stable/contrib/libarchive/libarchive/test/
H A Dtest_read_format_rar5.c94 la_ssize_t fsize, bytes_read; local
99 fsize = (la_ssize_t) archive_entry_size(ae);
100 buf = malloc(fsize);
104 bytes_read = archive_read_data(a, buf, fsize);
105 if(bytes_read != fsize) {
106 assertEqualInt(bytes_read, fsize);
110 computed_crc = crc32(0, buf, fsize);
H A Dtest_read_format_zip.c35 la_ssize_t fsize, bytes_read; local
40 fsize = (la_ssize_t) archive_entry_size(ae);
41 buf = malloc(fsize);
45 bytes_read = archive_read_data(a, buf, fsize);
46 if(bytes_read != fsize) {
47 assertEqualInt(bytes_read, fsize);
51 computed_crc = crc32(0, buf, fsize);
/freebsd-13-stable/usr.sbin/makefs/
H A Dffs.c162 { 'f', "fsize", &ffs_opts->fsize, OPT_INT32,
190 ffs_opts->fsize= -1;
346 if (ffs_opts->fsize == -1)
347 ffs_opts->fsize = MAX(DFL_FRAGSIZE, fsopts->sectorsize);
349 ffs_opts->bsize = MIN(DFL_BLKSIZE, 8 * ffs_opts->fsize);
470 printf("\tbsize %d, fsize %d, cpg %d, density %d\n",
471 fs->bsize, fs->fsize, fs->cpg, fs->density);
628 fsopts->size += roundup((x), ffs_opts->fsize); \
/freebsd-13-stable/sys/dev/hid/
H A Dhmt.c304 hid_size_t d_len, fsize; local
319 fsize = hid_report_size_max(d_ptr, d_len, hid_feature, NULL);
320 if (fsize != 0)
321 fbuf = malloc(fsize, M_TEMP, M_WAITOK | M_ZERO);
344 bzero(fbuf, fsize);
/freebsd-13-stable/sys/netgraph/
H A Dng_pipe.c469 uint32_t fsize, i; local
488 for (fsize = 0; fsize < MAX_FSIZE + MAX_OHSIZE; fsize++) {
489 hinfo->ber_p[fsize] = p;

Completed in 300 milliseconds

1234