Home
last modified time | relevance | path

Searched refs:opsize (Results 1 – 11 of 11) sorted by relevance

/linux-6.15/drivers/crypto/starfive/
H A Djh7110-rsa.c79 u8 opsize; in starfive_rsa_montgomery_form() local
81 opsize = (bit_len - 1) >> 5; in starfive_rsa_montgomery_form()
92 rctx->csr.pka.opsize = opsize; in starfive_rsa_montgomery_form()
114 rctx->csr.pka.opsize = opsize; in starfive_rsa_montgomery_form()
127 rctx->csr.pka.opsize = opsize; in starfive_rsa_montgomery_form()
148 rctx->csr.pka.opsize = opsize; in starfive_rsa_montgomery_form()
162 out[opsize - loop] = temp; in starfive_rsa_montgomery_form()
176 int opsize, mlen, loop; in starfive_rsa_cpu_start() local
179 opsize = (key_sz - 1) >> 2; in starfive_rsa_cpu_start()
201 rctx->csr.pka.opsize = opsize; in starfive_rsa_cpu_start()
[all …]
H A Djh7110-cryp.h120 u32 opsize :6; member
/linux-6.15/net/mptcp/
H A Doptions.c63 if (opsize != expected_opsize && in mptcp_parse_option()
70 if (opsize != TCPOLEN_MPTCP_MPC_SYN) { in mptcp_parse_option()
190 if (opsize != expected_opsize && in mptcp_parse_option()
310 if (opsize != TCPOLEN_MPTCP_PRIO) in mptcp_parse_option()
330 if (opsize != TCPOLEN_MPTCP_RST) in mptcp_parse_option()
345 if (opsize != TCPOLEN_MPTCP_FAIL) in mptcp_parse_option()
377 int opsize; in mptcp_get_options() local
388 opsize = *ptr++; in mptcp_get_options()
391 if (opsize > length) in mptcp_get_options()
395 ptr += opsize - 2; in mptcp_get_options()
[all …]
/linux-6.15/arch/s390/kernel/
H A Ddis.c510 int start, end, opsize, hops, i; in show_code() local
546 if (start + opsize == 32) in show_code()
554 if (start + opsize >= end) in show_code()
556 for (i = 0; i < opsize; i++) in show_code()
562 start += opsize; in show_code()
574 int opsize, i; in print_fn_code() local
578 opsize = insn_length(*code); in print_fn_code()
579 if (opsize > len) in print_fn_code()
582 for (i = 0; i < opsize; i++) in print_fn_code()
591 code += opsize; in print_fn_code()
[all …]
/linux-6.15/tools/testing/selftests/bpf/progs/
H A Dtest_tcp_custom_syncookie.c222 __u8 *opcode, *opsize, *wscale; in tcp_parse_option() local
238 opsize = next(ctx, 1); in tcp_parse_option()
239 if (!opsize) in tcp_parse_option()
242 if (*opsize < 2) in tcp_parse_option()
248 if (*opsize == TCPOLEN_MSS && ctx->tcp->syn && mss) in tcp_parse_option()
253 if (*opsize == TCPOLEN_WINDOW && ctx->tcp->syn && wscale) { in tcp_parse_option()
261 if (*opsize == TCPOLEN_TIMESTAMP && tsval && tsecr) { in tcp_parse_option()
272 if (*opsize == TCPOLEN_SACK_PERM && ctx->tcp->syn) in tcp_parse_option()
277 ctx->off = off + *opsize; in tcp_parse_option()
H A Dxdp_synproxy_kern.c219 __u8 *opcode, *opsize, *wscale, *tsecr; in tscookie_tcpopt_parse() local
231 opsize = next(ctx, 1); in tscookie_tcpopt_parse()
232 if (!opsize || *opsize < 2) in tscookie_tcpopt_parse()
240 if (*opsize == TCPOLEN_WINDOW) in tscookie_tcpopt_parse()
247 if (*opsize == TCPOLEN_TIMESTAMP) { in tscookie_tcpopt_parse()
254 if (*opsize == TCPOLEN_SACK_PERM) in tscookie_tcpopt_parse()
259 ctx->off = off + *opsize; in tscookie_tcpopt_parse()
/linux-6.15/net/netfilter/
H A Dnf_conntrack_proto_tcp.c355 int opsize; in tcp_options() local
366 opsize=*ptr++; in tcp_options()
369 if (opsize > length) in tcp_options()
376 && opsize == TCPOLEN_WINDOW) { in tcp_options()
385 ptr += opsize - 2; in tcp_options()
386 length -= opsize; in tcp_options()
417 int opsize, i; in tcp_sack() local
428 opsize = *ptr++; in tcp_sack()
431 if (opsize > length) in tcp_sack()
449 ptr += opsize - 2; in tcp_sack()
[all …]
H A Dnf_synproxy_core.c44 int opsize; in synproxy_parse_options() local
55 opsize = *ptr++; in synproxy_parse_options()
56 if (opsize < 2) in synproxy_parse_options()
58 if (opsize > length) in synproxy_parse_options()
63 if (opsize == TCPOLEN_MSS) { in synproxy_parse_options()
69 if (opsize == TCPOLEN_WINDOW) { in synproxy_parse_options()
77 if (opsize == TCPOLEN_TIMESTAMP) { in synproxy_parse_options()
84 if (opsize == TCPOLEN_SACK_PERM) in synproxy_parse_options()
89 ptr += opsize - 2; in synproxy_parse_options()
90 length -= opsize; in synproxy_parse_options()
/linux-6.15/net/sched/
H A Dsch_cake.c1009 int opsize; in cake_get_tcpopt() local
1019 opsize = *ptr++; in cake_get_tcpopt()
1020 if (opsize < 2 || opsize > length) in cake_get_tcpopt()
1024 *oplen = opsize; in cake_get_tcpopt()
1028 ptr += opsize - 2; in cake_get_tcpopt()
1029 length -= opsize; in cake_get_tcpopt()
1116 int opsize; in cake_tcph_get_tstamp() local
1148 int opsize; in cake_tcph_may_drop() local
1158 opsize = *ptr++; in cake_tcph_may_drop()
1159 if (opsize < 2 || opsize > length) in cake_tcph_may_drop()
[all …]
/linux-6.15/net/ipv4/
H A Dtcp_input.c4145 int opsize) in smc_parse_options() argument
4171 int opsize; in tcp_parse_mss_option() local
4182 opsize = *ptr++; in tcp_parse_mss_option()
4197 length -= opsize; in tcp_parse_mss_option()
4222 int opsize; in tcp_parse_options() local
4233 opsize = *ptr++; in tcp_parse_options()
4331 ptr += opsize-2; in tcp_parse_options()
4403 int opsize; in tcp_do_parse_auth_options() local
4412 opsize = *ptr++; in tcp_do_parse_auth_options()
4413 if (opsize < 2 || opsize > length) in tcp_do_parse_auth_options()
[all …]
/linux-6.15/arch/m68k/ifpsp060/src/
H A Dpfpsp.S3925 cmpi.b %d0,&0xc # is opsize ext or packed?