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

12

/freebsd-11-stable/usr.bin/mkuzip/
H A Dmkuz_cfg.h40 off_t isize; member in struct:mkuz_cfg
H A Dmkuzip.c228 cfs.isize = mkuz_get_insize(&cfs);
229 if (cfs.isize < 0) {
233 hdr.nblocks = cfs.isize / cfs.blksz;
234 if ((cfs.isize % cfs.blksz) != 0) {
262 "%u, index length %zu bytes\n", cfs.isize,
345 (long long)(cfs.isize - offset),
346 100.0 * (long long)(cfs.isize - offset) /
347 (float)cfs.isize, (float)cfs.isize / (et - st));
/freebsd-11-stable/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-11-stable/usr.sbin/kgzip/
H A Dkgz.h51 uint32_t isize; /* image size in memory */ member in struct:kgz_hdr
H A Dkgzcmp.c104 khle.isize = htole32(khle.isize);
213 kh->isize = kh->dsize + n;
236 kh->isize = kh->dsize + le32toh(a->a_bss);
H A Dkgzip.c120 printf("dload=%#x dsize=%#x isize=%#x entry=%#x nsize=%#x\n",
121 kh.dload, kh.dsize, kh.isize, kh.entry, kh.nsize);
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dlz4.c40 static int real_LZ4_compress(const char *source, char *dest, int isize,
42 static int LZ4_compressBound(int isize);
44 int isize, int maxOutputSize);
46 int isize, int osize);
48 int isize, int osize);
103 * isize : is the input size. Max supported value is ~1.9GB
118 * isize : is the input size. Max supported value is ~1.9GB
123 * isize : is the input size, therefore the compressed size
144 * 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-11-stable/sys/arm/arm/
H A Didentcpu-v6.c96 uint32_t isize, dsize; local
124 isize = CPU_CT_ISIZE(cpuinfo.ctr);
125 multiplier = (isize & CPU_CT_xSIZE_M) ? 3 : 2;
126 picache_line_size = 1U << (CPU_CT_xSIZE_LEN(isize) + 3);
127 if (CPU_CT_xSIZE_ASSOC(isize) == 0) {
128 if (isize & CPU_CT_xSIZE_M)
134 (CPU_CT_xSIZE_ASSOC(isize) - 1);
136 picache_size = multiplier << (CPU_CT_xSIZE_SIZE(isize) + 8);
H A Dcpufunc.c489 u_int ctype, isize, dsize, cpuid; local
555 isize = CPU_CT_ISIZE(ctype);
556 multiplier = (isize & CPU_CT_xSIZE_M) ? 3 : 2;
557 arm_picache_line_size = 1U << (CPU_CT_xSIZE_LEN(isize) + 3);
558 if (CPU_CT_xSIZE_ASSOC(isize) == 0) {
559 if (isize & CPU_CT_xSIZE_M)
565 (CPU_CT_xSIZE_ASSOC(isize) - 1);
567 arm_picache_size = multiplier << (CPU_CT_xSIZE_SIZE(isize) + 8);
H A Delf_trampoline.c276 u_int ctype, isize, dsize, cpuid; local
340 isize = CPU_CT_ISIZE(ctype);
341 multiplier = (isize & CPU_CT_xSIZE_M) ? 3 : 2;
342 arm_picache_line_size = 1U << (CPU_CT_xSIZE_LEN(isize) + 3);
343 if (CPU_CT_xSIZE_ASSOC(isize) == 0) {
344 if (isize & CPU_CT_xSIZE_M)
350 (CPU_CT_xSIZE_ASSOC(isize) - 1);
352 arm_picache_size = multiplier << (CPU_CT_xSIZE_SIZE(isize) + 8);
/freebsd-11-stable/sys/geom/uzip/
H A Dg_uzip_lzma.c94 LZ4_compressBound(int isize) argument
97 return (isize + (isize / 255) + 16);
/freebsd-11-stable/sys/ufs/ufs/
H A Dufs_inode.c78 off_t isize; local
127 isize = ip->i_size;
129 isize += ip->i_din2->di_extsize;
130 if (ip->i_effnlink <= 0 && isize && !UFS_RDONLY(ip))
/freebsd-11-stable/stand/common/
H A Dbcache.c362 size_t csize, isize, total; local
395 ret = read_strategy(devdata, rw, blk, csize, buf+total, &isize);
401 if (ret != 0 || isize == 0) {
406 blk += isize / bcache_blksize;
407 total += isize;
408 size -= isize;
/freebsd-11-stable/sys/dev/dcons/
H A Ddcons.h54 V u_int32_t isize[DCONS_NPORT]; member in struct:dcons_buf
H A Ddcons.c148 buf->isize[port] = htonl(size - osize);
170 dc->i.size = ntohl(buf->isize[port]);
/freebsd-11-stable/stand/i386/kgzldr/
H A Dboot.c46 uint32_t isize; /* image size in memory */ member in struct:kgz_hdr
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/lz4/
H A Dlz4internal.h150 #define LZ4_COMPRESSBOUND(isize) ((unsigned)(isize) > (unsigned)LZ4_MAX_INPUT_SIZE ? 0 : (isize) + ((isize)/255) + 16)
448 /* int LZ4_uncompress_unknownOutputSize (const char* source, char* dest, int isize, int maxOutputSize); */
/freebsd-11-stable/sys/cddl/boot/zfs/
H A Dlz4.c40 int isize, int maxOutputSize);
204 char *dest, int isize, int maxOutputSize)
208 const BYTE *const iend = ip + isize;
203 LZ4_uncompress_unknownOutputSize(const char *source, char *dest, int isize, int maxOutputSize) argument
/freebsd-11-stable/sys/x86/iommu/
H A Dintel_qi.c225 dmar_gaddr_t isize; local
230 for (; size > 0; base += isize, size -= isize) {
231 am = calc_am(unit, base, size, &isize);
H A Dintel_utils.c238 dmar_gaddr_t isize; local
242 isize = 1ULL << (am + DMAR_PAGE_SHIFT);
243 if ((base & (isize - 1)) == 0 && size >= isize)
248 *isizep = isize;
/freebsd-11-stable/sbin/fsck_ffs/
H A Dinode.c55 static int iblock(struct inodesc *, off_t isize, int type);
157 iblock(struct inodesc *idesc, off_t isize, int type) argument
178 if (howmany(isize, sizepb) > NINDIR(&sblock))
181 nif = howmany(isize, sizepb);
204 n = iblock(idesc, isize, type);
213 if (idesc->id_type == DATA && isize > 0) {
222 DIP(dp, di_size) - isize);
223 isize = 0;
233 isize -= sizepb;
/freebsd-11-stable/sys/dev/usb/input/
H A Dwmt.c202 uint32_t isize; member in struct:wmt_softc
311 if (sc->isize <= 0 || sc->isize > WMT_BSIZE) {
312 DPRINTF("Input size invalid or too large: %d\n", sc->isize);
516 usbd_xfer_set_frame_len(xfer, 0, sc->isize);
781 sc->isize = hid_report_size(d_ptr, d_len, hid_input, NULL);
H A Dums.c582 int isize; local
625 isize = hid_report_size(d_ptr, d_len, hid_input, &sc->sc_iid);
643 isize = 5;
674 if (isize > (int)usbd_xfer_max_framelen(sc->sc_xfer[UMS_INTR_DT])) {
676 "than interrupt size, %d bytes!\n", isize,
704 DPRINTF("size=%d, id=%d\n", isize, sc->sc_iid);
/freebsd-11-stable/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)
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-mixx-defs.h807 uint64_t isize : 20; /**< Represents the Inbound Ring Buffer's Size(in 8B member in struct:cvmx_mixx_iring1::cvmx_mixx_iring1_s
819 uint64_t isize : 20;
826 uint64_t isize : 20; /**< Represents the Inbound Ring Buffer's Size(in 8B member in struct:cvmx_mixx_iring1::cvmx_mixx_iring1_cn52xx
840 uint64_t isize : 20;

Completed in 339 milliseconds

12