Home
last modified time | relevance | path

Searched refs:split_size (Results 1 – 6 of 6) sorted by relevance

/openbmc/qemu/hw/net/
H A De1000.c645 unsigned int split_size = txd_lower & 0xffff, bytes, sz; in process_tx_desc() local
687 bytes = split_size; in process_tx_desc()
708 split_size -= bytes; in process_tx_desc()
709 } while (bytes && split_size); in process_tx_desc()
711 split_size = MIN(sizeof(tp->data) - tp->size, split_size); in process_tx_desc()
712 pci_dma_read(d, addr, tp->data + tp->size, split_size); in process_tx_desc()
713 tp->size += split_size; in process_tx_desc()
H A De1000e_core.c695 unsigned int split_size = txd_lower & 0xffff; in e1000e_process_tx_desc() local
719 addr, split_size)) { in e1000e_process_tx_desc()
/openbmc/linux/drivers/crypto/
H A Dsa2ul.c1090 size_t pl, ml, split_size; in sa_run() local
1154 split_size = req->size; in sa_run()
1157 if (sg_nents == 1 && split_size <= req->src->length) { in sa_run()
1161 sg_set_page(src, sg_page(req->src), split_size, in sa_run()
1187 &split_size, &src, &src_nents, gfp_flags); in sa_run()
1205 if (dst_nents == 1 && split_size <= req->dst->length) { in sa_run()
1209 sg_set_page(dst, sg_page(req->dst), split_size, in sa_run()
1233 0, 1, &split_size, &dst, &dst_nents, in sa_run()
/openbmc/linux/drivers/usb/gadget/udc/cdns2/
H A Dcdns2-gadget.c510 int split_size; in cdns2_ep_tx_isoc() local
524 split_size = preq->request.num_sgs ? 1024 : 3072; in cdns2_ep_tx_isoc()
538 remaining_packet_size = split_size; in cdns2_ep_tx_isoc()
543 remaining_packet_size = split_size; in cdns2_ep_tx_isoc()
/openbmc/linux/drivers/md/
H A Draid10.c1645 sector_t split_size; in raid10_handle_discard() local
1697 split_size = stripe_size - remainder; in raid10_handle_discard()
1698 split = bio_split(bio, split_size, GFP_NOIO, &conf->bio_split); in raid10_handle_discard()
1707 split_size = bio_sectors(bio) - remainder; in raid10_handle_discard()
1708 split = bio_split(bio, split_size, GFP_NOIO, &conf->bio_split); in raid10_handle_discard()
/openbmc/qemu/block/
H A Dvmdk.c2445 const int64_t split_size = 0x80000000; /* VMDK has constant split size */ in vmdk_co_do_create() local
2522 extent_size = split_size; in vmdk_co_do_create()