Searched refs:nbytes (Results 176 - 200 of 241) sorted by relevance

12345678910

/freebsd-10-stable/sys/dev/mwl/
H A Dmwlhal.c2544 uint32_t blocksize, nbytes, fmsize; local
2609 nbytes = ntries = 0; /* NB: silence compiler */
2621 fp += nbytes;
2639 nbytes = blocksize;
2640 if (!mwlSendBlock2(mh, fp, nbytes)) {
2647 nbytes = ep - fp;
2648 if (nbytes > FW_DOWNLOAD_BLOCK_SIZE)
2649 nbytes = FW_DOWNLOAD_BLOCK_SIZE;
2650 if (!mwlSendBlock(mh, FW_DOWNLOAD_BLOCK_SIZE, fp, nbytes)) {
2654 fp += nbytes;
[all...]
/freebsd-10-stable/contrib/ntp/lib/isc/win32/
H A Dsocket.c1374 startio_send(isc_socket_t *sock, isc_socketevent_t *dev, int *nbytes, argument
1395 *nbytes = internal_sendmsg(sock, lpo, msghdr, 0, send_errno);
1397 if (*nbytes < 0) {
1422 sock->fd, *nbytes, *send_errno, strbuf);
2214 internal_recv(isc_socket_t *sock, int nbytes) argument
2223 "internal_recv: %d bytes received", nbytes);
2244 if (nbytes == 0 && sock->type == isc_sockettype_tcp) {
2249 sock->recvbuf.remaining = nbytes;
2267 struct msghdr *messagehdr, int nbytes, int send_errno, IoCompletionInfo *lpo)
2308 switch (completeio_send(sock, dev, messagehdr, nbytes, send_errn
2266 internal_send(isc_socket_t *sock, isc_socketevent_t *dev, struct msghdr *messagehdr, int nbytes, int send_errno, IoCompletionInfo *lpo) argument
2422 DWORD nbytes; local
[all...]
/freebsd-10-stable/sbin/ipfw/
H A Dipfw2.c1851 int i, nbytes; local
1864 nalloc = nbytes = sizeof(struct ip_fw);
1865 while (nbytes >= nalloc) {
1869 nbytes = nalloc;
1870 data = safe_calloc(1, nbytes);
1871 if (do_cmd(IP_FW_GET, data, (uintptr_t)&nbytes) < 0)
1997 int bcwidth, n, nbytes, nstat, ndyn, pcwidth, width; local
2024 nbytes = nalloc;
2026 while (nbytes >= nalloc) {
2028 nbytes
[all...]
/freebsd-10-stable/sys/contrib/altq/altq/
H A Daltq_subr.c770 altq_getqstats(struct pf_altq *a, void *ubuf, int *nbytes) argument
777 error = cbq_getqstats(a, ubuf, nbytes);
782 error = priq_getqstats(a, ubuf, nbytes);
787 error = hfsc_getqstats(a, ubuf, nbytes);
792 error = fairq_getqstats(a, ubuf, nbytes);
797 error = codel_getqstats(a, ubuf, nbytes);
H A Daltq_fairq.c232 fairq_getqstats(struct pf_altq *a, void *ubuf, int *nbytes) argument
245 if (*nbytes < sizeof(stats))
252 *nbytes = sizeof(stats);
H A Daltq_cbq.c463 cbq_getqstats(struct pf_altq *a, void *ubuf, int *nbytes) argument
476 if (*nbytes < sizeof(stats))
483 *nbytes = sizeof(stats);
H A Daltq_priq.c209 priq_getqstats(struct pf_altq *a, void *ubuf, int *nbytes) argument
222 if (*nbytes < sizeof(stats))
229 *nbytes = sizeof(stats);
/freebsd-10-stable/lib/libfetch/
H A Dhttp.c211 ssize_t nbytes; local
223 if ((nbytes = fetch_read(io->conn, io->buf, len)) == -1) {
227 io->buflen = nbytes;
249 if ((nbytes = fetch_read(io->conn, io->buf, len)) == -1) {
254 io->buflen = nbytes;
255 io->chunksize -= nbytes;
/freebsd-10-stable/contrib/binutils/bfd/
H A Dlibbfd.h760 file_ptr (*bread) (struct bfd *abfd, void *ptr, file_ptr nbytes);
762 file_ptr nbytes);
/freebsd-10-stable/sys/arm/freescale/vybrid/
H A Dvf_sai.c395 sc->pos += (tcd->nbytes * tcd->nmajor);
493 tcd->nbytes = 64;
H A Dvf_edma.c232 TCD_WRITE4(sc, DMA_TCDn_NBYTES_MLOFFYES(chnum), tcd->nbytes);
/freebsd-10-stable/contrib/file/src/
H A Dreadcdf.c541 size_t nbytes)
555 info.i_len = nbytes;
540 file_trycdf(struct magic_set *ms, int fd, const unsigned char *buf, size_t nbytes) argument
/freebsd-10-stable/sys/dev/qlnx/qlnxe/
H A Dqlnx_def.h173 #define BD_UNMAP_LEN(bd) (le16toh((bd)->nbytes))
179 (bd)->nbytes = htole16(len); \
/freebsd-10-stable/sys/i386/ibcs2/
H A Dibcs2_proto.h39 char nbytes_l_[PADL_(u_int)]; u_int nbytes; char nbytes_r_[PADR_(u_int)]; member in struct:ibcs2_read_args
235 char nbytes_l_[PADL_(int)]; int nbytes; char nbytes_r_[PADR_(int)]; member in struct:ibcs2_getdents_args
/freebsd-10-stable/contrib/gcc/
H A Dtree-vectorizer.c1553 int nbytes = GET_MODE_SIZE (inner_mode);
1557 if (nbytes == 0 || nbytes >= UNITS_PER_SIMD_WORD)
1562 nunits = UNITS_PER_SIMD_WORD / nbytes;
1552 int nbytes = GET_MODE_SIZE (inner_mode); local
/freebsd-10-stable/contrib/llvm/lib/Support/
H A Dregcomp.c1062 size_t nbytes; local
1073 nbytes = nc / CHAR_BIT * css;
1080 ptr = (uch *)realloc((char *)p->g->setbits, nbytes);
1088 (void) memset((char *)p->g->setbits + (nbytes - css), 0, css);
/freebsd-10-stable/libexec/bootpd/
H A Dreadfile.c2041 smalloc(nbytes)
2042 unsigned nbytes;
2046 retvalue = malloc(nbytes);
2051 bzero(retvalue, nbytes);
/freebsd-10-stable/release/picobsd/tinyware/msh/
H A Dsh.h378 _PROTOTYPE(char *getcell , (unsigned nbytes ));
/freebsd-10-stable/sbin/bsdlabel/
H A Dbsdlabel.c491 ssize_t nbytes; local
511 nbytes = read(f, bootarea, BBSIZE);
512 if (nbytes == -1)
514 if (nbytes != BBSIZE)
/freebsd-10-stable/contrib/serf/buckets/
H A Dssl_buckets.c348 apr_size_t nbytes; local
352 nbytes = inl;
353 apr_file_write(file, in, &nbytes);
355 return nbytes;
/freebsd-10-stable/sys/dev/hwpmc/
H A Dhwpmc_logging.c253 size_t nbytes; local
320 aiov.iov_len = nbytes = lb->plb_ptr - lb->plb_base;
325 auio.uio_resid = nbytes;
/freebsd-10-stable/contrib/subversion/subversion/libsvn_subr/
H A Dstring.c502 svn_stringbuf_chop(svn_stringbuf_t *str, apr_size_t nbytes)
504 if (nbytes > str->len)
507 str->len -= nbytes;
498 svn_stringbuf_chop(svn_stringbuf_t *str, apr_size_t nbytes) argument
/freebsd-10-stable/contrib/nvi/regex/
H A Dregcomp.c1128 register size_t nbytes; local
1137 nbytes = nc / CHAR_BIT * css;
1146 p->g->setbits = (uch *)malloc(nbytes);
1149 nbytes);
1155 (void) memset((char *)p->g->setbits + (nbytes - css),
/freebsd-10-stable/sys/kern/
H A Dlink_elf_obj.c462 int nbytes, i, j; local
550 nbytes = hdr->e_shnum * hdr->e_shentsize;
551 if (nbytes == 0 || hdr->e_shoff == 0 ||
556 shdr = malloc(nbytes, M_LINKER, M_WAITOK);
558 error = vn_rdwr(UIO_READ, nd.ni_vp, (caddr_t)shdr, nbytes, hdr->e_shoff,
H A Dsystrace_args.c1942 uarg[4] = p->nbytes; /* size_t */
1953 uarg[4] = p->nbytes; /* size_t */
2016 uarg[4] = p->nbytes; /* size_t */
2027 uarg[4] = p->nbytes; /* size_t */
2155 uarg[3] = p->nbytes; /* size_t */
2304 uarg[4] = p->nbytes; /* size_t */
2315 uarg[4] = p->nbytes; /* size_t */
2484 uarg[3] = p->nbytes; /* size_t */
2494 uarg[3] = p->nbytes; /* size_t */
2504 uarg[3] = p->nbytes; /* size_
[all...]

Completed in 270 milliseconds

12345678910