Searched refs:isize (Results 1 - 25 of 37) sorted by relevance

12

/freebsd-9.3-release/usr.bin/hexdump/
H A Dodsyntax.c312 size_t isize; local
316 isize = sizeof(double);
319 isize = sizeof(float);
323 isize = sizeof(double);
327 isize = sizeof(long double);
333 isize = (size_t)strtoul(fmt, &end, 10);
334 if (errno != 0 || isize == 0)
339 switch (isize) {
347 if (isize == sizeof(long double))
351 (u_long)isize);
368 size_t isize; local
[all...]
/freebsd-9.3-release/usr.sbin/kgzip/
H A Dkgz.h49 uint32_t isize; /* image size in memory */ member in struct:kgz_hdr
H A Dkgzcmp.c102 khle.isize = htole32(khle.isize);
211 kh->isize = kh->dsize + n;
234 kh->isize = kh->dsize + le32toh(a->a_bss);
H A Dkgzip.c118 printf("dload=%#x dsize=%#x isize=%#x entry=%#x nsize=%#x\n",
119 kh.dload, kh.dsize, kh.isize, kh.entry, kh.nsize);
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dlz4.c37 static int real_LZ4_compress(const char *source, char *dest, int isize,
39 static int LZ4_compressBound(int isize);
41 int isize, int maxOutputSize);
43 int isize, int osize);
45 int isize, int osize);
100 * isize : is the input size. Max supported value is ~1.9GB
115 * isize : is the input size. Max supported value is ~1.9GB
120 * isize : is the input size, therefore the compressed size
141 * isize *Must* be <64KB, otherwise the output will be corrupted.
457 LZ4_compressBound(int isize) argument
466 LZ4_compressCtx(void *ctx, const char *source, char *dest, int isize, int osize) argument
661 LZ4_compress64kCtx(void *ctx, const char *source, char *dest, int isize, int osize) argument
842 real_LZ4_compress(const char *source, char *dest, int isize, int osize) argument
883 LZ4_uncompress_unknownOutputSize(const char *source, char *dest, int isize, int maxOutputSize) argument
[all...]
/freebsd-9.3-release/sys/gnu/fs/xfs/FreeBSD/
H A Dxfs_frw.c271 xfs_fsize_t isize,
287 zero_offset = XFS_B_FSB_OFFSET(mp, isize);
296 last_fsb = XFS_B_TO_FSBT(mp, isize);
305 * If the block underlying isize is just a hole, then there
344 xfs_fsize_t isize, /* current inode size */
359 ASSERT(offset > isize);
364 * First handle zeroing the block on which isize resides.
367 error = xfs_zero_last_block(vp, io, isize, end_size);
382 last_fsb = isize ? XFS_B_TO_FSBT(mp, isize
268 xfs_zero_last_block( xfs_vnode_t *vp, xfs_iocore_t *io, xfs_fsize_t isize, xfs_fsize_t end_size) argument
340 xfs_zero_eof( xfs_vnode_t *vp, xfs_iocore_t *io, xfs_off_t offset, xfs_fsize_t isize, xfs_fsize_t end_size) argument
472 xfs_fsize_t isize, new_size; local
[all...]
H A Dxfs_buf.c130 size_t isize,
137 rabsize = BBTOB(isize);
127 xfs_buf_readahead( xfs_buftarg_t *target, xfs_daddr_t ioff, size_t isize, xfs_buf_flags_t flags) argument
/freebsd-9.3-release/sys/ufs/ufs/
H A Dufs_inode.c79 off_t isize; local
128 isize = ip->i_size;
130 isize += ip->i_din2->di_extsize;
131 if (ip->i_effnlink <= 0 && isize && !UFS_RDONLY(ip))
H A Dufs_vnops.c2304 doff_t isize; local
2306 isize = ip->i_size;
2307 if ((isize < vp->v_mount->mnt_maxsymlinklen) ||
2309 return (uiomove(SHORTLINK(ip), isize, ap->a_uio));
/freebsd-9.3-release/sys/arm/arm/
H A Delf_trampoline.c233 u_int ctype, isize, dsize; local
258 isize = CPU_CT_ISIZE(ctype);
259 multiplier = (isize & CPU_CT_xSIZE_M) ? 3 : 2;
260 arm_picache_line_size = 1U << (CPU_CT_xSIZE_LEN(isize) + 3);
261 if (CPU_CT_xSIZE_ASSOC(isize) == 0) {
262 if (isize & CPU_CT_xSIZE_M)
268 (CPU_CT_xSIZE_ASSOC(isize) - 1);
270 arm_picache_size = multiplier << (CPU_CT_xSIZE_SIZE(isize) + 8);
H A Dcpufunc.c874 u_int ctype, isize, dsize; local
900 isize = CPU_CT_ISIZE(ctype);
901 multiplier = (isize & CPU_CT_xSIZE_M) ? 3 : 2;
902 arm_picache_line_size = 1U << (CPU_CT_xSIZE_LEN(isize) + 3);
903 if (CPU_CT_xSIZE_ASSOC(isize) == 0) {
904 if (isize & CPU_CT_xSIZE_M)
910 (CPU_CT_xSIZE_ASSOC(isize) - 1);
912 arm_picache_size = multiplier << (CPU_CT_xSIZE_SIZE(isize) + 8);
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_iomap.c323 xfs_fsize_t isize,
339 (isize >= XFS_FSB_TO_B(mp, mp->m_swidth)))
346 else if (mp->m_dalign && (isize >= XFS_FSB_TO_B(mp, mp->m_dalign)))
420 xfs_fsize_t isize; local
448 isize = ip->i_d.di_size;
449 if (io->io_new_size > isize)
450 isize = io->io_new_size;
454 if ((offset + count) > isize) {
455 error = xfs_iomap_eof_align_last_fsb(mp, io, isize, extsz,
587 xfs_fsize_t isize,
320 xfs_iomap_eof_align_last_fsb( xfs_mount_t *mp, xfs_iocore_t *io, xfs_fsize_t isize, xfs_extlen_t extsize, xfs_fileoff_t *last_fsb) argument
584 xfs_iomap_eof_want_preallocate( xfs_mount_t *mp, xfs_iocore_t *io, xfs_fsize_t isize, xfs_off_t offset, size_t count, int ioflag, xfs_bmbt_irec_t *imap, int nimaps, int *prealloc) argument
646 xfs_fsize_t isize; local
[all...]
H A Dxfs_inode.h499 #define xfs_isize_check(mp, ip, isize)
/freebsd-9.3-release/sys/boot/i386/kgzldr/
H A Dboot.c46 uint32_t isize; /* image size in memory */ member in struct:kgz_hdr
/freebsd-9.3-release/sys/dev/dcons/
H A Ddcons.h54 V u_int32_t isize[DCONS_NPORT]; member in struct:dcons_buf
H A Ddcons.c150 buf->isize[port] = htonl(size - osize);
172 dc->i.size = ntohl(buf->isize[port]);
/freebsd-9.3-release/sys/cddl/boot/zfs/
H A Dlz4.c38 int isize, int maxOutputSize);
183 char *dest, int isize, int maxOutputSize)
187 const BYTE *const iend = ip + isize;
182 LZ4_uncompress_unknownOutputSize(const char *source, char *dest, int isize, int maxOutputSize) argument
/freebsd-9.3-release/sbin/fsck_ffs/
H A Dinode.c55 static int iblock(struct inodesc *, long ilevel, off_t isize, int type);
154 iblock(struct inodesc *idesc, long ilevel, off_t isize, int type) argument
175 if (howmany(isize, sizepb) > NINDIR(&sblock))
178 nif = howmany(isize, sizepb);
202 n = iblock(idesc, ilevel, isize, type);
208 if (idesc->id_type == DATA && isize > 0) {
217 DIP(dp, di_size) - isize);
218 isize = 0;
228 isize -= sizepb;
H A Dsuj.c1098 off_t isize; local
1123 isize = DIP(ip, di_size);
1125 if (isize > size)
1126 isize = size;
1128 ino_trunc(sino->si_ino, isize);
/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-mixx-defs.h749 uint64_t isize : 20; /**< Represents the Inbound Ring Buffer's Size(in 8B member in struct:cvmx_mixx_iring1::cvmx_mixx_iring1_s
761 uint64_t isize : 20;
769 uint64_t isize : 20; /**< Represents the Inbound Ring Buffer's Size(in 8B member in struct:cvmx_mixx_iring1::cvmx_mixx_iring1_cn52xx
783 uint64_t isize : 20;
/freebsd-9.3-release/sys/dev/usb/input/
H A Dums.c526 int isize; local
569 isize = hid_report_size(d_ptr, d_len, hid_input, &sc->sc_iid);
587 isize = 5;
618 if (isize > (int)usbd_xfer_max_framelen(sc->sc_xfer[UMS_INTR_DT])) {
620 "than interrupt size, %d bytes!\n", isize,
648 DPRINTF("size=%d, id=%d\n", isize, sc->sc_iid);
/freebsd-9.3-release/contrib/gcc/
H A Dcfgexpand.c446 HOST_WIDE_INT isize = stack_vars[i].size; local
460 if (isize < jsize)
473 if (isize - (toff - offset) < jsize)
476 isize -= toff - offset;
483 isize -= jsize;
484 if (isize == 0)
H A Ddf-scan.c1170 unsigned int isize, osize;
1173 isize = GET_MODE_SIZE (GET_MODE (SUBREG_REG (x)));
1175 return (isize > osize && isize > UNITS_PER_WORD);
1166 unsigned int isize, osize; local
/freebsd-9.3-release/sys/fs/ext2fs/
H A Dext2_vnops.c1314 int isize; local
1316 isize = ip->i_size;
1317 if (isize < vp->v_mount->mnt_maxsymlinklen) {
1318 uiomove((char *)ip->i_shortlink, isize, ap->a_uio);
/freebsd-9.3-release/sys/vm/
H A Dvnode_pager.c102 vnode_create_vobject(struct vnode *vp, off_t isize, struct thread *td) argument
105 vm_ooffset_t size = isize;

Completed in 222 milliseconds

12