Home
last modified time | relevance | path

Searched refs:answ (Results 1 – 10 of 10) sorted by relevance

/Linux-v6.6/arch/x86/math-emu/
Dfpu_emu.h194 FPU_REG * answ, unsigned int control_w, u_char sign,
197 FPU_REG * answ, unsigned int control_w, u_char sign,
200 FPU_REG * answ, unsigned int control_w, u_char sign);
202 FPU_REG * answ, unsigned int control_w, u_char sign,
/Linux-v6.6/drivers/media/dvb-frontends/
Dstv6111.c296 u8 adr, u8 *msg, int len, u8 *answ, int alen) in i2c_read() argument
301 .buf = answ, .len = alen } }; in i2c_read()
Ddrxd_hard.c199 u8 adr, u8 *msg, int len, u8 *answ, int alen) in i2c_read() argument
207 .buf = answ, .len = alen in i2c_read()
Ddrxk_hard.c245 u8 adr, u8 *msg, int len, u8 *answ, int alen) in i2c_read() argument
252 .buf = answ, .len = alen} in i2c_read()
265 dprintk(3, ": read from %*ph, value = %*ph\n", len, msg, alen, answ); in i2c_read()
/Linux-v6.6/drivers/block/drbd/
Ddrbd_debugfs.c389 int answ = tp->rcv_nxt - tp->copied_seq; in in_flight_summary_show() local
390 seq_printf(m, "unread receive buffer: %u Byte\n", answ); in in_flight_summary_show()
392 answ = tp->write_seq - tp->snd_una; in in_flight_summary_show()
393 seq_printf(m, "unacked send buffer: %u Byte\n", answ); in in_flight_summary_show()
/Linux-v6.6/net/smc/
Daf_smc.c3133 int answ; in smc_ioctl() local
3143 answ = smc->clcsock->ops->ioctl(smc->clcsock, cmd, arg); in smc_ioctl()
3145 return answ; in smc_ioctl()
3155 answ = 0; in smc_ioctl()
3157 answ = atomic_read(&smc->conn.bytes_to_rcv); in smc_ioctl()
3167 answ = 0; in smc_ioctl()
3169 answ = smc->conn.sndbuf_desc->len - in smc_ioctl()
3180 answ = 0; in smc_ioctl()
3182 answ = smc_tx_prepared_sends(&smc->conn); in smc_ioctl()
3191 answ = 0; in smc_ioctl()
[all …]
/Linux-v6.6/include/net/
Dtcp.h2268 int answ; in tcp_inq() local
2271 answ = 0; in tcp_inq()
2277 answ = tp->rcv_nxt - tp->copied_seq; in tcp_inq()
2280 if (answ && sock_flag(sk, SOCK_DONE)) in tcp_inq()
2281 answ--; in tcp_inq()
2283 answ = tp->urg_seq - tp->copied_seq; in tcp_inq()
2286 return answ; in tcp_inq()
/Linux-v6.6/net/ipv4/
Dtcp.c607 int answ; in tcp_ioctl() local
616 answ = tcp_inq(sk); in tcp_ioctl()
620 answ = READ_ONCE(tp->urg_data) && in tcp_ioctl()
628 answ = 0; in tcp_ioctl()
630 answ = READ_ONCE(tp->write_seq) - tp->snd_una; in tcp_ioctl()
637 answ = 0; in tcp_ioctl()
639 answ = READ_ONCE(tp->write_seq) - in tcp_ioctl()
646 *karg = answ; in tcp_ioctl()
/Linux-v6.6/drivers/staging/media/av7110/
Dav7110.c827 u16 answ[2]; in StopHWFilter() local
848 ret = av7110_fw_request(av7110, buf, 3, answ, 2); in StopHWFilter()
849 if (ret != 0 || answ[1] != handle) { in StopHWFilter()
852 answ[0], answ[1], dvbdmxfilter->feed->pid); in StopHWFilter()
/Linux-v6.6/net/unix/
Daf_unix.c3044 int answ = 0; in unix_ioctl() local
3048 answ = 1; in unix_ioctl()
3049 err = put_user(answ, (int __user *)arg); in unix_ioctl()