HomeSort by: relevance | last modified time | path
    Searched defs:nbytes (Results 1 - 25 of 128) sorted by relevancy

1 2 3 4 5 6

  /src/lib/libc/net/
if_nameindex.c 91 size_t nbytes, ni; local in function:__weak_alias
103 nbytes = 0;
107 nbytes += strlen(ifa->ifa_name) + 1;
117 cp = malloc((ni + 1) * sizeof(struct if_nameindex) + nbytes);
if_nameindex.c 91 size_t nbytes, ni; local in function:__weak_alias
103 nbytes = 0;
107 nbytes += strlen(ifa->ifa_name) + 1;
117 cp = malloc((ni + 1) * sizeof(struct if_nameindex) + nbytes);
  /src/sys/arch/mips/include/
sysarch.h 39 size_t nbytes; member in struct:mips_cacheflush_args
45 size_t nbytes; member in struct:mips_cachectl_args
sysarch.h 39 size_t nbytes; member in struct:mips_cacheflush_args
45 size_t nbytes; member in struct:mips_cachectl_args
netbsd32_machdep.h 74 netbsd32_size_t nbytes; member in struct:mips_cacheflush_args32
80 netbsd32_size_t nbytes; member in struct:mips_cachectl_args32
netbsd32_machdep.h 74 netbsd32_size_t nbytes; member in struct:mips_cacheflush_args32
80 netbsd32_size_t nbytes; member in struct:mips_cachectl_args32
  /src/lib/libc/db/recno/
