/linux-6.12.1/drivers/iio/common/ssp_sensors/ |
D | ssp_dev.c | 222 struct ssp_instruction to_send; in ssp_enable_sensor() local 224 to_send.a = cpu_to_le32(delay); in ssp_enable_sensor() 225 to_send.b = cpu_to_le32(data->batch_latency_buf[type]); in ssp_enable_sensor() 226 to_send.c = data->batch_opt_buf[type]; in ssp_enable_sensor() 235 (u8 *)&to_send, sizeof(to_send)); in ssp_enable_sensor() 248 (u8 *)&to_send, sizeof(to_send)); in ssp_enable_sensor() 284 struct ssp_instruction to_send; in ssp_change_delay() local 286 to_send.a = cpu_to_le32(delay); in ssp_change_delay() 287 to_send.b = cpu_to_le32(data->batch_latency_buf[type]); in ssp_change_delay() 288 to_send.c = data->batch_opt_buf[type]; in ssp_change_delay() [all …]
|
/linux-6.12.1/Documentation/usb/ |
D | gadget_hid.rst | 375 int to_send = 8; 432 to_send = keyboard_fill_report(report, buf, &hold); 434 to_send = mouse_fill_report(report, buf, &hold); 436 to_send = joystick_fill_report(report, buf, &hold); 438 if (to_send == -1) 441 if (write(fd, report, to_send) != to_send) { 447 if (write(fd, report, to_send) != to_send) {
|
/linux-6.12.1/net/smc/ |
D | smc_tx.c | 469 int to_send, rmbespace; in smc_tx_rdma_writes() local 476 to_send = smc_curs_diff(conn->sndbuf_desc->len, &sent, &prep); in smc_tx_rdma_writes() 477 if (to_send <= 0) in smc_tx_rdma_writes() 494 pflags->write_blocked = (to_send >= rmbespace); in smc_tx_rdma_writes() 496 len = min(to_send, rmbespace); in smc_tx_rdma_writes() 533 if (conn->urg_tx_pend && len == to_send) in smc_tx_rdma_writes()
|
/linux-6.12.1/drivers/staging/nvec/ |
D | nvec.c | 602 unsigned char to_send = 0xff; in nvec_interrupt() local 661 to_send = nvec->tx->data[0]; in nvec_interrupt() 677 to_send = nvec->tx->data[nvec->tx->pos++]; in nvec_interrupt() 715 tegra_i2c_writel(to_send, nvec->base + I2C_SL_RCVD); in nvec_interrupt() 726 to_send, in nvec_interrupt()
|
/linux-6.12.1/kernel/bpf/ |
D | devmap.c | 381 int to_send = cnt; in bq_xmit_all() local 394 to_send = dev_map_bpf_prog_run(bq->xdp_prog, bq->q, cnt, dev, bq->dev_rx); in bq_xmit_all() 395 if (!to_send) in bq_xmit_all() 399 sent = dev->netdev_ops->ndo_xdp_xmit(dev, to_send, bq->q, flags); in bq_xmit_all() 411 for (i = sent; unlikely(i < to_send); i++) in bq_xmit_all()
|
/linux-6.12.1/drivers/infiniband/sw/rxe/ |
D | rxe_req.c | 23 int to_send = (wqe->dma.resid > qp->mtu) ? in retry_first_write_send() local 30 wqe->dma.resid -= to_send; in retry_first_write_send() 31 wqe->dma.sge_offset += to_send; in retry_first_write_send() 33 advance_dma_data(&wqe->dma, to_send); in retry_first_write_send()
|
/linux-6.12.1/net/bridge/ |
D | br_multicast.c | 2408 u32 src_idx, to_send = pg->src_ents; in __grp_src_toin_incl() local 2424 to_send--; in __grp_src_toin_incl() 2438 if (to_send) in __grp_src_toin_incl() 2455 u32 src_idx, to_send = pg->src_ents; in __grp_src_toin_excl() local 2473 to_send--; in __grp_src_toin_excl() 2488 if (to_send) in __grp_src_toin_excl() 2540 u32 src_idx, to_send = 0; in __grp_src_toex_incl() local 2554 to_send++; in __grp_src_toex_incl() 2566 if (to_send) in __grp_src_toex_incl() 2584 u32 src_idx, to_send = 0; in __grp_src_toex_excl() local [all …]
|
/linux-6.12.1/drivers/tty/serial/ |
D | max310x.c | 751 unsigned int txlen, to_send; in max310x_handle_tx() local 775 to_send = kfifo_out_linear_ptr(&tport->xmit_fifo, &tail, txlen); in max310x_handle_tx() 776 max310x_batch_write(port, tail, to_send); in max310x_handle_tx() 777 uart_xmit_advance(port, to_send); in max310x_handle_tx()
|
D | sc16is7xx.c | 389 static void sc16is7xx_fifo_write(struct uart_port *port, u8 *txbuf, u8 to_send) in sc16is7xx_fifo_write() argument 397 if (unlikely(!to_send)) in sc16is7xx_fifo_write() 400 regmap_noinc_write(one->regmap, SC16IS7XX_THR_REG, txbuf, to_send); in sc16is7xx_fifo_write()
|
/linux-6.12.1/tools/testing/selftests/net/ |
D | tls.c | 415 int to_send = strlen(test_str) + 1; in TEST_F() local 424 EXPECT_EQ(send(self->fd, test_str, to_send, 0), to_send); in TEST_F() 425 EXPECT_EQ(recv(self->cfd, recv_buf, to_send, MSG_WAITALL), to_send); in TEST_F() 426 EXPECT_EQ(memcmp(test_str, recv_buf, to_send), 0); in TEST_F()
|