| /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 | 354 vm_batchqueue_init(struct vm_batchqueue *bq) in vm_batchqueue_init() argument 357 bq->bq_cnt = 0; in vm_batchqueue_init() 361 vm_batchqueue_empty(const struct vm_batchqueue *bq) in vm_batchqueue_empty() argument 363 return (bq->bq_cnt == 0); in vm_batchqueue_empty() 367 vm_batchqueue_insert(struct vm_batchqueue *bq, vm_page_t m) in vm_batchqueue_insert() argument 371 slots_free = nitems(bq->bq_pa) - bq->bq_cnt; in vm_batchqueue_insert() 373 bq->bq_pa[bq->bq_cnt++] = m; in vm_batchqueue_insert() 380 vm_batchqueue_pop(struct vm_batchqueue *bq) in vm_batchqueue_pop() argument 383 if (bq->bq_cnt == 0) in vm_batchqueue_pop() 385 return (bq->bq_pa[--bq->bq_cnt]); in vm_batchqueue_pop()
|
| H A D | vm_pageout.c | 235 struct vm_batchqueue bq; member 257 vm_batchqueue_init(&ss->bq); in vm_pageout_init_scan() 305 ss->scanned < ss->maxscan && ss->bq.bq_cnt < VM_BATCHQUEUE_SIZE; in vm_pageout_collect_batch() 318 (void)vm_batchqueue_insert(&ss->bq, m); in vm_pageout_collect_batch() 330 vm_pagequeue_cnt_add(pq, -ss->bq.bq_cnt); in vm_pageout_collect_batch() 341 if (ss->bq.bq_cnt == 0) in vm_pageout_next() 343 return (vm_batchqueue_pop(&ss->bq)); in vm_pageout_next() 1392 vm_pageout_reinsert_inactive(struct scan_state *ss, struct vm_batchqueue *bq, in vm_pageout_reinsert_inactive() argument 1404 if (vm_batchqueue_insert(bq, m) != 0) in vm_pageout_reinsert_inactive() 1410 while ((m = vm_batchqueue_pop(bq)) != NULL) in vm_pageout_reinsert_inactive() [all …]
|
| H A D | vm_page.c | 3906 vm_pqbatch_process(struct vm_pagequeue *pq, struct vm_batchqueue *bq, in vm_pqbatch_process() argument 3911 for (i = 0; i < bq->bq_cnt; i++) in vm_pqbatch_process() 3912 vm_pqbatch_process_page(pq, bq->bq_pa[i], queue); in vm_pqbatch_process() 3913 vm_batchqueue_init(bq); in vm_pqbatch_process() 3926 struct vm_batchqueue *bq; in vm_page_pqbatch_submit() local 3934 bq = DPCPU_PTR(pqbatch[domain][queue]); in vm_page_pqbatch_submit() 3935 slots_remaining = vm_batchqueue_insert(bq, m); in vm_page_pqbatch_submit() 3937 /* keep building the bq */ in vm_page_pqbatch_submit() 3941 /* Try to process the bq if we can get the lock */ in vm_page_pqbatch_submit() 3944 vm_pqbatch_process(pq, bq, queu in vm_page_pqbatch_submit() [all...] |
| /freebsd/sys/kern/ |
| H A D | vfs_bio.c | 116 #define BQ_LOCKPTR(bq) (&(bq)->bq_lock) argument 117 #define BQ_LOCK(bq) mtx_lock(BQ_LOCKPTR((bq))) argument 118 #define BQ_UNLOCK(bq) mtx_unlock(BQ_LOCKPTR((bq))) argument 119 #define BQ_ASSERT_LOCKED(bq) mtx_assert(BQ_LOCKPTR((bq)), MA_OWNED) argument 197 static void bq_remove(struct bufqueue *bq, struct buf *bp); 198 static void bq_insert(struct bufqueue *bq, struct buf *bp, bool unlock); 200 static void bq_init(struct bufqueue *bq, int qindex, int cpu, 1579 struct bufqueue *bq, *nbq; in bufqueue_acquire() local 1586 bq = bufqueue(bp); in bufqueue_acquire() 1587 BQ_LOCK(bq); in bufqueue_acquire() [all …]
|
| /freebsd/sys/geom/virstor/ |
| H A D | g_virstor.c | 275 struct g_virstor_bio_q *bq; in virstor_ctl_add() local 440 bq = malloc(sizeof(*bq), M_GVIRSTOR, M_WAITOK); in virstor_ctl_add() 441 bq->bio = NULL; in virstor_ctl_add() 446 STAILQ_INSERT_TAIL(&sc->delayed_bio_q, bq, linkage); in virstor_ctl_add() 448 bq = STAILQ_FIRST(&sc->delayed_bio_q); in virstor_ctl_add() 449 if (bq->bio != NULL) { in virstor_ctl_add() 450 g_virstor_start(bq->bio); in virstor_ctl_add() 452 free(bq, M_GVIRSTOR); in virstor_ctl_add() 455 free(bq, M_GVIRSTOR); in virstor_ctl_add() 980 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/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() 199 struct bio_queue_head bq; in g_llvm_passdown() local 204 bioq_init(&bq); in g_llvm_passdown() 214 bioq_dismantle(&bq); in g_llvm_passdown() 222 bioq_insert_tail(&bq, cb); in g_llvm_passdown() 225 while ((cb = bioq_takefirst(&bq)) != NULL) { in g_llvm_passdown() 242 struct bio_queue_head bq; in g_llvm_start() local 267 bioq_init(&bq); in g_llvm_start() [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/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 | 275 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 | 472 get_next_redact_record(bqueue_t *bq, struct redact_record *prev) in get_next_redact_record() argument 474 struct redact_record *next = bqueue_dequeue(bq); in get_next_redact_record()
|
| H A D | dmu_send.c | 1275 get_next_range_nofree(bqueue_t *bq, struct send_range *prev) in get_next_range_nofree() argument 1277 struct send_range *next = bqueue_dequeue(bq); in get_next_range_nofree() 1287 get_next_range(bqueue_t *bq, struct send_range *prev) in get_next_range() argument 1289 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 | 22811 0c02 bq Aquaris E4.5 22813 903a bq Aquaris U
|
| /freebsd/contrib/ncurses/misc/ |
| H A D | terminfo.src | 22213 #### Bull (bq, dku, vip)
|