/linux-6.12.1/arch/mips/dec/ |
D | ecc-berr.c | 57 u16 syn = 0, sngl; in dec_ecc_be_backend() local 117 syn = chksyn; /* Low bank. */ in dec_ecc_be_backend() 119 syn = chksyn >> 16; /* High bank. */ in dec_ecc_be_backend() 121 if (!(syn & KN0X_ESR_VLDLO)) { in dec_ecc_be_backend() 127 sngl = syn & KN0X_ESR_SNGLO; in dec_ecc_be_backend() 128 syn &= KN0X_ESR_SYNLO; in dec_ecc_be_backend() 135 if (syn == data_mbit[i]) in dec_ecc_be_backend() 156 if (syn && syn == (syn & -syn)) { in dec_ecc_be_backend() 157 if (syn == 0x01) { in dec_ecc_be_backend() 167 i = syn >> 2; in dec_ecc_be_backend() [all …]
|
/linux-6.12.1/tools/testing/selftests/bpf/progs/ |
D | cgroup_tcp_skb.c | 51 if (tcph->fin || !tcph->syn || !tcph->ack) in egress_accept() 65 if (!tcph->syn || tcph->fin || tcph->ack) in ingress_accept() 71 if (tcph->fin || tcph->syn || !tcph->ack) in ingress_accept() 87 if (!tcph->syn || tcph->fin || tcph->ack) in egress_connect() 100 if (tcph->fin || !tcph->syn || !tcph->ack) in ingress_connect() 117 if (tcph->fin || tcph->syn || !tcph->ack) in egress_close_remote() 143 if (tcph->fin || tcph->syn || !tcph->ack) in ingress_close_remote() 164 if (tcph->fin || tcph->syn || !tcph->ack) in egress_close_local() 182 if (tcph->fin || tcph->syn || !tcph->ack) in ingress_close_local() 188 if (!tcph->fin || tcph->syn || !tcph->ack) in ingress_close_local()
|
D | test_tcp_custom_syncookie.c | 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() 265 if (ctx->tcp->syn && ctx->attrs.rcv_tsecr) in tcp_parse_option() 272 if (*opsize == TCPOLEN_SACK_PERM && ctx->tcp->syn) in tcp_parse_option() 575 if (ctx.tcp->syn) { in tcp_custom_syncookie()
|
D | test_migrate_reuseport.c | 90 if (!tcp->syn && tcp->ack) in drop_ack()
|
/linux-6.12.1/tools/testing/selftests/net/tcp_ao/lib/ |
D | ftrace-tcp.c | 39 int syn; member 60 int fin, int syn, int rst, int psh, int ack, in __trace_event_expect() argument 72 .syn = syn, in __trace_event_expect() 126 syn:1, member 168 if (p->syn >= 0 && p->syn != e->syn) in lookup_expected_event() 293 char fin, syn, rst, psh, ack; in tracer_scan_event() local 306 &fin, &syn, &rst, &psh, &ack); in tracer_scan_event() 320 &fin, &syn, &rst, &psh, &ack, in tracer_scan_event() 364 out->syn = (syn == 'S'); in tracer_scan_event() 370 (syn != 'S' && syn != ' ') || in tracer_scan_event() [all …]
|
D | aolib.h | 700 int fin, int syn, int rst, int psh, int ack, 706 int fin, int syn, int rst, int psh, int ack) in trace_hash_event_expect() argument 712 fin, syn, rst, psh, ack, in trace_hash_event_expect() 721 int fin, int syn, int rst, int psh, int ack, in trace_ao_event_expect() argument 728 fin, syn, rst, psh, ack, in trace_ao_event_expect()
|
/linux-6.12.1/drivers/net/wireless/realtek/rtw89/ |
D | rtw8922a_rfk.c | 164 static void rtw8922a_set_syn01_cav(struct rtw89_dev *rtwdev, enum _rf_syn_pow syn) in rtw8922a_set_syn01_cav() argument 166 if (syn == RF_SYN_ALLON) { in rtw8922a_set_syn01_cav() 174 } else if (syn == RF_SYN_ON_OFF) { in rtw8922a_set_syn01_cav() 180 } else if (syn == RF_SYN_OFF_ON) { in rtw8922a_set_syn01_cav() 186 } else if (syn == RF_SYN_ALLOFF) { in rtw8922a_set_syn01_cav() 192 static void rtw8922a_set_syn01_cbv(struct rtw89_dev *rtwdev, enum _rf_syn_pow syn) in rtw8922a_set_syn01_cbv() argument 194 if (syn == RF_SYN_ALLON) { in rtw8922a_set_syn01_cbv() 197 } else if (syn == RF_SYN_ON_OFF) { in rtw8922a_set_syn01_cbv() 200 } else if (syn == RF_SYN_OFF_ON) { in rtw8922a_set_syn01_cbv() 203 } else if (syn == RF_SYN_ALLOFF) { in rtw8922a_set_syn01_cbv() [all …]
|
/linux-6.12.1/lib/reed_solomon/ |
D | decode_rs.c | 33 uint16_t *syn = rsc->buffers + RS_DECODE_SYN * (nroots + 1); variable 62 syn[i] = (((uint16_t) data[0]) ^ invmsk) & msk; 66 if (syn[i] == 0) { 67 syn[i] = (((uint16_t) data[j]) ^ 70 syn[i] = ((((uint16_t) data[j]) ^ 72 alpha_to[rs_modnn(rs, index_of[syn[i]] + 80 if (syn[i] == 0) { 81 syn[i] = ((uint16_t) par[j]) & msk; 83 syn[i] = (((uint16_t) par[j]) & msk) ^ 84 alpha_to[rs_modnn(rs, index_of[syn[i]] + [all …]
|
D | test_rslib.c | 230 int len, uint16_t *syn) in compute_syndrome() argument 242 syn[i] = data[0]; in compute_syndrome() 244 if (syn[i] == 0) { in compute_syndrome() 245 syn[i] = data[j]; in compute_syndrome() 247 syn[i] = data[j] ^ in compute_syndrome() 248 alpha_to[rs_modnn(rs, index_of[syn[i]] in compute_syndrome() 256 syn[i] = rs->index_of[syn[i]]; in compute_syndrome()
|
/linux-6.12.1/lib/ |
D | bch.c | 371 unsigned int *syn) in compute_syndromes() argument 384 memset(syn, 0, 2*t*sizeof(*syn)); in compute_syndromes() 393 syn[j] ^= a_pow(bch, (j+1)*(i+s)); in compute_syndromes() 401 syn[2*j+1] = gf_sqr(bch, syn[j]); in compute_syndromes() 410 const unsigned int *syn) in compute_error_locator_polynomial() argument 414 unsigned int i, j, tmp, l, pd = 1, d = syn[0]; in compute_error_locator_polynomial() 452 d = syn[2*i+2]; in compute_error_locator_polynomial() 454 d ^= gf_mul(bch, elp->c[j], syn[2*i+2-j]); in compute_error_locator_polynomial() 941 unsigned int i, j, syn, syn0, count = 0; in chien_search() local 951 for (j = 1, syn = syn0; j <= p->deg; j++) { in chien_search() [all …]
|
/linux-6.12.1/include/linux/ |
D | bch.h | 51 unsigned int *syn; member 68 const unsigned int *syn, unsigned int *errloc);
|
/linux-6.12.1/net/ipv4/ |
D | tcp_fastopen.c | 119 struct sk_buff *syn, in __tcp_fastopen_cookie_gen_cipher() argument 126 const struct iphdr *iph = ip_hdr(syn); in __tcp_fastopen_cookie_gen_cipher() 137 const struct ipv6hdr *ip6h = ipv6_hdr(syn); in __tcp_fastopen_cookie_gen_cipher() 155 struct sk_buff *syn, in tcp_fastopen_cookie_gen() argument 163 __tcp_fastopen_cookie_gen_cipher(req, syn, &ctx->key[0], foc); in tcp_fastopen_cookie_gen() 213 struct sk_buff *syn, in tcp_fastopen_cookie_gen_check() argument 227 __tcp_fastopen_cookie_gen_cipher(req, syn, &ctx->key[i], foc); in tcp_fastopen_cookie_gen_check()
|
/linux-6.12.1/drivers/infiniband/sw/rxe/ |
D | rxe_comp.c | 220 u8 syn; in check_ack() local 263 syn = aeth_syn(pkt); in check_ack() 265 if ((syn & AETH_TYPE_MASK) != AETH_ACK) in check_ack() 285 syn = aeth_syn(pkt); in check_ack() 287 if ((syn & AETH_TYPE_MASK) != AETH_ACK) in check_ack() 297 syn = aeth_syn(pkt); in check_ack() 298 switch (syn & AETH_TYPE_MASK) { in check_ack() 308 switch (syn) { in check_ack() 337 rxe_dbg_qp(qp, "unexpected nak %x\n", syn); in check_ack()
|
/linux-6.12.1/arch/alpha/kernel/ |
D | core_cia.c | 1034 long syn; in cia_decode_ecc_error() local 1040 syn = cia->cia_syn & 0xff; in cia_decode_ecc_error() 1041 if (syn == (syn & -syn)) { in cia_decode_ecc_error() 1043 i = ffs(syn) - 1; in cia_decode_ecc_error() 1065 if (data_bit[i] == syn) in cia_decode_ecc_error() 1074 printk (fmt, syn, i); in cia_decode_ecc_error()
|
/linux-6.12.1/net/ipv4/netfilter/ |
D | ipt_SYNPROXY.c | 31 if (th->syn && !(th->ack || th->fin || th->rst)) { in synproxy_tg4() 51 } else if (th->ack && !(th->fin || th->rst || th->syn)) { in synproxy_tg4()
|
/linux-6.12.1/include/trace/events/ |
D | tcp.h | 436 __field(bool, syn) 461 __entry->syn = th->syn; 474 __entry->syn ? 'S' : ' ', 533 __field(bool, syn) 562 __entry->syn = th->syn; 579 __entry->syn ? 'S' : ' ',
|
/linux-6.12.1/net/ipv6/netfilter/ |
D | ip6t_SYNPROXY.c | 31 if (th->syn && !(th->ack || th->fin || th->rst)) { in synproxy_tg6() 52 } else if (th->ack && !(th->fin || th->rst || th->syn)) { in synproxy_tg6()
|
/linux-6.12.1/tools/testing/selftests/net/netfilter/ |
D | nft_synproxy.sh | 66 meta iif veth0 tcp flags syn counter notrack 79 tcp flags syn counter drop
|
/linux-6.12.1/Documentation/core-api/ |
D | librs.rst | 125 uint16_t par[6], syn[6]; 135 numerr = decode_rs8 (rs_decoder, data8, par, 512, syn, 0, NULL, 0, NULL); 147 uint16_t par[6], syn[6], corr[8]; 157 numerr = decode_rs8 (rs_decoder, NULL, NULL, 512, syn, 0, errpos, 0, corr);
|
/linux-6.12.1/tools/testing/selftests/net/netfilter/packetdrill/ |
D | common.sh | 33 $xtables -A INPUT -m conntrack --ctstate NEW -p tcp --syn
|
D | conntrack_synack_old.pkt | 1 // Check conntrack copes with syn/ack reply for a previous, old incarnation. 29 // syn retransmitted
|
/linux-6.12.1/drivers/edac/ |
D | octeon_edac-l2c.c | 73 err_tdtx.s.type, err_tdtx.s.syn, err_tdtx.s.wayidx); in _octeon_l2c_poll_oct2() 108 err_ttgx.s.type, err_ttgx.s.syn, err_ttgx.s.wayidx); in _octeon_l2c_poll_oct2()
|
/linux-6.12.1/tools/include/uapi/linux/ |
D | tcp.h | 34 syn:1, member 50 syn:1, member
|
/linux-6.12.1/arch/mips/include/asm/octeon/ |
D | cvmx-l2c-defs.h | 82 __BITFIELD_FIELD(uint64_t syn:10, 98 __BITFIELD_FIELD(uint64_t syn:6,
|
/linux-6.12.1/include/uapi/linux/ |
D | tcp.h | 34 syn:1, member 50 syn:1, member
|