| /freebsd/sys/kern/ |
| H A D | subr_busdma_bounce.c | 110 struct bounce_zone *bz; in _bus_dmamap_reserve_pages() local 123 bz = dmat->bounce_zone; in _bus_dmamap_reserve_pages() 124 STAILQ_INSERT_TAIL(&bz->bounce_map_waitinglist, map, in _bus_dmamap_reserve_pages() 137 busdma_sysctl_tree(struct bounce_zone *bz) in busdma_sysctl_tree() argument 140 return (&bz->sysctl_tree); in busdma_sysctl_tree() 144 busdma_sysctl_tree_top(struct bounce_zone *bz) in busdma_sysctl_tree_top() argument 147 return (bz->sysctl_tree_top); in busdma_sysctl_tree_top() 169 struct bounce_zone *bz; in alloc_bounce_zone() local 173 STAILQ_FOREACH(bz, &bounce_zone_list, links) { in alloc_bounce_zone() 174 if ((dmat_alignment(dmat) <= bz->alignment) && in alloc_bounce_zone() [all …]
|
| H A D | subr_busdma_bufalloc.c | 78 struct busdma_bufzone *bz; in busdma_bufalloc_create() local 95 for (i = 0, bz = ba->buf_zones, cursize = ba->min_size; in busdma_bufalloc_create() 97 ++i, ++bz, cursize <<= 1) { in busdma_bufalloc_create() 98 snprintf(bz->name, sizeof(bz->name), "dma %.10s %ju", in busdma_bufalloc_create() 100 bz->size = cursize; in busdma_bufalloc_create() 101 bz->umazone = uma_zcreate(bz->name, bz->size, in busdma_bufalloc_create() 102 NULL, NULL, NULL, NULL, bz in busdma_bufalloc_create() 120 struct busdma_bufzone *bz; busdma_bufalloc_destroy() local 136 struct busdma_bufzone *bz; busdma_bufalloc_findzone() local [all...] |
| /freebsd/sys/net/ |
| H A D | bpf_zerocopy.c | 506 struct bpf_zbuf *bz) in bpf_zerocopy_ioctl_rotzbuf() argument 510 bzero(bz, sizeof(*bz)); in bpf_zerocopy_ioctl_rotzbuf() 515 bz->bz_bufa = (void *)bzh->zb_uaddr; in bpf_zerocopy_ioctl_rotzbuf() 516 bz->bz_buflen = d->bd_hlen; in bpf_zerocopy_ioctl_rotzbuf() 527 struct bpf_zbuf *bz) in bpf_zerocopy_ioctl_setzbuf() argument 538 if (bz->bz_bufa == NULL || bz->bz_bufb == NULL) in bpf_zerocopy_ioctl_setzbuf() 545 if (bz->bz_buflen == 0) in bpf_zerocopy_ioctl_setzbuf() 551 error = zbuf_setup(td, (vm_offset_t)bz->bz_bufa, bz->bz_buflen, in bpf_zerocopy_ioctl_setzbuf() 555 error = zbuf_setup(td, (vm_offset_t)bz->bz_bufb, bz->bz_buflen, in bpf_zerocopy_ioctl_setzbuf() 588 d->bd_bufsize = bz->bz_buflen - sizeof(struct bpf_zbuf_header); in bpf_zerocopy_ioctl_setzbuf()
|
| H A D | bpf_zerocopy.h | 52 struct bpf_zbuf *bz); 54 struct bpf_zbuf *bz);
|
| H A D | bpf.c | 582 bpf_ioctl_rotzbuf(struct thread *td, struct bpf_d *d, struct bpf_zbuf *bz) in bpf_ioctl_rotzbuf() argument 587 return (bpf_zerocopy_ioctl_rotzbuf(td, d, bz)); in bpf_ioctl_rotzbuf() 591 bpf_ioctl_setzbuf(struct thread *td, struct bpf_d *d, struct bpf_zbuf *bz) in bpf_ioctl_setzbuf() argument 596 return (bpf_zerocopy_ioctl_setzbuf(td, d, bz)); in bpf_ioctl_setzbuf()
|
| /freebsd/contrib/bzip2/ |
| H A D | FREEBSD-Xlist | 3 *bz-common.xsl 4 *bz-fo.xsl 5 *bz-html.xsl
|
| H A D | blocksort.c | 609 #define mnextswap(az,bz) \ argument 611 tz = nextLo[az]; nextLo[az] = nextLo[bz]; nextLo[bz] = tz; \ 612 tz = nextHi[az]; nextHi[az] = nextHi[bz]; nextHi[bz] = tz; \ 613 tz = nextD [az]; nextD [az] = nextD [bz]; nextD [bz] = tz; }
|
| /freebsd/sys/powerpc/powerpc/ |
| H A D | busdma_machdep.c | 210 struct bounce_zone *bz; in bus_dma_tag_create() local 218 bz = newtag->bounce_zone; in bus_dma_tag_create() 220 if (ptoa(bz->total_bpages) < maxsize) { in bus_dma_tag_create() 223 pages = atop(maxsize) - bz->total_bpages; in bus_dma_tag_create() 316 struct bounce_zone *bz; in bus_dmamap_create() local 323 bz = dmat->bounce_zone; in bus_dmamap_create() 334 || (bz->map_count > 0 && bz->total_bpages < maxpages)) { in bus_dmamap_create() 338 pages = MIN(maxpages - bz->total_bpages, pages); in bus_dmamap_create() 350 bz->map_count++; in bus_dmamap_create()
|
| /freebsd/sys/arm/arm/ |
| H A D | busdma_machdep.c | 437 struct bounce_zone *bz; in bus_dma_tag_create() 449 bz = newtag->bounce_zone; in bus_dma_tag_create() 451 if (ptoa(bz->total_bpages) < maxsize) { in bus_dma_tag_create() 454 pages = atop(maxsize) - bz->total_bpages; in bus_dma_tag_create() 522 struct bounce_zone *bz; in allocate_bz_and_pages() 529 bz = dmat->bounce_zone; in allocate_bz_and_pages() 542 maxpages = 2 * bz->map_count; in allocate_bz_and_pages() 544 (bz->map_count > 0 && bz->total_bpages < maxpages)) { in allocate_bz_and_pages() 548 pages = MIN(maxpages - bz in allocate_bz_and_pages() 433 struct bounce_zone *bz; bus_dma_tag_create() local 518 struct bounce_zone *bz; allocate_bz_and_pages() local 1123 struct bounce_zone *bz; bus_dmamap_unload() local [all...] |
| /freebsd/sys/riscv/riscv/ |
| H A D | busdma_bounce.c | 167 struct bounce_zone *bz; in bounce_bus_dma_tag_create() local 174 bz = newtag->bounce_zone; in bounce_bus_dma_tag_create() 176 if (ptoa(bz->total_bpages) < maxsize) { in bounce_bus_dma_tag_create() 179 pages = atop(round_page(maxsize)) - bz->total_bpages; in bounce_bus_dma_tag_create() 244 struct bounce_zone *bz; in bounce_bus_dmamap_create() local 280 bz = dmat->bounce_zone; in bounce_bus_dmamap_create() 294 (bz->map_count > 0 && bz->total_bpages < maxpages)) { in bounce_bus_dmamap_create() 296 pages = MIN(maxpages - bz->total_bpages, pages); in bounce_bus_dmamap_create() 309 bz->map_count++; in bounce_bus_dmamap_create()
|
| /freebsd/contrib/file/src/ |
| H A D | compress.c | 665 bz_stream bz; in uncompressbzlib() local 668 memset(&bz, 0, sizeof(bz)); in uncompressbzlib() 669 rc = BZ2_bzDecompressInit(&bz, 0, 0); in uncompressbzlib() 673 bz.next_in = CCAST(char *, RCAST(const char *, old)); in uncompressbzlib() 674 bz.avail_in = CAST(uint32_t, *n); in uncompressbzlib() 675 bz.next_out = RCAST(char *, *newch); in uncompressbzlib() 676 bz.avail_out = CAST(unsigned int, bytes_max); in uncompressbzlib() 678 rc = BZ2_bzDecompress(&bz); in uncompressbzlib() 680 BZ2_bzDecompressEnd(&bz); in uncompressbzlib() 686 *n = CAST(size_t, bz.total_out_lo32); in uncompressbzlib() [all …]
|
| /freebsd/sys/x86/x86/ |
| H A D | busdma_bounce.c | 144 struct bounce_zone *bz; in bounce_bus_dma_zone_setup() local 150 bz = dmat->bounce_zone; in bounce_bus_dma_zone_setup() 152 if (ptoa(bz->total_bpages) < dmat->common.maxsize) { in bounce_bus_dma_zone_setup() 155 pages = atop(dmat->common.maxsize) - bz->total_bpages; in bounce_bus_dma_zone_setup() 275 struct bounce_zone *bz; in bounce_bus_dmamap_create() local 314 bz = dmat->bounce_zone; in bounce_bus_dmamap_create() 326 (bz->map_count > 0 && bz->total_bpages < maxpages)) { in bounce_bus_dmamap_create() 329 pages = MIN(maxpages - bz->total_bpages, pages); in bounce_bus_dmamap_create() 342 bz->map_count++; in bounce_bus_dmamap_create()
|
| /freebsd/sys/arm64/arm64/ |
| H A D | busdma_bounce.c | 142 struct bounce_zone *bz; in bounce_bus_dma_zone_setup() local 156 bz = dmat->bounce_zone; in bounce_bus_dma_zone_setup() 158 if (ptoa(bz->total_bpages) < maxsize) { in bounce_bus_dma_zone_setup() 161 pages = atop(maxsize) + 1 - bz->total_bpages; in bounce_bus_dma_zone_setup() 387 struct bounce_zone *bz; in bounce_bus_dmamap_create() local 421 bz = dmat->bounce_zone; in bounce_bus_dmamap_create() 435 (bz->map_count > 0 && bz->total_bpages < maxpages)) { in bounce_bus_dmamap_create() 437 pages = MIN(maxpages - bz->total_bpages, pages); in bounce_bus_dmamap_create() 448 bz->map_count++; in bounce_bus_dmamap_create()
|
| /freebsd/usr.bin/gzip/tests/ |
| H A D | zdiff_test.sh | 74 cp foo.bz2 foo.bz 81 atf_check -s exit:1 -o file:"$(atf_get_srcdir)"/foo.diff zdiff foo.bz
|
| /freebsd/usr.bin/gzip/ |
| H A D | zdiff | 43 *[._-]bz)
|
| /freebsd/crypto/openssl/crypto/bn/asm/ |
| H A D | sparcv8.S | 56 bz .L_bn_mul_add_words_tail 122 bz .L_bn_mul_add_words_return 134 bz .L_bn_mul_add_words_return 169 bz .L_bn_mul_words_tail 221 bz .L_bn_mul_words_return 231 bz .L_bn_mul_words_return 261 bz .L_bn_sqr_words_tail 308 bz .L_bn_sqr_words_return 317 bz .L_bn_sqr_words_return 364 bz .L_bn_add_words_tail [all …]
|
| H A D | sparcv8plus.S | 190 bz,pn %icc,.L_bn_mul_add_words_tail 292 bz,pn %icc,.L_bn_mul_words_tail 380 bz,pn %icc,.L_bn_sqr_words_tail 481 bz,pn %icc,.L_bn_add_words_tail 559 bz,pn %icc,.L_bn_sub_words_tail
|
| /freebsd/contrib/libpcap/ |
| H A D | pcap-bpf.c | 334 struct bpf_zbuf bz; in pcap_next_zbuf() local 369 if (ioctl(p->fd, BIOCROTZBUF, &bz) < 0) { in pcap_next_zbuf() 416 if (ioctl(p->fd, BIOCROTZBUF, &bz) < 0) { in pcap_next_zbuf() 1910 struct bpf_zbuf bz; local 2175 memset(&bz, 0, sizeof(bz)); /* bzero() deprecated, replaced with memset() */ 2176 bz.bz_bufa = pb->zbuf1; 2177 bz.bz_bufb = pb->zbuf2; 2178 bz.bz_buflen = pb->zbufsize; 2179 if (ioctl(fd, BIOCSETZBUF, (caddr_t)&bz) < 0) {
|
| /freebsd/usr.bin/grep/ |
| H A D | zgrep.sh | 53 bz*)
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | sendmail | 16 # freezed configuration file (dbm format?) created from sendmail.cf with -bz
|
| /freebsd/sys/contrib/dev/iwlwifi/ |
| H A D | zzz_fw_ports_fwget.sh | 40 if [ ! -d cfg/ -o ! -e cfg/bz.c ]; then
|
| /freebsd/crypto/openssl/crypto/ |
| H A D | sparccpuid.S | 398 bz .v9aligned 423 bz .v8aligned 552 bz .Ldone2
|
| /freebsd/sys/ofed/drivers/infiniband/ulp/sdp/ |
| H A D | sdp.h | 127 struct bzcopy_state *bz; member 136 #define BZCOPY_STATE(mb) (SDP_SKB_CB(mb)->bz)
|
| /freebsd/sys/modules/iwlwifi/ |
| H A D | Makefile | 20 SRCS+= cfg/bz.c cfg/sc.c cfg/dr.c
|
| /freebsd/share/misc/ |
| H A D | committers-src.dot | 147 bz [label="Bjoern A. Zeeb\nbz@FreeBSD.org\n2004/07/27"] 499 bz -> anchie 500 bz -> jamie 501 bz -> syrinx 502 bz -> dsl 932 rwatson -> bz
|