/linux-4.1.27/arch/parisc/kernel/ |
D | entry.S | 176 bv,n 0(%r3) 795 bv %r0(%r2) 804 bv %r0(%r2) 964 bv %r0(%r20) 1767 bv %r0(%r2) 1995 bv %r0(%rp) 2036 bv (%rp) 2055 bv %r0(%r25) /* r0 */ 2057 bv %r0(%r25) /* r1 - shadowed */ 2059 bv %r0(%r25) /* r2 */ [all …]
|
D | real2.S | 98 bv 0(%r31) 120 bv 0(%rp) 140 bv 0(%r2) 154 bv 0(%r2) 192 bv 0(%r2) 226 bv 0(%r2) 272 bv 0(%r31) 285 bv 0(%rp) 300 bv %r0(%r2)
|
D | hpmc.S | 163 bv (r3) /* call pdce_proc */ 178 bv (%r3) /* call pdce_proc */ 208 bv (%r3) /* call pdce_proc */ 230 bv (%r5) 278 bv (%r3) /* call pdce_proc */
|
D | pacache.S | 188 2: bv %r0(%r2) 255 bv %r0(%r2) 323 bv %r0(%r2) 420 bv %r0(%r2) 538 bv %r0(%r2) 740 bv %r0(%r2) 826 bv %r0(%r2) 902 bv %r0(%r2) 980 bv %r0(%r2) 1023 bv %r0(%r2) [all …]
|
D | head.S | 182 bv (%rp) 202 bv (%r3)
|
/linux-4.1.27/drivers/s390/block/ |
D | dasd_fba.c | 263 struct bio_vec bv; in dasd_fba_build_cp() local 285 rq_for_each_segment(bv, req, iter) { in dasd_fba_build_cp() 286 if (bv.bv_len & (blksize - 1)) in dasd_fba_build_cp() 289 count += bv.bv_len >> (block->s2b_shift + 9); in dasd_fba_build_cp() 290 if (idal_is_needed (page_address(bv.bv_page), bv.bv_len)) in dasd_fba_build_cp() 291 cidaw += bv.bv_len / blksize; in dasd_fba_build_cp() 326 rq_for_each_segment(bv, req, iter) { in dasd_fba_build_cp() 327 dst = page_address(bv.bv_page) + bv.bv_offset; in dasd_fba_build_cp() 332 memcpy(copy + bv.bv_offset, dst, bv.bv_len); in dasd_fba_build_cp() 334 dst = copy + bv.bv_offset; in dasd_fba_build_cp() [all …]
|
D | dasd_diag.c | 507 struct bio_vec bv; in dasd_diag_build_cp() local 527 rq_for_each_segment(bv, req, iter) { in dasd_diag_build_cp() 528 if (bv.bv_len & (blksize - 1)) in dasd_diag_build_cp() 531 count += bv.bv_len >> (block->s2b_shift + 9); in dasd_diag_build_cp() 547 rq_for_each_segment(bv, req, iter) { in dasd_diag_build_cp() 548 dst = page_address(bv.bv_page) + bv.bv_offset; in dasd_diag_build_cp() 549 for (off = 0; off < bv.bv_len; off += blksize) { in dasd_diag_build_cp()
|
D | scm_blk_cluster.c | 138 struct bio_vec bv; in scm_prepare_cluster_request() local 183 rq_for_each_segment(bv, req, iter) { in scm_prepare_cluster_request() 184 aidaw->data_addr = (u64) page_address(bv.bv_page); in scm_prepare_cluster_request()
|
D | dasd_eckd.c | 2589 struct bio_vec bv; in dasd_eckd_build_cp_cmd_single() local 2610 rq_for_each_segment(bv, req, iter) { in dasd_eckd_build_cp_cmd_single() 2611 if (bv.bv_len & (blksize - 1)) in dasd_eckd_build_cp_cmd_single() 2614 count += bv.bv_len >> (block->s2b_shift + 9); in dasd_eckd_build_cp_cmd_single() 2615 if (idal_is_needed (page_address(bv.bv_page), bv.bv_len)) in dasd_eckd_build_cp_cmd_single() 2616 cidaw += bv.bv_len >> (block->s2b_shift + 9); in dasd_eckd_build_cp_cmd_single() 2685 rq_for_each_segment(bv, req, iter) { in dasd_eckd_build_cp_cmd_single() 2686 dst = page_address(bv.bv_page) + bv.bv_offset; in dasd_eckd_build_cp_cmd_single() 2691 memcpy(copy + bv.bv_offset, dst, bv.bv_len); in dasd_eckd_build_cp_cmd_single() 2693 dst = copy + bv.bv_offset; in dasd_eckd_build_cp_cmd_single() [all …]
|
D | scm_blk.c | 190 struct bio_vec bv; in scm_request_prepare() local 203 rq_for_each_segment(bv, req, iter) { in scm_request_prepare() 204 WARN_ON(bv.bv_offset); in scm_request_prepare() 205 msb->blk_count += bv.bv_len >> 12; in scm_request_prepare() 206 aidaw->data_addr = (u64) page_address(bv.bv_page); in scm_request_prepare()
|
/linux-4.1.27/drivers/md/bcache/ |
D | util.c | 228 struct bio_vec *bv = bio->bi_io_vec; in bch_bio_map() local 233 bv->bv_offset = base ? ((unsigned long) base) % PAGE_SIZE : 0; in bch_bio_map() 236 for (; size; bio->bi_vcnt++, bv++) { in bch_bio_map() 237 bv->bv_offset = 0; in bch_bio_map() 238 start: bv->bv_len = min_t(size_t, PAGE_SIZE - bv->bv_offset, in bch_bio_map() 241 bv->bv_page = is_vmalloc_addr(base) in bch_bio_map() 245 base += bv->bv_len; in bch_bio_map() 248 size -= bv->bv_len; in bch_bio_map()
|
D | debug.c | 109 struct bio_vec bv, *bv2; in bch_data_verify() local 122 bio_for_each_segment(bv, bio, iter) { in bch_data_verify() 123 void *p1 = kmap_atomic(bv.bv_page); in bch_data_verify() 126 cache_set_err_on(memcmp(p1 + bv.bv_offset, in bch_data_verify() 127 p2 + bv.bv_offset, in bch_data_verify() 128 bv.bv_len), in bch_data_verify()
|
D | io.c | 17 struct bio_vec bv; in bch_bio_max_sectors() local 24 bio_for_each_segment(bv, bio, iter) { in bch_bio_max_sectors() 37 q->merge_bvec_fn(q, &bvm, &bv) < (int) bv.bv_len) in bch_bio_max_sectors() 41 ret += bv.bv_len >> 9; in bch_bio_max_sectors()
|
D | movinggc.c | 47 struct bio_vec *bv; in write_moving_finish() local 50 bio_for_each_segment_all(bv, bio, i) in write_moving_finish() 51 __free_page(bv->bv_page); in write_moving_finish()
|
D | request.c | 40 struct bio_vec bv; in bio_csum() local 44 bio_for_each_segment(bv, bio, iter) { in bio_csum() 45 void *d = kmap(bv.bv_page) + bv.bv_offset; in bio_csum() 46 csum = bch_crc64_update(csum, d, bv.bv_len); in bio_csum() 47 kunmap(bv.bv_page); in bio_csum() 690 struct bio_vec *bv; in cached_dev_cache_miss_done() local 692 bio_for_each_segment_all(bv, s->iop.bio, i) in cached_dev_cache_miss_done() 693 __free_page(bv->bv_page); in cached_dev_cache_miss_done()
|
D | journal.h | 153 struct bio_vec bv[8]; member
|
D | writeback.c | 132 struct bio_vec *bv; in write_dirty_finish() local 135 bio_for_each_segment_all(bv, &io->bio, i) in write_dirty_finish() 136 __free_page(bv->bv_page); in write_dirty_finish()
|
D | btree.c | 365 struct bio_vec *bv; in btree_node_write_done() local 368 bio_for_each_segment_all(bv, b->bio, n) in btree_node_write_done() 369 __free_page(bv->bv_page); in btree_node_write_done() 425 struct bio_vec *bv; in do_btree_node_write() local 428 bio_for_each_segment_all(bv, b->bio, j) in do_btree_node_write() 429 memcpy(page_address(bv->bv_page), in do_btree_node_write()
|
/linux-4.1.27/fs/cifs/ |
D | cifs_debug.c | 259 bool bv; in cifs_stats_proc_write() local 270 if (strtobool(&c, &bv) == 0) { in cifs_stats_proc_write() 437 bool bv; in cifsFYI_proc_write() local 443 if (strtobool(&c, &bv) == 0) in cifsFYI_proc_write() 444 cifsFYI = bv; in cifsFYI_proc_write() 475 bool bv; in cifs_linux_ext_proc_write() local 482 rc = strtobool(&c, &bv); in cifs_linux_ext_proc_write() 486 linuxExtEnabled = bv; in cifs_linux_ext_proc_write() 515 bool bv; in cifs_lookup_cache_proc_write() local 522 rc = strtobool(&c, &bv); in cifs_lookup_cache_proc_write() [all …]
|
/linux-4.1.27/arch/parisc/lib/ |
D | fixup.S | 72 bv %r0(%r1) 80 bv %r0(%r1) 88 bv %r0(%r1) 95 bv %r0(%r1)
|
D | lusercopy.S | 60 bv %r0(%r1) 81 bv %r0(%r2) 116 bv %r0(%r2)
|
/linux-4.1.27/fs/ext4/ |
D | readpage.c | 59 struct bio_vec *bv; in completion_pages() local 62 bio_for_each_segment_all(bv, bio, i) { in completion_pages() 63 struct page *page = bv->bv_page; in completion_pages() 103 struct bio_vec *bv; in mpage_end_io() local 118 bio_for_each_segment_all(bv, bio, i) { in mpage_end_io() 119 struct page *page = bv->bv_page; in mpage_end_io()
|
/linux-4.1.27/block/ |
D | blk-merge.c | 16 struct bio_vec bv, bvprv = { NULL }; in __blk_recalc_rq_segments() local 41 bio_for_each_segment(bv, bio, iter) { in __blk_recalc_rq_segments() 54 high = page_to_pfn(bv.bv_page) > queue_bounce_pfn(q); in __blk_recalc_rq_segments() 56 if (seg_size + bv.bv_len in __blk_recalc_rq_segments() 59 if (!BIOVEC_PHYS_MERGEABLE(&bvprv, &bv)) in __blk_recalc_rq_segments() 61 if (!BIOVEC_SEG_BOUNDARY(q, &bvprv, &bv)) in __blk_recalc_rq_segments() 64 seg_size += bv.bv_len; in __blk_recalc_rq_segments() 65 bvprv = bv; in __blk_recalc_rq_segments() 74 bvprv = bv; in __blk_recalc_rq_segments() 75 seg_size = bv.bv_len; in __blk_recalc_rq_segments()
|
D | bio.c | 161 void bvec_free(mempool_t *pool, struct bio_vec *bv, unsigned int idx) in bvec_free() argument 166 mempool_free(bv, pool); in bvec_free() 170 kmem_cache_free(bvs->slab, bv); in bvec_free() 505 struct bio_vec bv; in zero_fill_bio() local 508 bio_for_each_segment(bv, bio, iter) { in zero_fill_bio() 509 char *data = bvec_kmap_irq(&bv, &flags); in zero_fill_bio() 510 memset(data, 0, bv.bv_len); in zero_fill_bio() 511 flush_dcache_page(bv.bv_page); in zero_fill_bio() 619 struct bio_vec bv; in bio_clone_bioset() local 661 bio_for_each_segment(bv, bio_src, iter) in bio_clone_bioset() [all …]
|
D | bio-integrity.c | 220 struct bio_vec bv; in bio_integrity_process() local 231 bio_for_each_segment(bv, bio, bviter) { in bio_integrity_process() 232 void *kaddr = kmap_atomic(bv.bv_page); in bio_integrity_process() 234 iter.data_buf = kaddr + bv.bv_offset; in bio_integrity_process() 235 iter.data_size = bv.bv_len; in bio_integrity_process()
|
/linux-4.1.27/drivers/gpu/drm/i915/ |
D | intel_tv.c | 95 u16 rv, gv, bv, av; member 223 .rv = 0x0340, .gv = 0x030c, .bv = 0x06d0, .av = 0x0200, 233 .rv = 0x037a, .gv = 0x033d, .bv = 0x06f6, .av = 0x0200, 243 .rv = 0x035a, .gv = 0x0322, .bv = 0x06e1, .av = 0x0200, 253 .rv = 0x0399, .gv = 0x0356, .bv = 0x070a, .av = 0x0200, 263 .rv = 0x0353, .gv = 0x031c, .bv = 0x06dc, .av = 0x0200, 273 .rv = 0x0390, .gv = 0x034f, .bv = 0x0705, .av = 0x0200, 283 .rv = 0x0340, .gv = 0x030c, .bv = 0x06d0, .av = 0x0200, 293 .rv = 0x037a, .gv = 0x033d, .bv = 0x06f6, .av = 0x0200, 303 .rv = 0x0340, .gv = 0x030c, .bv = 0x06d0, .av = 0x0200, [all …]
|
/linux-4.1.27/include/linux/ |
D | bio.h | 154 #define bvec_to_phys(bv) (page_to_phys((bv)->bv_page) + (unsigned long) (bv)->bv_offset) argument 207 static inline void bvec_iter_advance(struct bio_vec *bv, struct bvec_iter *iter, in bvec_iter_advance() argument 214 unsigned len = min(bytes, bvec_iter_len(bv, *iter)); in bvec_iter_advance() 220 if (iter->bi_bvec_done == __bvec_iter_bvec(bv, *iter)->bv_len) { in bvec_iter_advance() 259 struct bio_vec bv; in bio_segments() local 273 bio_for_each_segment(bv, bio, iter) in bio_segments()
|
/linux-4.1.27/drivers/block/zram/ |
D | zram_drv.c | 948 struct bio_vec bv; in __zram_make_request() local 950 bv.bv_page = bvec.bv_page; in __zram_make_request() 951 bv.bv_len = max_transfer_size; in __zram_make_request() 952 bv.bv_offset = bvec.bv_offset; in __zram_make_request() 954 if (zram_bvec_rw(zram, &bv, index, offset, rw) < 0) in __zram_make_request() 957 bv.bv_len = bvec.bv_len - max_transfer_size; in __zram_make_request() 958 bv.bv_offset += max_transfer_size; in __zram_make_request() 959 if (zram_bvec_rw(zram, &bv, index + 1, 0, rw) < 0) in __zram_make_request() 1022 struct bio_vec bv; in zram_rw_page() local 1037 bv.bv_page = page; in zram_rw_page() [all …]
|
/linux-4.1.27/scripts/ |
D | sortextable.h | 83 Elf_Addr bv = _r(b); in compare_extable() local 85 if (av < bv) in compare_extable() 87 if (av > bv) in compare_extable()
|
D | sortextable.c | 199 int32_t bv = (int32_t)r(b); in compare_relative_table() local 201 if (av < bv) in compare_relative_table() 203 if (av > bv) in compare_relative_table()
|
/linux-4.1.27/drivers/block/aoe/ |
D | aoecmd.c | 300 struct bio_vec bv; in skb_fillup() local 302 __bio_for_each_segment(bv, bio, iter, iter) in skb_fillup() 303 skb_fill_page_desc(skb, frag++, bv.bv_page, in skb_fillup() 304 bv.bv_offset, bv.bv_len); in skb_fillup() 869 struct bio_vec bv; in bio_pageinc() local 873 bio_for_each_segment(bv, bio, iter) { in bio_pageinc() 877 page = compound_head(bv.bv_page); in bio_pageinc() 886 struct bio_vec bv; in bio_pagedec() local 889 bio_for_each_segment(bv, bio, iter) { in bio_pagedec() 890 page = compound_head(bv.bv_page); in bio_pagedec() [all …]
|
/linux-4.1.27/drivers/media/usb/usbvision/ |
D | usbvision-core.c | 497 unsigned char rv, gv, bv; /* RGB components */ in usbvision_parse_lines_422() local 526 YUV_TO_RGB_BY_THE_BOOK(yuyv[0], yuyv[1], yuyv[3], rv, gv, bv); in usbvision_parse_lines_422() 532 (0xF8 & bv); in usbvision_parse_lines_422() 537 *f++ = bv; in usbvision_parse_lines_422() 542 *f++ = bv; in usbvision_parse_lines_422() 549 (0x7C & (bv << 2)); in usbvision_parse_lines_422() 560 YUV_TO_RGB_BY_THE_BOOK(yuyv[2], yuyv[1], yuyv[3], rv, gv, bv); in usbvision_parse_lines_422() 566 (0xF8 & bv); in usbvision_parse_lines_422() 571 *f++ = bv; in usbvision_parse_lines_422() 576 *f++ = bv; in usbvision_parse_lines_422() [all …]
|
/linux-4.1.27/drivers/md/ |
D | dm-log-writes.c | 550 struct bio_vec bv; in log_writes_map() local 630 bio_for_each_segment(bv, bio, iter) { in log_writes_map() 644 src = kmap_atomic(bv.bv_page); in log_writes_map() 646 memcpy(dst, src + bv.bv_offset, bv.bv_len); in log_writes_map() 650 block->vecs[i].bv_len = bv.bv_len; in log_writes_map()
|
D | dm-verity.c | 409 struct bio_vec bv = bio_iter_iovec(bio, io->iter); in verity_verify_io() local 411 page = kmap_atomic(bv.bv_page); in verity_verify_io() 412 len = bv.bv_len; in verity_verify_io() 415 r = crypto_shash_update(desc, page + bv.bv_offset, len); in verity_verify_io()
|
D | dm-crypt.c | 1026 struct bio_vec *bv; in crypt_free_buffer_pages() local 1028 bio_for_each_segment_all(bv, clone, i) { in crypt_free_buffer_pages() 1029 BUG_ON(!bv->bv_page); in crypt_free_buffer_pages() 1030 mempool_free(bv->bv_page, cc->page_pool); in crypt_free_buffer_pages() 1031 bv->bv_page = NULL; in crypt_free_buffer_pages()
|
D | raid1.c | 147 struct bio_vec *bv; in r1buf_pool_alloc() local 149 bio_for_each_segment_all(bv, r1_bio->bios[j], i) in r1buf_pool_alloc() 150 __free_page(bv->bv_page); in r1buf_pool_alloc()
|
/linux-4.1.27/drivers/video/fbdev/omap2/displays-new/ |
D | panel-sony-acx565akm.c | 327 int bv; in acx565akm_set_brightness() local 329 bv = level | (1 << 8); in acx565akm_set_brightness() 330 acx565akm_write(ddata, MIPID_CMD_WRITE_DISP_BRIGHTNESS, (u8 *)&bv, 2); in acx565akm_set_brightness() 340 u8 bv; in acx565akm_get_actual_brightness() local 342 acx565akm_read(ddata, MIPID_CMD_READ_DISP_BRIGHTNESS, &bv, 1); in acx565akm_get_actual_brightness() 344 return bv; in acx565akm_get_actual_brightness()
|
/linux-4.1.27/fs/ |
D | mpage.c | 47 struct bio_vec *bv; in mpage_end_io() local 50 bio_for_each_segment_all(bv, bio, i) { in mpage_end_io() 51 struct page *page = bv->bv_page; in mpage_end_io()
|
/linux-4.1.27/fs/exofs/ |
D | ore.c | 407 struct bio_vec *bv; in _clear_bio() local 410 bio_for_each_segment_all(bv, bio, i) { in _clear_bio() 411 unsigned this_count = bv->bv_len; in _clear_bio() 414 clear_highpage(bv->bv_page); in _clear_bio() 416 zero_user(bv->bv_page, bv->bv_offset, this_count); in _clear_bio()
|
D | ore_raid.c | 430 struct bio_vec *bv; in _mark_read4write_pages_uptodate() local 440 bio_for_each_segment_all(bv, bio, i) { in _mark_read4write_pages_uptodate() 441 struct page *page = bv->bv_page; in _mark_read4write_pages_uptodate()
|
/linux-4.1.27/mm/ |
D | page_io.c | 267 struct bio_vec bv = { in __swap_writepage() local 274 iov_iter_bvec(&from, ITER_BVEC | WRITE, &bv, 1, PAGE_SIZE); in __swap_writepage()
|
/linux-4.1.27/fs/debugfs/ |
D | file.c | 470 bool bv; in write_file_bool() local 478 if (strtobool(buf, &bv) == 0) in write_file_bool() 479 *val = bv; in write_file_bool()
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192cu/ |
D | trx.c | 370 bool bv; in _rtl_rx_process() local 420 bv = ieee80211_is_probe_resp(fc); in _rtl_rx_process() 421 if (bv) in _rtl_rx_process()
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
D | ni_dpm.h | 80 u32 bv; member
|
D | si_dpm.c | 1773 s64 temperature, t_slope, t_intercept, av, bv, t_ref; in si_calculate_leakage_for_v_and_t_formula() local 1783 bv = div64_s64(drm_int2fixp(coeff->bv), 100000000); in si_calculate_leakage_for_v_and_t_formula() 1789 kv = drm_fixp_mul(av, drm_fixp_exp(drm_fixp_mul(bv, vddc))); in si_calculate_leakage_for_v_and_t_formula() 1817 drm_fixp_exp(drm_fixp_mul(div64_s64(drm_int2fixp(coeff->bv), 100000000), vddc))); in si_calculate_leakage_for_v_formula()
|
D | ni_dpm.c | 754 drm_fixp_exp(drm_fixp_mul(div64_s64(drm_int2fixp(coeff->bv), 1000), vddc))); in ni_calculate_leakage_for_v_and_t_formula() 4206 ni_pi->cac_data.leakage_coefficients.bv = 2957; in ni_dpm_init()
|
/linux-4.1.27/drivers/block/ |
D | ps3disk.c | 132 struct bio_vec bv; in ps3disk_submit_request_sg() local 135 rq_for_each_segment(bv, req, iter) in ps3disk_submit_request_sg()
|
D | floppy.c | 2368 struct bio_vec bv; in buffer_chain_size() local 2376 rq_for_each_segment(bv, current_req, iter) { in buffer_chain_size() 2377 if (page_address(bv.bv_page) + bv.bv_offset != base + size) in buffer_chain_size() 2380 size += bv.bv_len; in buffer_chain_size() 2406 struct bio_vec bv; in copy_buffer() local 2440 rq_for_each_segment(bv, current_req, iter) { in copy_buffer() 2444 size = bv.bv_len; in copy_buffer() 2447 buffer = page_address(bv.bv_page) + bv.bv_offset; in copy_buffer()
|
D | rbd.c | 1250 struct bio_vec bv; in zero_bio_chain() local 1257 bio_for_each_segment(bv, chain, iter) { in zero_bio_chain() 1258 if (pos + bv.bv_len > start_ofs) { in zero_bio_chain() 1260 buf = bvec_kmap_irq(&bv, &flags); in zero_bio_chain() 1262 bv.bv_len - remainder); in zero_bio_chain() 1263 flush_dcache_page(bv.bv_page); in zero_bio_chain() 1266 pos += bv.bv_len; in zero_bio_chain()
|
/linux-4.1.27/drivers/video/fbdev/matrox/ |
D | matroxfb_maven.c | 758 unsigned int a, bv, c; in maven_compute_timming() local 921 DAC1064_calcclock(mt->pixclock, 450000, &a, &bv, &c); in maven_compute_timming() 923 m->regs[0x81] = bv; in maven_compute_timming()
|
/linux-4.1.27/drivers/net/wireless/zd1211rw/ |
D | zd_usb.c | 2036 u16 bv = bit_value_template; in zd_usb_rfwrite() local 2038 bv |= RF_DATA; in zd_usb_rfwrite() 2039 req->bit_values[i] = cpu_to_le16(bv); in zd_usb_rfwrite()
|
/linux-4.1.27/drivers/usb/serial/ |
D | io_ti.c | 2366 int bv = 0; /* Off */ in edge_break() local 2369 bv = 1; /* On */ in edge_break() 2370 status = ti_do_config(edge_port, UMPC_SET_CLR_BREAK, bv); in edge_break()
|
/linux-4.1.27/Documentation/DocBook/media/ |
D | fieldseq_bt.gif.b64 | 191 xdPu7c47MGsWgVUAuRXv8SbvoDXadu47wVPv9WbvNiM83hYIcTiD+abv+rbv+8bv/Nbv/ebv/vbv
|