rec_delete.c 156 uint32_t nbytes; local in function:__rec_dleaf
174 nbytes = NRLEAF(rl);
181 memmove(from + nbytes, from, (size_t)((char *)to - from));
182 h->upper += nbytes;
189 ip[0] += nbytes;
193 ip[0] = ip[1] < offset ? ip[1] + nbytes : ip[1];
rec_delete.c 156 uint32_t nbytes; local in function:__rec_dleaf
174 nbytes = NRLEAF(rl);
181 memmove(from + nbytes, from, (size_t)((char *)to - from));
182 h->upper += nbytes;
189 ip[0] += nbytes;
193 ip[0] = ip[1] < offset ? ip[1] + nbytes : ip[1];
rec_put.c 200 uint32_t nbytes; local in function:__rec_iput
259 nbytes = NRLEAFDBT(data->size);
260 if ((uint32_t) (h->upper - h->lower) < nbytes + sizeof(indx_t)) {
261 status = __bt_split(t, h, NULL, data, dflags, nbytes,
273 h->linp[idx] = h->upper -= nbytes;
rec_put.c 200 uint32_t nbytes; local in function:__rec_iput
259 nbytes = NRLEAFDBT(data->size);
260 if ((uint32_t) (h->upper - h->lower) < nbytes + sizeof(indx_t)) {
261 status = __bt_split(t, h, NULL, data, dflags, nbytes,
273 h->linp[idx] = h->upper -= nbytes;
  /src/sys/dev/ic/
amdccp.c 77 const size_t nbytes = MIN(bytes_wanted, sizeof(buf)); local in function:amdccp_rnd_callback
78 const size_t nwords = howmany(nbytes, sizeof(buf[0]));
amdccp.c 77 const size_t nbytes = MIN(bytes_wanted, sizeof(buf)); local in function:amdccp_rnd_callback
78 const size_t nwords = howmany(nbytes, sizeof(buf[0]));
  /src/sys/external/bsd/drm2/drm/
drm_scatter.c 149 const size_t nbytes = PAGE_ALIGN(size); local in function:drm_sg_alloc_mem
150 const size_t npages = nbytes >> PAGE_SHIFT;
169 error = -bus_dmamem_alloc(sg->sg_tag, nbytes, PAGE_SIZE, 0,
185 error = -bus_dmamem_map(sg->sg_tag, sg->sg_segs, nsegs, nbytes,
190 sg->sg_size = nbytes;
196 error = -bus_dmamap_create(sg->sg_tag, nbytes, nsegs, nbytes, 0,
205 error = -bus_dmamap_load(sg->sg_tag, sg->sg_map, sg->virtual, nbytes,
drm_scatter.c 149 const size_t nbytes = PAGE_ALIGN(size); local in function:drm_sg_alloc_mem
150 const size_t npages = nbytes >> PAGE_SHIFT;
169 error = -bus_dmamem_alloc(sg->sg_tag, nbytes, PAGE_SIZE, 0,
185 error = -bus_dmamem_map(sg->sg_tag, sg->sg_segs, nsegs, nbytes,
190 sg->sg_size = nbytes;
196 error = -bus_dmamap_create(sg->sg_tag, nbytes, nsegs, nbytes, 0,
205 error = -bus_dmamap_load(sg->sg_tag, sg->sg_map, sg->virtual, nbytes,
  /src/tests/fs/hfs/
t_pathconvert.c 40 int offset, nbytes; local in function:ATF_TC_BODY
60 RL(nbytes = rump_sys_getdents(dirfd, buf, sizeof buf));
62 for (offset = 0; offset < nbytes; offset += dirent->d_reclen) {
t_pathconvert.c 40 int offset, nbytes; local in function:ATF_TC_BODY
60 RL(nbytes = rump_sys_getdents(dirfd, buf, sizeof buf));
62 for (offset = 0; offset < nbytes; offset += dirent->d_reclen) {
  /src/sys/arch/x68k/stand/libsa/
fd.c 98 int error, nbytes; local in function:fdstrategy
105 nbytes = howmany(size, 128 << sc->fmt.minsec.N)
120 nbytes,
123 nbytes = 0;
130 *rsize = nbytes;
fd.c 98 int error, nbytes; local in function:fdstrategy
105 nbytes = howmany(size, 128 << sc->fmt.minsec.N)
120 nbytes,
123 nbytes = 0;
130 *rsize = nbytes;
  /src/lib/libc/db/btree/
bt_put.c 78 uint32_t nbytes, temp; local in function:__bt_put
204 nbytes = NBLEAFDBT(key->size, data->size);
205 if ((uint32_t)h->upper - (uint32_t)h->lower < nbytes + sizeof(indx_t)) {
207 data, dflags, nbytes, (u_int)idx)) != RET_SUCCESS)
217 h->linp[idx] = h->upper -= nbytes;
271 uint32_t nbytes; local in function:bt_fast
285 nbytes = NBLEAFDBT(key->size, data->size);
286 if ((uint32_t)h->upper - (uint32_t)h->lower < nbytes + sizeof(indx_t))
bt_put.c 78 uint32_t nbytes, temp; local in function:__bt_put
204 nbytes = NBLEAFDBT(key->size, data->size);
205 if ((uint32_t)h->upper - (uint32_t)h->lower < nbytes + sizeof(indx_t)) {
207 data, dflags, nbytes, (u_int)idx)) != RET_SUCCESS)
217 h->linp[idx] = h->upper -= nbytes;
271 uint32_t nbytes; local in function:bt_fast
285 nbytes = NBLEAFDBT(key->size, data->size);
286 if ((uint32_t)h->upper - (uint32_t)h->lower < nbytes + sizeof(indx_t))
  /src/libexec/lfs_cleanerd/
cleaner.h 8 u_int32_t nbytes; member in struct:clfs_seguse
  /src/sbin/nvmectl/
humanize_bignum.c 107 BIGNUM *nbytes = NULL, *max = NULL; local in function:humanize_bignum
113 if ((nbytes = BN_dup(bytes)) == NULL)
149 if (BN_is_negative(nbytes)) {
152 BN_set_negative(nbytes, 0);
159 BN_mul(t1, nbytes, BN_value_100(), NULL);
160 BN_swap(nbytes, t1);
195 for (i = 0; BN_cmp(nbytes, max) >= 0 && i < maxscale; i++) {
196 if (BN_div(t1, t2, nbytes, divisor, NULL) == 0)
198 BN_swap(nbytes, t1);
209 if (BN_div(t1, t2, nbytes, divisor, NULL) == 0
    [all...]
  /src/sys/net/npf/
npf_if.c 81 const size_t nbytes = sizeof(npf_ifmap_t) * NPF_MAX_IFMAP; local in function:npf_ifmap_init
87 npf->ifmap = kmem_zalloc(nbytes, KM_SLEEP);
96 const size_t nbytes = sizeof(npf_ifmap_t) * NPF_MAX_IFMAP; local in function:npf_ifmap_fini
98 kmem_free(npf->ifmap, nbytes);
  /src/usr.bin/hexdump/
odsyntax.c 60 int nbytes; member in struct:odformat
224 int nbytes = 0; local in function:posixtypes
232 nbytes = 1;
238 nbytes = sizeof(float);
241 nbytes = sizeof(double);
244 nbytes = sizeof(long double);
253 nbytes = strtol(type_string, &tmp, 10);
256 nbytes = 8;
265 nbytes = sizeof(char);
268 nbytes = sizeof(short)
    [all...]
  /src/lib/libc/gen/
wordexp.c 96 size_t nwords, nbytes; /* Number of words, bytes from child */ local in function:we_askshell
170 nbytes = 0;
174 nbytes *= 10;
175 nbytes += (i - '0');
182 nbytes += nwords;
194 we->we_nbytes += nbytes;
213 if (fread(we->we_strings + sofs, sizeof(char), nbytes, fp) != nbytes) {
236 if ((np = memchr(p, '\0', nbytes)) == NULL)
238 nbytes -= np - p + 1
    [all...]

Completed in 31 milliseconds

1 2 3 4 5 6