to_send           222 drivers/iio/common/ssp_sensors/ssp_dev.c 	struct ssp_instruction to_send;
to_send           224 drivers/iio/common/ssp_sensors/ssp_dev.c 	to_send.a = cpu_to_le32(delay);
to_send           225 drivers/iio/common/ssp_sensors/ssp_dev.c 	to_send.b = cpu_to_le32(data->batch_latency_buf[type]);
to_send           226 drivers/iio/common/ssp_sensors/ssp_dev.c 	to_send.c = data->batch_opt_buf[type];
to_send           235 drivers/iio/common/ssp_sensors/ssp_dev.c 					   (u8 *)&to_send, sizeof(to_send));
to_send           248 drivers/iio/common/ssp_sensors/ssp_dev.c 					   (u8 *)&to_send, sizeof(to_send));
to_send           284 drivers/iio/common/ssp_sensors/ssp_dev.c 	struct ssp_instruction to_send;
to_send           286 drivers/iio/common/ssp_sensors/ssp_dev.c 	to_send.a = cpu_to_le32(delay);
to_send           287 drivers/iio/common/ssp_sensors/ssp_dev.c 	to_send.b = cpu_to_le32(data->batch_latency_buf[type]);
to_send           288 drivers/iio/common/ssp_sensors/ssp_dev.c 	to_send.c = data->batch_opt_buf[type];
to_send           291 drivers/iio/common/ssp_sensors/ssp_dev.c 				   (u8 *)&to_send, sizeof(to_send));
to_send            51 drivers/infiniband/sw/rxe/rxe_req.c 		int to_send = (wqe->dma.resid > qp->mtu) ?
to_send            58 drivers/infiniband/sw/rxe/rxe_req.c 			wqe->dma.resid -= to_send;
to_send            59 drivers/infiniband/sw/rxe/rxe_req.c 			wqe->dma.sge_offset += to_send;
to_send            61 drivers/infiniband/sw/rxe/rxe_req.c 			advance_dma_data(&wqe->dma, to_send);
to_send           580 drivers/staging/nvec/nvec.c 	unsigned char to_send = 0xff;
to_send           639 drivers/staging/nvec/nvec.c 			to_send = nvec->tx->data[0];
to_send           655 drivers/staging/nvec/nvec.c 			to_send = nvec->tx->data[nvec->tx->pos++];
to_send           693 drivers/staging/nvec/nvec.c 		writel(to_send, nvec->base + I2C_SL_RCVD);
to_send           704 drivers/staging/nvec/nvec.c 		to_send,
to_send           751 drivers/tty/serial/max310x.c 	unsigned int txlen, to_send, until_end;
to_send           764 drivers/tty/serial/max310x.c 	to_send = uart_circ_chars_pending(xmit);
to_send           766 drivers/tty/serial/max310x.c 	if (likely(to_send)) {
to_send           770 drivers/tty/serial/max310x.c 		to_send = (to_send > txlen) ? txlen : to_send;
to_send           772 drivers/tty/serial/max310x.c 		if (until_end < to_send) {
to_send           776 drivers/tty/serial/max310x.c 			max310x_batch_write(port, xmit->buf, to_send - until_end);
to_send           778 drivers/tty/serial/max310x.c 			max310x_batch_write(port, xmit->buf + xmit->tail, to_send);
to_send           782 drivers/tty/serial/max310x.c 		port->icount.tx += to_send;
to_send           783 drivers/tty/serial/max310x.c 		xmit->tail = (xmit->tail + to_send) & (UART_XMIT_SIZE - 1);
to_send           383 drivers/tty/serial/sc16is7xx.c static void sc16is7xx_fifo_write(struct uart_port *port, u8 to_send)
to_send           393 drivers/tty/serial/sc16is7xx.c 	if (unlikely(!to_send))
to_send           397 drivers/tty/serial/sc16is7xx.c 	regmap_raw_write(s->regmap, addr, s->buf, to_send);
to_send           637 drivers/tty/serial/sc16is7xx.c 	unsigned int txlen, to_send, i;
to_send           650 drivers/tty/serial/sc16is7xx.c 	to_send = uart_circ_chars_pending(xmit);
to_send           651 drivers/tty/serial/sc16is7xx.c 	if (likely(to_send)) {
to_send           660 drivers/tty/serial/sc16is7xx.c 		to_send = (to_send > txlen) ? txlen : to_send;
to_send           663 drivers/tty/serial/sc16is7xx.c 		port->icount.tx += to_send;
to_send           666 drivers/tty/serial/sc16is7xx.c 		for (i = 0; i < to_send; ++i) {
to_send           671 drivers/tty/serial/sc16is7xx.c 		sc16is7xx_fifo_write(port, to_send);
to_send           408 net/smc/smc_tx.c 	int to_send, rmbespace;
to_send           415 net/smc/smc_tx.c 	to_send = smc_curs_diff(conn->sndbuf_desc->len, &sent, &prep);
to_send           416 net/smc/smc_tx.c 	if (to_send <= 0)
to_send           429 net/smc/smc_tx.c 	pflags->write_blocked = (to_send >= rmbespace);
to_send           431 net/smc/smc_tx.c 	len = min(to_send, rmbespace);
to_send           468 net/smc/smc_tx.c 	if (conn->urg_tx_pend && len == to_send)
to_send           184 tools/testing/selftests/net/tls.c 	int to_send = strlen(test_str) + 1;
to_send           193 tools/testing/selftests/net/tls.c 	EXPECT_EQ(send(self->fd, test_str, to_send, 0), to_send);
to_send           194 tools/testing/selftests/net/tls.c 	EXPECT_EQ(recv(self->cfd, recv_buf, to_send, MSG_WAITALL), to_send);
to_send           195 tools/testing/selftests/net/tls.c 	EXPECT_EQ(memcmp(test_str, recv_buf, to_send), 0);