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

12

/freebsd-current/usr.bin/hexdump/
H A Dodsyntax.c306 size_t isize; local
310 isize = sizeof(double);
313 isize = sizeof(float);
317 isize = sizeof(double);
321 isize = sizeof(long double);
327 isize = (size_t)strtoul(fmt, &end, 10);
328 if (errno != 0 || isize == 0)
333 switch (isize) {
341 if (isize == sizeof(long double))
345 (u_long)isize);
362 size_t isize; local
[all...]
/freebsd-current/usr.bin/mkuzip/
H A Dmkuz_cfg.h38 off_t isize; member in struct:mkuz_cfg
H A Dmkuzip.c278 cfs.isize = mkuz_get_insize(&cfs);
279 if (cfs.isize < 0) {
283 hdr.nblocks = cfs.isize / cfs.blksz;
284 if ((cfs.isize % cfs.blksz) != 0) {
320 "%u, index length %zu bytes\n", cfs.isize,
403 (long long)(cfs.isize - offset),
404 100.0 * (long long)(cfs.isize - offset) /
405 (float)cfs.isize, (float)cfs.isize / (et - st));
/freebsd-current/sys/arm/arm/
H A Didentcpu-v6.c111 uint32_t isize, dsize; local
139 isize = CPU_CT_ISIZE(cpuinfo.ctr);
140 multiplier = (isize & CPU_CT_xSIZE_M) ? 3 : 2;
141 picache_line_size = 1U << (CPU_CT_xSIZE_LEN(isize) + 3);
142 if (CPU_CT_xSIZE_ASSOC(isize) == 0) {
143 if (isize & CPU_CT_xSIZE_M)
149 (CPU_CT_xSIZE_ASSOC(isize) - 1);
151 picache_size = multiplier << (CPU_CT_xSIZE_SIZE(isize) + 8);
/freebsd-current/contrib/processor-trace/libipt/src/
H A Dpt_insn.c232 uint8_t isize, remaining; local
237 isize = insn->size;
238 remaining = sizeof(insn->raw) - isize;
247 size = pt_image_read(image, &isid, &insn->raw[isize], remaining, asid,
248 insn->ip + isize);
/freebsd-current/sys/geom/uzip/
H A Dg_uzip_lzma.c91 LZ4_compressBound(int isize) argument
94 return (isize + (isize / 255) + 16);
/freebsd-current/contrib/processor-trace/libipt/internal/include/
H A Dpt_block_cache.h57 * The isize field should provide the size of the branch instruction so
67 * The isize field should provide the size of the call instruction so
158 uint32_t isize:3; member in struct:pt_bcache_entry
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Dlz4_zfs.c42 static int real_LZ4_compress(const char *source, char *dest, int isize,
45 int isize, int osize);
47 int isize, int osize);
51 int isize, int maxOutputSize);
109 * isize : is the input size. Max supported value is ~1.9GB
136 * isize : is the input size. Max supported value is ~1.9GB
141 * isize : is the input size, therefore the compressed size
163 * isize *Must* be <64KB, otherwise the output will be corrupted.
474 LZ4_compressCtx(void *ctx, const char *source, char *dest, int isize, argument
483 const BYTE *const iend = ip + isize;
664 LZ4_compress64kCtx(void *ctx, const char *source, char *dest, int isize, int osize) argument
841 real_LZ4_compress(const char *source, char *dest, int isize, int osize) argument
[all...]
/freebsd-current/sys/cddl/contrib/opensolaris/common/lz4/
H A Dlz4.c61 static int real_LZ4_compress(const char *source, char *dest, int isize,
64 int isize, int maxOutputSize);
66 int isize, int osize);
68 int isize, int osize);
133 * isize : is the input size. Max supported value is ~1.9GB
143 * isize : is the input size, therefore the compressed size
164 * isize *Must* be <64KB, otherwise the output will be corrupted.
473 LZ4_compressCtx(void *ctx, const char *source, char *dest, int isize, argument
486 const BYTE *const iend = ip + isize;
499 if (isize < MINLENGT
668 LZ4_compress64kCtx(void *ctx, const char *source, char *dest, int isize, int osize) argument
849 real_LZ4_compress(const char *source, char *dest, int isize, int osize) argument
898 LZ4_uncompress_unknownOutputSize(const char *source, char *dest, int isize, int maxOutputSize) argument
[all...]
/freebsd-current/tests/sys/fs/fusefs/
H A Dutils.hh182 * the given inode, at offset offset and with size isize. It will
188 void expect_read(uint64_t ino, uint64_t offset, uint64_t isize,
220 * for the given inode, at offset offset, with size isize and buffer
225 void expect_write(uint64_t ino, uint64_t offset, uint64_t isize,
230 void expect_write_7_8(uint64_t ino, uint64_t offset, uint64_t isize,
H A Dio.cc141 ssize_t isize = in.body.write.size;
144 assert((size_t)isize <= sizeof(in.body.bytes) -
146 ASSERT_EQ(isize, pwrite(m_backing_fd, buf, isize, iofs))
149 out.body.write.size = isize;
158 ssize_t isize = in.body.write.size;
163 assert((size_t)isize <= sizeof(out.body.bytes));
164 osize = pread(m_backing_fd, buf, isize, iofs);
H A Dutils.cc383 void FuseTest::expect_read(uint64_t ino, uint64_t offset, uint64_t isize, argument
392 in.body.read.size == isize &&
492 void FuseTest::expect_write(uint64_t ino, uint64_t offset, uint64_t isize, argument
503 assert(isize <= sizeof(in.body.bytes) -
514 in.body.write.size == isize &&
520 0 == bcmp(buf, contents, isize));
529 void FuseTest::expect_write_7_8(uint64_t ino, uint64_t offset, uint64_t isize, argument
538 assert(isize <= sizeof(in.body.bytes) -
544 in.body.write.size == isize &&
546 0 == bcmp(buf, contents, isize));
[all...]
/freebsd-current/contrib/processor-trace/libipt/test/src/
H A Dptunit-block_cache.c237 exp.isize = 7;
249 ptu_uint_eq(bce.isize, exp.isize);
269 exp.isize = 3;
307 if (bce.isize != exp.isize)
/freebsd-current/sys/dev/dcons/
H A Ddcons.h55 V u_int32_t isize[DCONS_NPORT]; member in struct:dcons_buf
H A Ddcons.c149 buf->isize[port] = htonl(size - osize);
171 dc->i.size = ntohl(buf->isize[port]);
/freebsd-current/sys/ufs/ufs/
H A Dufs_inode.c110 off_t isize; local
159 isize = ip->i_size;
161 isize += ip->i_din2->di_extsize;
162 if (ip->i_effnlink <= 0 && isize && !UFS_RDONLY(ip))
/freebsd-current/sys/dev/hid/
H A Dhms.c122 hid_size_t isize; member in struct:hms_softc
135 if (len > sc->isize)
136 len = sc->isize;
271 sc->isize = hid_report_size_max(d_ptr, d_len, hid_input, NULL);
272 sc->last_ir = malloc(sc->isize, M_DEVBUF, M_WAITOK | M_ZERO);
H A Dhidraw.c290 sc->sc_rdesc->isize - len);
431 sc->sc_rdesc->isize, NULL, HID_INPUT_REPORT,
434 error = uiomove(sc->sc_q, sc->sc_rdesc->isize, uio);
459 sc->sc_rdesc->isize : sc->sc_qlen[sc->sc_head]);
706 size = sc->sc_rdesc->isize;
729 size = sc->sc_rdesc->isize;
768 size = sc->sc_rdesc->isize;
H A Dietp.c425 int isize; local
439 isize = hid_report_size_max(d_ptr, d_len, hid_input, &iid);
440 if (isize >= IETP_REPORT_LEN_LO)
/freebsd-current/stand/common/
H A Dbcache.c398 size_t csize, isize, total; local
431 ret = read_strategy(devdata, rw, blk, csize, buf+total, &isize);
437 if (ret != 0 || isize == 0) {
442 blk += isize / bcache_blksize;
443 total += isize;
444 size -= isize;
/freebsd-current/sys/x86/iommu/
H A Dintel_utils.c242 iommu_gaddr_t isize; local
246 isize = 1ULL << (am + DMAR_PAGE_SHIFT);
247 if ((base & (isize - 1)) == 0 && size >= isize)
252 *isizep = isize;
H A Dintel_qi.c232 iommu_gaddr_t isize; local
237 for (; size > 0; base += isize, size -= isize) {
238 am = calc_am(unit, base, size, &isize);
/freebsd-current/sys/dev/usb/input/
H A Dwmt.c224 uint32_t isize; member in struct:wmt_softc
314 (sc->isize <= 0 || sc->isize > WMT_BSIZE)) {
315 DPRINTF("Input size invalid or too large: %d\n", sc->isize);
677 usbd_xfer_set_frame_len(xfer, 0, sc->isize);
935 sc->isize = hid_report_size_max(d_ptr, d_len, hid_input, NULL);
/freebsd-current/sbin/fsck_ffs/
H A Dinode.c50 static int iblock(struct inodesc *, off_t isize, int type);
165 iblock(struct inodesc *idesc, off_t isize, int type) argument
189 if (howmany(isize, sizepb) > NINDIR(&sblock))
192 nif = howmany(isize, sizepb);
216 n = iblock(idesc, isize, type - 1);
225 if (idesc->id_type == DATA && isize > 0) {
234 DIP(ip.i_dp, di_size) - isize);
235 isize = 0;
245 isize -= sizepb;
/freebsd-current/crypto/openssl/crypto/evp/
H A Ddigest.c425 int EVP_DigestFinal_ex(EVP_MD_CTX *ctx, unsigned char *md, unsigned int *isize) argument
448 if (isize != NULL) {
450 *isize = (unsigned int)size;
463 if (isize != NULL)
464 *isize = mdsize;

Completed in 190 milliseconds

12