/Linux-v4.19/drivers/net/wireless/broadcom/b43legacy/ |
D | main.h | 38 #define P4D_BYT3S(magic, nr_bytes) u8 __p4dding##magic[nr_bytes] argument 39 #define P4D_BYTES(line, nr_bytes) P4D_BYT3S(line, nr_bytes) argument 41 #define PAD_BYTES(nr_bytes) P4D_BYTES(__LINE__ , (nr_bytes)) argument
|
/Linux-v4.19/drivers/net/wireless/broadcom/b43/ |
D | main.h | 36 #define P4D_BYT3S(magic, nr_bytes) u8 __p4dding##magic[nr_bytes] argument 37 #define P4D_BYTES(line, nr_bytes) P4D_BYT3S(line, nr_bytes) argument 39 #define PAD_BYTES(nr_bytes) P4D_BYTES( __LINE__ , (nr_bytes)) argument
|
/Linux-v4.19/drivers/ide/ |
D | ide-taskfile.c | 240 unsigned nr_bytes = min(len, cursg->length - cmd->cursg_ofs); in ide_pio_bytes() local 249 nr_bytes = min_t(unsigned, nr_bytes, (PAGE_SIZE - offset)); in ide_pio_bytes() 253 cmd->nleft -= nr_bytes; in ide_pio_bytes() 254 cmd->cursg_ofs += nr_bytes; in ide_pio_bytes() 263 hwif->tp_ops->output_data(drive, cmd, buf, nr_bytes); in ide_pio_bytes() 265 hwif->tp_ops->input_data(drive, cmd, buf, nr_bytes); in ide_pio_bytes() 269 len -= nr_bytes; in ide_pio_bytes() 277 unsigned int nr_bytes; in ide_pio_datablock() local 290 nr_bytes = min_t(unsigned, cmd->nleft, drive->mult_count << 9); in ide_pio_datablock() 292 nr_bytes = SECTOR_SIZE; in ide_pio_datablock() [all …]
|
D | ide-io.c | 58 unsigned int nr_bytes) in ide_end_rq() argument 70 return blk_end_request(rq, error, nr_bytes); in ide_end_rq() 115 int ide_complete_rq(ide_drive_t *drive, blk_status_t error, unsigned int nr_bytes) in ide_complete_rq() argument 126 nr_bytes = blk_rq_sectors(rq) << 9; in ide_complete_rq() 128 rc = ide_end_rq(drive, rq, error, nr_bytes); in ide_complete_rq() 233 void ide_init_sg_cmd(struct ide_cmd *cmd, unsigned int nr_bytes) in ide_init_sg_cmd() argument 235 cmd->nbytes = cmd->nleft = nr_bytes; in ide_init_sg_cmd()
|
/Linux-v4.19/drivers/misc/mic/scif/ |
D | scif_rma_list.c | 90 u64 end_va_window, end_va_req = start_va_req + req->nr_bytes; in scif_query_tcw() 92 if (!req->nr_bytes) in scif_query_tcw() 123 req->nr_bytes += in scif_query_tcw() 128 req->nr_bytes += end_va_window - end_va_req; in scif_query_tcw() 149 u64 tmp_min, nr_bytes_left = req->nr_bytes; in scif_query_window() 151 if (!req->nr_bytes) in scif_query_window() 166 if (nr_bytes_left == req->nr_bytes) in scif_query_window()
|
D | scif_rma_list.h | 38 size_t nr_bytes; member
|
D | scif_mmap.c | 43 req.nr_bytes = recv_window->nr_pages << PAGE_SHIFT; in scif_recv_munmap() 247 req.nr_bytes = len; in scif_get_pages() 573 req.nr_bytes = vma->vm_end - vma->vm_start; in scif_munmap() 645 req.nr_bytes = vma->vm_end - vma->vm_start; in scif_mmap()
|
D | scif_dma.c | 762 size_t *nr_bytes, struct scif_window_iter *iter) in scif_off_to_dma_addr() argument 772 if (nr_bytes) in scif_off_to_dma_addr() 773 *nr_bytes = PAGE_SIZE - page_off; in scif_off_to_dma_addr() 790 if (nr_bytes) in scif_off_to_dma_addr() 791 *nr_bytes = end - off; in scif_off_to_dma_addr() 1695 remote_req.nr_bytes = len; in scif_rma_copy() 1725 req.nr_bytes = ALIGN(len + (addr & ~PAGE_MASK), in scif_rma_copy() 1739 req.nr_bytes, req.prot, in scif_rma_copy() 1768 req.nr_bytes = len; in scif_rma_copy()
|
D | scif_rma.h | 376 size_t *nr_bytes,
|
/Linux-v4.19/drivers/md/ |
D | dm-path-selector.h | 55 size_t nr_bytes); 75 size_t nr_bytes); 77 size_t nr_bytes);
|
D | dm-service-time.c | 274 static struct dm_path *st_select_path(struct path_selector *ps, size_t nr_bytes) in st_select_path() argument 286 if (!best || (st_compare_load(pi, best, nr_bytes) < 0)) in st_select_path() 302 size_t nr_bytes) in st_start_io() argument 306 atomic_add(nr_bytes, &pi->in_flight_size); in st_start_io() 312 size_t nr_bytes) in st_end_io() argument 316 atomic_sub(nr_bytes, &pi->in_flight_size); in st_end_io()
|
D | dm-queue-length.c | 187 static struct dm_path *ql_select_path(struct path_selector *ps, size_t nr_bytes) in ql_select_path() argument 220 size_t nr_bytes) in ql_start_io() argument 230 size_t nr_bytes) in ql_end_io() argument
|
D | dm-mpath.c | 101 size_t nr_bytes; member 280 mpio->nr_bytes = bio->bi_iter.bi_size; in multipath_init_per_bio_data() 352 size_t nr_bytes) in choose_path_in_pg() argument 358 path = pg->ps.type->select_path(&pg->ps, nr_bytes); in choose_path_in_pg() 375 static struct pgpath *choose_pgpath(struct multipath *m, size_t nr_bytes) in choose_pgpath() argument 397 pgpath = choose_path_in_pg(m, pg, nr_bytes); in choose_pgpath() 406 pgpath = choose_path_in_pg(m, pg, nr_bytes); in choose_pgpath() 421 pgpath = choose_path_in_pg(m, pg, nr_bytes); in choose_pgpath() 495 size_t nr_bytes = blk_rq_bytes(rq); in multipath_clone_and_map() local 505 pgpath = choose_pgpath(m, nr_bytes); in multipath_clone_and_map() [all …]
|
D | dm-round-robin.c | 181 static struct dm_path *rr_select_path(struct path_selector *ps, size_t nr_bytes) in rr_select_path() argument
|
/Linux-v4.19/drivers/acpi/ |
D | nvs.c | 102 unsigned int nr_bytes; in suspend_nvs_register() local 110 nr_bytes = PAGE_SIZE - (start & ~PAGE_MASK); in suspend_nvs_register() 111 entry->size = (size < nr_bytes) ? size : nr_bytes; in suspend_nvs_register()
|
/Linux-v4.19/net/rds/ |
D | rdma.c | 566 unsigned int nr_bytes; in rds_cmsg_rdma_args() local 664 nr_bytes = 0; in rds_cmsg_rdma_args() 689 nr_bytes, nr, iov->bytes, iov->addr); in rds_cmsg_rdma_args() 691 nr_bytes += iov->bytes; in rds_cmsg_rdma_args() 712 if (nr_bytes > args->remote_vec.bytes) { in rds_cmsg_rdma_args() 714 nr_bytes, in rds_cmsg_rdma_args() 719 op->op_bytes = nr_bytes; in rds_cmsg_rdma_args()
|
/Linux-v4.19/fs/proc/ |
D | vmcore.c | 104 size_t nr_bytes; in read_from_oldmem() local 115 nr_bytes = PAGE_SIZE - offset; in read_from_oldmem() 117 nr_bytes = count; in read_from_oldmem() 121 memset(buf, 0, nr_bytes); in read_from_oldmem() 123 tmp = copy_oldmem_page(pfn, buf, nr_bytes, in read_from_oldmem() 128 *ppos += nr_bytes; in read_from_oldmem() 129 count -= nr_bytes; in read_from_oldmem() 130 buf += nr_bytes; in read_from_oldmem() 131 read += nr_bytes; in read_from_oldmem()
|
/Linux-v4.19/drivers/scsi/ |
D | sd_zbc.c | 123 unsigned int nr_bytes = blk_rq_bytes(rq); in sd_zbc_setup_report_cmnd() local 126 WARN_ON(nr_bytes == 0); in sd_zbc_setup_report_cmnd() 142 put_unaligned_be32(nr_bytes, &cmd->cmnd[10]); in sd_zbc_setup_report_cmnd() 147 cmd->sdb.length = nr_bytes; in sd_zbc_setup_report_cmnd()
|
/Linux-v4.19/drivers/iio/humidity/ |
D | am2315.c | 76 static u16 am2315_crc(u8 *data, u8 nr_bytes) in am2315_crc() argument 81 while (nr_bytes--) { in am2315_crc()
|
/Linux-v4.19/include/trace/events/ |
D | block.h | 118 TP_PROTO(struct request *rq, int error, unsigned int nr_bytes), 120 TP_ARGS(rq, error, nr_bytes), 134 __entry->nr_sector = nr_bytes >> 9; 137 blk_fill_rwbs(__entry->rwbs, rq->cmd_flags, nr_bytes);
|
/Linux-v4.19/block/ |
D | blk-core.c | 3077 unsigned int nr_bytes) in blk_update_request() argument 3081 trace_block_rq_complete(req, blk_status_to_errno(error), nr_bytes); in blk_update_request() 3090 blk_account_io_completion(req, nr_bytes); in blk_update_request() 3095 unsigned bio_bytes = min(bio->bi_iter.bi_size, nr_bytes); in blk_update_request() 3105 nr_bytes -= bio_bytes; in blk_update_request() 3107 if (!nr_bytes) in blk_update_request() 3155 unsigned int nr_bytes, in blk_update_bidi_request() argument 3158 if (blk_update_request(rq, error, nr_bytes)) in blk_update_bidi_request() 3248 unsigned int nr_bytes, unsigned int bidi_bytes) in blk_end_bidi_request() argument 3255 if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes)) in blk_end_bidi_request() [all …]
|
/Linux-v4.19/drivers/net/ethernet/mellanox/mlx4/ |
D | en_tx.c | 465 bytes += ring->tx_info[ring_index].nr_bytes; in mlx4_en_process_tx_cq() 998 tx_info->nr_bytes = skb->len + (i - 1) * lso_header_size; in mlx4_en_xmit() 1005 tx_info->nr_bytes = max_t(unsigned int, skb->len, ETH_ZLEN); in mlx4_en_xmit() 1008 ring->bytes += tx_info->nr_bytes; in mlx4_en_xmit() 1009 netdev_tx_sent_queue(ring->tx_queue, tx_info->nr_bytes); in mlx4_en_xmit() 1149 tx_info->nr_bytes = max_t(unsigned int, length, ETH_ZLEN); in mlx4_en_xmit_frame()
|
/Linux-v4.19/fs/ntfs/ |
D | compress.c | 323 int nr_bytes = do_sb_end - *dest_ofs; in ntfs_decompress() local 328 memset(dp_addr, 0, nr_bytes); in ntfs_decompress() 329 *dest_ofs += nr_bytes; in ntfs_decompress()
|
/Linux-v4.19/drivers/block/ |
D | swim3.c | 260 static bool swim3_end_request(struct floppy_state *fs, blk_status_t err, unsigned int nr_bytes) in swim3_end_request() argument 266 err, nr_bytes, req); in swim3_end_request() 269 nr_bytes = blk_rq_cur_bytes(req); in swim3_end_request() 270 rc = __blk_end_request(req, err, nr_bytes); in swim3_end_request()
|
/Linux-v4.19/kernel/bpf/ |
D | btf.c | 453 u8 nr_bits, nr_bytes; in btf_type_int_is_regular() local 458 nr_bytes = BITS_ROUNDUP_BYTES(nr_bits); in btf_type_int_is_regular() 461 (nr_bytes != sizeof(u8) && nr_bytes != sizeof(u16) && in btf_type_int_is_regular() 462 nr_bytes != sizeof(u32) && nr_bytes != sizeof(u64))) { in btf_type_int_is_regular()
|