Searched defs:bv (Results 1 - 21 of 21) sorted by relevance

/drivers/net/wireless/rtlwifi/rtl8192cu/
H A Dtrx.c371 bool bv; local
422 bv = ieee80211_is_probe_resp(fc);
423 if (bv)
/drivers/s390/block/
H A Ddasd_diag.c507 struct bio_vec *bv; local
527 rq_for_each_segment(bv, req, iter) {
528 if (bv->bv_len & (blksize - 1))
531 count += bv->bv_len >> (block->s2b_shift + 9);
547 rq_for_each_segment(bv, req, iter) {
548 dst = page_address(bv->bv_page) + bv->bv_offset;
549 for (off = 0; off < bv->bv_len; off += blksize) {
H A Ddasd_fba.c261 struct bio_vec *bv; local
283 rq_for_each_segment(bv, req, iter) {
284 if (bv->bv_len & (blksize - 1))
287 count += bv->bv_len >> (block->s2b_shift + 9);
289 if (idal_is_needed (page_address(bv->bv_page), bv->bv_len))
290 cidaw += bv->bv_len / blksize;
326 rq_for_each_segment(bv, req, iter) {
327 dst = page_address(bv->bv_page) + bv
385 struct bio_vec *bv; local
[all...]
H A Ddasd_eckd.c2343 struct bio_vec *bv; local
2364 rq_for_each_segment(bv, req, iter) {
2365 if (bv->bv_len & (blksize - 1))
2368 count += bv->bv_len >> (block->s2b_shift + 9);
2370 if (idal_is_needed (page_address(bv->bv_page), bv->bv_len))
2371 cidaw += bv->bv_len >> (block->s2b_shift + 9);
2441 rq_for_each_segment(bv, req, iter) {
2442 dst = page_address(bv->bv_page) + bv
2527 struct bio_vec *bv; local
2831 struct bio_vec *bv; local
3068 struct bio_vec *bv; local
3192 struct bio_vec *bv; local
[all...]
/drivers/staging/zram/
H A Dzram_drv.c504 struct bio_vec bv; local
506 bv.bv_page = bvec->bv_page;
507 bv.bv_len = max_transfer_size;
508 bv.bv_offset = bvec->bv_offset;
510 if (zram_bvec_rw(zram, &bv, index, offset, bio, rw) < 0)
513 bv.bv_len = bvec->bv_len - max_transfer_size;
514 bv.bv_offset += max_transfer_size;
515 if (zram_bvec_rw(zram, &bv, index+1, 0, bio, rw) < 0)
/drivers/block/aoe/
H A Daoecmd.c210 struct bio_vec *bv; local
224 bv = buf->bv;
240 f->bufaddr = page_address(bv->bv_page) + buf->bv_off;
255 skb_fill_page_desc(skb, 0, bv->bv_page, buf->bv_off, bcnt);
276 buf->bv = ++bv;
277 buf->bv_resid = bv->bv_len;
279 buf->bv_off = bv->bv_offset;
H A Daoe.h111 struct bio_vec *bv; member in struct:buf
/drivers/block/
H A Dps3disk.c133 struct bio_vec *bv; local
136 rq_for_each_segment(bv, req, iter)
H A Drbd.c693 struct bio_vec *bv; local
700 bio_for_each_segment(bv, chain, i) {
701 if (pos + bv->bv_len > start_ofs) {
703 buf = bvec_kmap_irq(bv, &flags);
705 bv->bv_len - remainder);
708 pos += bv->bv_len;
H A Dfloppy.c2359 struct bio_vec *bv; local
2367 rq_for_each_segment(bv, current_req, iter) {
2368 if (page_address(bv->bv_page) + bv->bv_offset != base + size)
2371 size += bv->bv_len;
2397 struct bio_vec *bv; local
2431 rq_for_each_segment(bv, current_req, iter) {
2435 size = bv->bv_len;
2438 buffer = page_address(bv->bv_page) + bv
[all...]
/drivers/s390/char/
H A Dtape_34xx.c1144 struct bio_vec *bv; local
1151 rq_for_each_segment(bv, req, iter)
1152 count += bv->bv_len >> (TAPEBLOCK_HSEC_S2B + 9);
1179 rq_for_each_segment(bv, req, iter) {
1180 dst = kmap(bv->bv_page) + bv->bv_offset;
1181 for (off = 0; off < bv->bv_len; off += TAPEBLOCK_HSEC_SIZE) {
H A Dtape_3590.c685 struct bio_vec *bv; local
692 rq_for_each_segment(bv, req, iter)
693 count += bv->bv_len >> (TAPEBLOCK_HSEC_S2B + 9);
710 rq_for_each_segment(bv, req, iter) {
711 dst = page_address(bv->bv_page) + bv->bv_offset;
712 for (off = 0; off < bv->bv_len; off += TAPEBLOCK_HSEC_SIZE) {
720 BUG_ON(off > bv->bv_len);
/drivers/md/
H A Ddm-verity.c335 struct bio_vec *bv; local
340 bv = &io->io_vec[vector];
341 page = kmap_atomic(bv->bv_page);
342 len = bv->bv_len - offset;
346 page + bv->bv_offset + offset, len);
353 if (likely(offset == bv->bv_len)) {
H A Ddm-crypt.c877 struct bio_vec *bv; local
880 bv = bio_iovec_idx(clone, i);
881 BUG_ON(!bv->bv_page);
882 mempool_free(bv->bv_page, cc->page_pool);
883 bv->bv_page = NULL;
H A Ddm.c1054 struct bio_vec *bv = bio->bi_io_vec + idx; local
1058 *clone->bi_io_vec = *bv;
1264 struct bio_vec *bv = bio->bi_io_vec + ci->idx; local
1265 sector_t remaining = to_sector(bv->bv_len);
1281 bv->bv_offset + offset, len,
/drivers/net/wireless/zd1211rw/
H A Dzd_usb.c2038 u16 bv = bit_value_template; local
2040 bv |= RF_DATA;
2041 req->bit_values[i] = cpu_to_le16(bv);
/drivers/video/matrox/
H A Dmatroxfb_maven.c744 unsigned int a, bv, c; local
907 DAC1064_calcclock(mt->pixclock, 450000, &a, &bv, &c);
909 m->regs[0x81] = bv;
/drivers/video/omap2/displays/
H A Dpanel-acx565akm.c299 int bv; local
301 bv = level | (1 << 8);
302 acx565akm_write(md, MIPID_CMD_WRITE_DISP_BRIGHTNESS, (u8 *)&bv, 2);
312 u8 bv; local
314 acx565akm_read(md, MIPID_CMD_READ_DISP_BRIGHTNESS, &bv, 1);
316 return bv;
/drivers/gpu/drm/i915/
H A Dintel_tv.c95 u16 rv, gv, bv, av; member in struct:color_conversion
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
[all...]
/drivers/media/video/usbvision/
H A Dusbvision-core.c497 unsigned char rv, gv, bv; /* RGB components */ local
526 YUV_TO_RGB_BY_THE_BOOK(yuyv[0], yuyv[1], yuyv[3], rv, gv, bv);
532 (0xF8 & bv);
537 *f++ = bv;
542 *f++ = bv;
549 (0x7C & (bv << 2));
560 YUV_TO_RGB_BY_THE_BOOK(yuyv[2], yuyv[1], yuyv[3], rv, gv, bv);
566 (0xF8 & bv);
571 *f++ = bv;
576 *f++ = bv;
707 unsigned char rv, gv, bv; local
[all...]
/drivers/usb/serial/
H A Dio_ti.c2580 int bv = 0; /* Off */ local
2588 bv = 1; /* On */
2589 status = ti_do_config(edge_port, UMPC_SET_CLR_BREAK, bv);

Completed in 414 milliseconds