/freebsd/bin/sh/tests/parameters/ |
H A D | positional2.0 | 21 testcase 'set -- a b; set -- p$@q' '2|pa|bq' 22 testcase 'set -- a b; set -- $@q' '2|a|bq' 24 testcase 'set -- a b; set -- p$@q' '2|pa|bq' 25 testcase 'set -- a b; set -- $@q' '2|a|bq' 27 testcase 'set -- a b; set -- p$*q' '2|pa|bq' 28 testcase 'set -- a b; set -- $*q' '2|a|bq' 30 testcase 'set -- a b; set -- p$*q' '2|pa|bq' 31 testcase 'set -- a b; set -- $*q' '2|a|bq' 33 testcase 'set -- a b; set -- "p$@q"' '2|pa|bq' 34 testcase 'set -- a b; set -- "$@q"' '2|a|bq' [all …]
|
/freebsd/sys/vm/ |
H A D | vm_pagequeue.h | 357 vm_batchqueue_init(struct vm_batchqueue *bq) in vm_batchqueue_init() argument 360 bq->bq_cnt = 0; in vm_batchqueue_init() 364 vm_batchqueue_empty(const struct vm_batchqueue *bq) in vm_batchqueue_empty() argument 366 return (bq->bq_cnt == 0); in vm_batchqueue_empty() 370 vm_batchqueue_insert(struct vm_batchqueue *bq, vm_page_t m) in vm_batchqueue_insert() argument 374 slots_free = nitems(bq->bq_pa) - bq->bq_cnt; in vm_batchqueue_insert() 376 bq->bq_pa[bq->bq_cnt++] = m; in vm_batchqueue_insert() 383 vm_batchqueue_pop(struct vm_batchqueue *bq) in vm_batchqueue_pop() argument 386 if (bq->bq_cnt == 0) in vm_batchqueue_pop() 388 return (bq->bq_pa[--bq->bq_cnt]); in vm_batchqueue_pop()
|
H A D | vm_pageout.c | 211 struct vm_batchqueue bq; member 233 vm_batchqueue_init(&ss->bq); in vm_pageout_init_scan() 281 ss->scanned < ss->maxscan && ss->bq.bq_cnt < VM_BATCHQUEUE_SIZE; in vm_pageout_collect_batch() 294 (void)vm_batchqueue_insert(&ss->bq, m); in vm_pageout_collect_batch() 306 vm_pagequeue_cnt_add(pq, -ss->bq.bq_cnt); in vm_pageout_collect_batch() 317 if (ss->bq.bq_cnt == 0) in vm_pageout_next() 319 return (vm_batchqueue_pop(&ss->bq)); in vm_pageout_next() 1367 vm_pageout_reinsert_inactive(struct scan_state *ss, struct vm_batchqueue *bq, in vm_pageout_reinsert_inactive() argument 1379 if (vm_batchqueue_insert(bq, m) != 0) in vm_pageout_reinsert_inactive() 1385 while ((m = vm_batchqueue_pop(bq)) != NULL) in vm_pageout_reinsert_inactive() [all …]
|
H A D | vm_page.c | 3988 vm_pqbatch_process(struct vm_pagequeue *pq, struct vm_batchqueue *bq, in vm_pqbatch_process() argument 3993 for (i = 0; i < bq->bq_cnt; i++) in vm_pqbatch_process() 3994 vm_pqbatch_process_page(pq, bq->bq_pa[i], queue); in vm_pqbatch_process() 3995 vm_batchqueue_init(bq); in vm_pqbatch_process() 4008 struct vm_batchqueue *bq; in vm_page_pqbatch_submit() local 4016 bq = DPCPU_PTR(pqbatch[domain][queue]); in vm_page_pqbatch_submit() 4017 slots_remaining = vm_batchqueue_insert(bq, m); in vm_page_pqbatch_submit() 4026 vm_pqbatch_process(pq, bq, queue); in vm_page_pqbatch_submit() 4039 bq = DPCPU_PTR(pqbatch[domain][queue]); in vm_page_pqbatch_submit() 4040 vm_pqbatch_process(pq, bq, queue); in vm_page_pqbatch_submit()
|
/freebsd/sys/kern/ |
H A D | vfs_bio.c | 114 #define BQ_LOCKPTR(bq) (&(bq)->bq_lock) argument 115 #define BQ_LOCK(bq) mtx_lock(BQ_LOCKPTR((bq))) argument 116 #define BQ_UNLOCK(bq) mtx_unlock(BQ_LOCKPTR((bq))) argument 117 #define BQ_ASSERT_LOCKED(bq) mtx_assert(BQ_LOCKPTR((bq)), MA_OWNED) argument 195 static void bq_remove(struct bufqueue *bq, struct buf *bp); 196 static void bq_insert(struct bufqueue *bq, struct buf *bp, bool unlock); 198 static void bq_init(struct bufqueue *bq, int qindex, int cpu, 1577 struct bufqueue *bq, *nbq; in bufqueue_acquire() local 1584 bq = bufqueue(bp); in bufqueue_acquire() 1585 BQ_LOCK(bq); in bufqueue_acquire() [all …]
|
/freebsd/sys/geom/virstor/ |
H A D | g_virstor.c | 268 struct g_virstor_bio_q *bq; in virstor_ctl_add() local 410 bq = malloc(sizeof(*bq), M_GVIRSTOR, M_WAITOK); in virstor_ctl_add() 411 bq->bio = NULL; in virstor_ctl_add() 416 STAILQ_INSERT_TAIL(&sc->delayed_bio_q, bq, linkage); in virstor_ctl_add() 418 bq = STAILQ_FIRST(&sc->delayed_bio_q); in virstor_ctl_add() 419 if (bq->bio != NULL) { in virstor_ctl_add() 420 g_virstor_start(bq->bio); in virstor_ctl_add() 422 free(bq, M_GVIRSTOR); in virstor_ctl_add() 425 free(bq, M_GVIRSTOR); in virstor_ctl_add() 950 struct g_virstor_bio_q *bq; in virstor_geom_destroy() local [all …]
|
/freebsd/sys/geom/ |
H A D | geom_io.c | 97 g_bioq_lock(struct g_bioq *bq) in g_bioq_lock() argument 100 mtx_lock(&bq->bio_queue_lock); in g_bioq_lock() 104 g_bioq_unlock(struct g_bioq *bq) in g_bioq_unlock() argument 107 mtx_unlock(&bq->bio_queue_lock); in g_bioq_unlock() 112 g_bioq_destroy(struct g_bioq *bq) 115 mtx_destroy(&bq->bio_queue_lock); 120 g_bioq_init(struct g_bioq *bq) in g_bioq_init() argument 123 TAILQ_INIT(&bq->bio_queue); in g_bioq_init() 124 mtx_init(&bq->bio_queue_lock, "bio queue", NULL, MTX_DEF); in g_bioq_init() 128 g_bioq_first(struct g_bioq *bq) in g_bioq_first() argument [all …]
|
/freebsd/sys/contrib/device-tree/src/arm/mediatek/ |
H A D | mt6589-aquaris5.dts | 12 model = "bq Aquaris5"; 13 compatible = "mundoreader,bq-aquaris5", "mediatek,mt6589";
|
/freebsd/stand/i386/libi386/ |
H A D | biosmem.c | 229 int bq = bios_getquirks(); in command_biosmem() local 236 printf("bios_quirks: 0x%02x", bq); in command_biosmem() 237 if (bq & BQ_DISTRUST_E820_EXTMEM) in command_biosmem()
|
/freebsd/sys/geom/linux_lvm/ |
H A D | g_linux_lvm.c | 151 bioq_dismantle(struct bio_queue_head *bq) in bioq_dismantle() argument 155 for (b = bioq_first(bq); b != NULL; b = bioq_first(bq)) { in bioq_dismantle() 156 bioq_remove(bq, b); in bioq_dismantle() 200 struct bio_queue_head bq; in g_llvm_start() local 225 bioq_init(&bq); in g_llvm_start() 238 bioq_dismantle(&bq); in g_llvm_start() 283 bioq_disksort(&bq, cb); in g_llvm_start() 299 for (cb = bioq_first(&bq); cb != NULL; cb = bioq_first(&bq)) { in g_llvm_start() 300 bioq_remove(&bq, cb); in g_llvm_start()
|
/freebsd/sys/contrib/device-tree/src/arm/rockchip/ |
H A D | rk3066a-bqcurie2.dts | 12 model = "bq Curie 2"; 13 compatible = "mundoreader,bq-curie2", "rockchip,rk3066a";
|
H A D | rk3188-bqedison2qc.dts | 4 * Author: Heiko Stuebner <heiko.stuebner@bq.com> 15 compatible = "mundoreader,bq-edison2qc", "rockchip,rk3188";
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86InstrExtension.td | 140 "movs{bq|x}\t{$src, $dst|$dst, $src}", 144 "movs{bq|x}\t{$src, $dst|$dst, $src}", 187 "movz{bq|x}\t{$src, $dst|$dst, $src}", []>, 191 "movz{bq|x}\t{$src, $dst|$dst, $src}", []>,
|
H A D | X86InstrSSE.td | 5053 defm BQ : SS41I_pmovx_rm<0x22, "bq", i16mem, i32mem, NoVLX>;
|
/freebsd/sys/contrib/device-tree/src/arm64/qcom/ |
H A D | msm8916-longcheer-l8910.dts | 240 model = "bq-paella";
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | T.sub | 156 bq x x
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | dmu_redact.c | 485 get_next_redact_record(bqueue_t *bq, struct redact_record *prev) in get_next_redact_record() argument 487 struct redact_record *next = bqueue_dequeue(bq); in get_next_redact_record()
|
H A D | dmu_send.c | 1273 get_next_range_nofree(bqueue_t *bq, struct send_range *prev) in get_next_range_nofree() argument 1275 struct send_range *next = bqueue_dequeue(bq); in get_next_range_nofree() 1285 get_next_range(bqueue_t *bq, struct send_range *prev) in get_next_range() argument 1287 struct send_range *next = get_next_range_nofree(bq, prev); in get_next_range()
|
/freebsd/sys/cam/ |
H A D | cam_iosched.c | 2070 static int biolen(struct bio_queue_head *bq) in biolen() argument 2075 TAILQ_FOREACH(bp, &bq->queue, bio_queue) { in biolen()
|
/freebsd/crypto/heimdal/lib/wind/ |
H A D | rfc3490.txt | 649 which includes the following: "bl--", "bq--", "dq--", "lq--", "mq--",
|
/freebsd/crypto/openssl/test/recipes/30-test_evp_data/ |
H A D | evppkey_kas.txt | 6224 +bq+2+QlM5gpCzQBL7E0vFkUdXLmKmD1yszth7D40f98BJ3+lpKhbANqAAQAOGhw
|
/freebsd/share/misc/ |
H A D | usb_vendors | 22753 0c02 bq Aquaris E4.5 22755 903a bq Aquaris U
|
/freebsd/contrib/ncurses/misc/ |
H A D | terminfo.src | 21805 #### Bull (bq, dku, vip)
|