Searched refs:chunksize (Results 1 - 20 of 20) sorted by relevance

/freebsd-12-stable/sys/dev/adlink/
H A Dadlink.c84 u_int chunksize; /* bytes */ member in struct:page0
143 sc->sample += sc->p0->chunksize / 2;
160 bus_write_4(sc->res[0], 0x28, sc->p0->chunksize);
184 if (offset - o >= sc->p0->chunksize) {
185 o += sc->p0->chunksize;
221 sc->p0->chunksize = u;
228 if (sc->p0->chunksize != 0 && u % sc->p0->chunksize)
237 if (sc->p0->chunksize == 0)
238 sc->p0->chunksize
[all...]
/freebsd-12-stable/contrib/dtc/
H A Ddata.c98 size_t chunksize, ret; local
101 chunksize = 4096;
103 chunksize = maxlen - d.len;
105 d = data_grow_for(d, chunksize);
106 ret = fread(d.val + d.len, 1, chunksize, f);
/freebsd-12-stable/sys/contrib/octeon-sdk/cvmx-malloc/
H A Dmalloc.c1252 chunksize units, which adds padding and alignment. You can reduce
1832 #define chunksize(p) ((p)->size & ~(SIZE_BITS)) macro
2321 unsigned long sz = chunksize(p);
2323 char* max_address = (char*)(av->top) + chunksize(av->top);
2434 assert(chunksize(next) >= MINSIZE);
2549 total += chunksize(p);
2551 assert(fastbin_index(chunksize(p)) == i);
2578 size = chunksize(p);
2587 (unsigned long)chunksize(p->bk) >=
2588 (unsigned long)chunksize(
[all...]
/freebsd-12-stable/contrib/libpcap/
H A Ddlpisubs.c305 bpf_u_int32 ss, chunksize; local
340 chunksize = CHUNKSIZE;
341 if (strioctl(p->fd, SBIOCSCHUNK, sizeof(chunksize), (char *)&chunksize)
H A Dpcap-snit.c287 int chunksize = CHUNKSIZE; local
357 /* set the chunksize */
360 si.ic_len = sizeof(chunksize);
361 si.ic_dp = (char *)&chunksize;
/freebsd-12-stable/sbin/newfs_msdos/
H A Dmkfs_msdos.c254 ssize_t chunksize; local
617 chunksize = getchunksize();
618 physbuf = malloc(chunksize);
623 physbuf_end = physbuf + chunksize;
749 * Issue a write of chunksize once we have collected
754 n = write(fd, physbuf, chunksize);
755 if (n != chunksize) {
826 static int chunksize; local
828 if (chunksize != 0)
829 return ((ssize_t)chunksize);
[all...]
/freebsd-12-stable/contrib/binutils/gas/
H A Dsubsegs.c41 obstack_begin (&frchains, chunksize);
113 obstack_begin (&newP->frch_obstack, chunksize);
H A Das.h477 extern int chunksize;
H A Das.c100 int chunksize = 0; variable
1084 chunksize = 64;
H A Dhash.c117 obstack_begin (&ret->memory, chunksize);
H A Dread.c238 obstack_begin (&notes, chunksize);
239 obstack_begin (&cond_obstack, chunksize);
/freebsd-12-stable/lib/libfetch/
H A Dhttp.c141 size_t chunksize; /* remaining size of current chunk */ member in struct:httpio
167 io->chunksize = io->chunksize * 16 +
170 io->chunksize = io->chunksize * 16 +
177 io->total += io->chunksize;
178 if (io->chunksize == 0)
182 __func__, (unsigned long)io->chunksize,
187 return (io->chunksize);
236 if (io->chunksize
[all...]
/freebsd-12-stable/contrib/tnftp/src/
H A Dfetch.c1165 long chunksize; local
1168 chunksize = 0;
1177 chunksize = strtol(xferbuf, &ep, 16);
1182 if (errno == ERANGE || chunksize < 0) {
1208 (LLT)chunksize);
1209 if (chunksize == 0) {
1223 bufrem = MIN(chunksize, bufrem);
1244 chunksize -= flen;
1245 if (chunksize <= 0)
1258 if (ischunked && chunksize <
[all...]
/freebsd-12-stable/sys/fs/fuse/
H A Dfuse_io.c516 size_t chunksize; local
566 chunksize = MIN(uio->uio_resid, data->max_write);
568 fdi.iosize = sizeof_fwi + chunksize;
574 fwi->size = chunksize;
581 if ((err = uiomove(fwi_data, chunksize, uio)))
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/ztest/
H A Dztest.c4106 uint64_t chunksize = (1000 + ztest_random(1000)) * sizeof (uint64_t); local
4140 chunksize);
4142 chunksize);
4149 chunksize = od[0].od_gen;
4150 ASSERT(chunksize == od[1].od_gen);
4160 dmu_prefetch(os, bigobj, 0, n * chunksize, s * chunksize,
4172 bigoff = n * chunksize;
4173 bigsize = s * chunksize;
4240 bigH = (bufwad_t *)((char *)bigbuf + i * chunksize);
4324 compare_and_update_pbbufs(uint64_t s, bufwad_t *packbuf, bufwad_t *bigbuf, uint64_t bigsize, uint64_t n, uint64_t chunksize, uint64_t txg) argument
4384 uint64_t chunksize = blocksize; local
[all...]
/freebsd-12-stable/contrib/gdb/gdb/
H A Dvalprint.c1089 unsigned int chunksize; /* Size of each fetch, in chars. */
1115 chunksize = (len == -1 ? min (8, fetchlimit) : fetchlimit);
1140 nfetch = min (chunksize, fetchlimit - bufsize);
1088 unsigned int chunksize; /* Size of each fetch, in chars. */ local
/freebsd-12-stable/contrib/subversion/subversion/libsvn_fs_base/
H A Dfs.c1233 u_int32_t chunksize,
1261 buf = apr_palloc(pool, chunksize);
1266 apr_size_t bytes_this_time = chunksize;
1221 copy_db_file_safely(const char *src_dir, const char *dst_dir, const char *filename, u_int32_t chunksize, svn_boolean_t allow_missing, apr_pool_t *pool) argument
/freebsd-12-stable/contrib/binutils/gas/config/
H A Dtc-ppc.c3256 hold_chunksize = chunksize;
3257 chunksize = 64;
3262 chunksize = hold_chunksize;
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/dtrace/
H A Ddtrace.c1875 size_t chunksize = dstate->dtds_chunksize; local
2136 * size up to the chunksize for allocation.
2145 * chunksize calculation in dtrace_difo_chunksize() be absolutely
2152 ksize + dsize > chunksize) {
10439 * This routine calculates the dynamic variable chunksize for a given DIF
10443 * if a dynamic variable size exceeds the chunksize.
14323 size_t hashsize, maxper, min, chunksize = dstate->dtds_chunksize;
14334 if ((dstate->dtds_chunksize = chunksize) == 0)
/freebsd-12-stable/contrib/sqlite3/
H A Dsqlite3.c96034 int chunksize = 4*1024; local
[all...]

Completed in 815 milliseconds