Searched refs:bsize (Results 101 - 125 of 140) sorted by relevance

123456

/freebsd-10-stable/contrib/apr-util/memcache/
H A Dapr_memcache.c580 apr_size_t bsize = BUFFER_SIZE; local
589 rv = apr_brigade_flatten(conn->tb, conn->buffer, &bsize);
595 conn->blen = bsize;
596 conn->buffer[bsize] = '\0';
/freebsd-10-stable/sys/dev/iwi/
H A Dif_iwireg.h163 uint32_t bsize; /* size of boot image */ member in struct:iwi_firmware_hdr
/freebsd-10-stable/sys/fs/fuse/
H A Dfuse_vfsops.c513 "fil es: %llu, ffree: %llu, bsize: %i, namelen: %i\n",
518 (unsigned long long)fsfo->st.ffree, fsfo->st.bsize,
/freebsd-10-stable/sbin/ggate/ggatec/
H A Dggatec.c124 bsize = ggio.gctl_length;
/freebsd-10-stable/usr.sbin/services_mkdb/
H A Dservices_mkdb.c72 .bsize = 256,
/freebsd-10-stable/release/picobsd/build/
H A Dpicobsd760 makefs -t ffs -o bsize=4096 -o fsize=512 \
897 makefs -t ffs -o bsize=4096 -o fsize=512 \
/freebsd-10-stable/sys/dev/malo/
H A Dif_malohal.c351 malo_hal_send_helper(struct malo_hal *mh, int bsize, argument
355 mh->mh_cmdbuf[1] = htole16(bsize);
/freebsd-10-stable/sys/kern/
H A Dvfs_bio.c2984 int bsize, maxsize, need_mapping, need_kva; local
3013 bsize = vn_isdisk(bp->b_vp, NULL) ? DEV_BSIZE : bp->b_bufobj->bo_bsize;
3014 offset = blkno * bsize;
3016 maxsize = imax(maxsize, bsize);
3101 int bsize, error, maxsize, vmio; local
3263 bsize = vn_isdisk(vp, NULL) ? DEV_BSIZE : bo->bo_bsize;
3264 offset = blkno * bsize;
3273 maxsize = imax(maxsize, bsize);
H A Dvfs_vnops.c2203 uint64_t bsize; local
2224 bsize = vp->v_mount->mnt_stat.f_iosize;
2225 for (bn = noff / bsize; noff < va.va_size; bn++, noff += bsize) {
2233 noff = bn * bsize;
/freebsd-10-stable/sys/dev/ixl/
H A Dixl_txrx.c1080 int i, bsize, error; local
1082 bsize = sizeof(struct ixl_rx_buf) * que->num_desc;
1084 (struct ixl_rx_buf *) malloc(bsize,
/freebsd-10-stable/sys/dev/ixgbe/
H A Dix_txrx.c1284 int bsize, error; local
1286 bsize = sizeof(struct ixgbe_rx_buf) * rxr->num_desc;
1287 rxr->rx_buffers = (struct ixgbe_rx_buf *)malloc(bsize, M_IXGBE,
H A Dixv_txrx.c1254 int bsize, error; local
1256 bsize = sizeof(struct ixgbe_rx_buf) * rxr->num_desc;
1257 rxr->rx_buffers = (struct ixgbe_rx_buf *)malloc(bsize, M_IXV,
/freebsd-10-stable/lib/libc/db/test/
H A Ddbtest.c623 if (!strcmp("bsize", s)) {
624 ih.bsize = atoi(eq);
/freebsd-10-stable/sys/dev/hatm/
H A Dif_hatm.c1150 WRITE4(sc, HE_REGO_RBP_BL(large, group), (q->bsize >> 2) & ~1);
1355 sc->rbp_s0.bsize = MBUF0_SIZE;
1362 sc->rbp_l0.bsize = MCLBYTES - MBUFL_OFFSET;
1379 sc->rbp_s1.bsize = MBUF1_SIZE;
H A Dif_hatmvar.h110 uint32_t bsize; /* buffer size in bytes */ member in struct:herbp
H A Dif_hatm_intr.c349 m->m_data, rbp->bsize, hatm_mbuf_helper,
/freebsd-10-stable/contrib/netbsd-tests/lib/libc/db/
H A Dh_db.c670 if (!strcmp("bsize", s)) {
671 ih.bsize = atoi(eq);
/freebsd-10-stable/include/rpcsvc/
H A Dnfs_prot.x287 unsigned bsize; /* fundamental file system block size */
/freebsd-10-stable/sys/dev/ath/
H A Dif_ath.c3329 int i, bsize, error; local
3343 bsize = sizeof(struct ath_buf) * nbuf;
3344 bf = malloc(bsize, M_ATHDEV, M_NOWAIT | M_ZERO);
3347 dd->dd_name, bsize);
3412 int i, bsize, error; local
3430 bsize = sizeof(struct ath_buf) * nbuf;
3431 bf = malloc(bsize, M_ATHDEV, M_NOWAIT | M_ZERO);
3434 dd->dd_name, bsize);
/freebsd-10-stable/contrib/sendmail/src/
H A Dconf.c3266 ** bsize -- a variable into which the filesystem
3274 ** Puts the filesystem block size into bsize.
3307 freediskspace(dir, bsize)
3309 long *bsize;
3312 if (bsize != NULL)
3313 *bsize = 4096L;
3360 if (bsize != NULL)
3361 *bsize = FSBLOCKSIZE;
/freebsd-10-stable/sys/dev/mwl/
H A Dif_mwl.c2126 int error, bsize, i; local
2137 bsize = mwl_txbuf * sizeof(struct mwl_txbuf);
2138 bf = malloc(bsize, M_MWLDEV, M_NOWAIT | M_ZERO);
2189 int error, jumbosize, bsize, i; local
2259 bsize = mwl_rxdesc * sizeof(struct mwl_rxbuf);
2260 bf = malloc(bsize, M_MWLDEV, M_NOWAIT | M_ZERO);
2262 if_printf(ifp, "malloc of %u rx buffers failed\n", bsize);
/freebsd-10-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_xar.c1103 atohex(unsigned char *b, size_t bsize, const char *p, size_t psize) argument
1105 size_t fbsize = bsize;
1107 while (bsize && psize > 1) {
1128 bsize--;
1132 return (fbsize - bsize);
/freebsd-10-stable/sys/contrib/ngatm/netnatm/msg/
H A Dunistruct.h138 u_int bsize; /* AAL1 SDT blocksize */ member in struct:uni_ie_aal::__anon7043::__anon7044
/freebsd-10-stable/sys/dev/drm2/radeon/
H A Devergreen_cs.c458 unsigned long tmp, nby, bsize, size, min = 0; local
464 bsize = radeon_bo_size(track->cb_color_bo[id]);
468 if ((tmp + size * mslice) <= bsize) {
478 if (tmp <= bsize) {
/freebsd-10-stable/contrib/amd/libamu/
H A Dmount_fs.c819 plog(XLOG_DEBUG, "NA->bsize = %d", nap->bsize);

Completed in 225 milliseconds

123456