Home
last modified time | relevance | path

Searched refs:syn (Results 1 - 25 of 137) sorted by relevance

123456

/kernel/linux/linux-5.10/arch/mips/dec/
H A Decc-berr.c57 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 in dec_ecc_be_backend()
[all...]
/kernel/linux/linux-6.6/arch/mips/dec/
H A Decc-berr.c57 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 in dec_ecc_be_backend()
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/
H A Dcgroup_tcp_skb.c51 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 || !tcp in ingress_close_local()
[all...]
/kernel/linux/linux-5.10/lib/reed_solomon/
H A Ddecode_rs.c33 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[
[all...]
H A Dtest_rslib.c230 int len, uint16_t *syn) in compute_syndrome()
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()
229 compute_syndrome(struct rs_control *rsc, uint16_t *data, int len, uint16_t *syn) compute_syndrome() argument
/kernel/linux/linux-6.6/lib/reed_solomon/
H A Ddecode_rs.c33 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[
[all...]
H A Dtest_rslib.c230 int len, uint16_t *syn) in compute_syndrome()
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()
229 compute_syndrome(struct rs_control *rsc, uint16_t *data, int len, uint16_t *syn) compute_syndrome() argument
/kernel/linux/linux-6.6/lib/
H A Dbch.c371 unsigned int *syn) in compute_syndromes()
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()
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[ in compute_error_locator_polynomial()
370 compute_syndromes(struct bch_control *bch, uint32_t *ecc, unsigned int *syn) compute_syndromes() argument
409 compute_error_locator_polynomial(struct bch_control *bch, const unsigned int *syn) compute_error_locator_polynomial() argument
951 unsigned int i, j, syn, syn0, count = 0; chien_search() local
1019 bch_decode(struct bch_control *bch, const uint8_t *data, unsigned int len, const uint8_t *recv_ecc, const uint8_t *calc_ecc, const unsigned int *syn, unsigned int *errloc) bch_decode() argument
[all...]
/kernel/linux/linux-5.10/include/linux/
H A Dbch.h32 * @syn: syndrome buffer
51 unsigned int *syn; member
68 const unsigned int *syn, unsigned int *errloc);
/kernel/linux/linux-6.6/include/linux/
H A Dbch.h32 * @syn: syndrome buffer
51 unsigned int *syn; member
68 const unsigned int *syn, unsigned int *errloc);
/kernel/linux/linux-5.10/drivers/infiniband/sw/rxe/
H A Drxe_comp.c214 u8 syn; in check_ack() local
253 syn = aeth_syn(pkt); in check_ack()
255 if ((syn & AETH_TYPE_MASK) != AETH_ACK) in check_ack()
271 syn = aeth_syn(pkt); in check_ack()
273 if ((syn & AETH_TYPE_MASK) != AETH_ACK) in check_ack()
283 syn = aeth_syn(pkt); in check_ack()
284 switch (syn & AETH_TYPE_MASK) { in check_ack()
294 switch (syn) { in check_ack()
323 pr_warn("unexpected nak %x\n", syn); in check_ack()
/kernel/linux/linux-6.6/drivers/infiniband/sw/rxe/
H A Drxe_comp.c229 u8 syn; in check_ack() local
272 syn = aeth_syn(pkt); in check_ack()
274 if ((syn & AETH_TYPE_MASK) != AETH_ACK) in check_ack()
294 syn = aeth_syn(pkt); in check_ack()
296 if ((syn & AETH_TYPE_MASK) != AETH_ACK) in check_ack()
306 syn = aeth_syn(pkt); in check_ack()
307 switch (syn & AETH_TYPE_MASK) { in check_ack()
317 switch (syn) { in check_ack()
346 rxe_dbg_qp(qp, "unexpected nak %x\n", syn); in check_ack()
/kernel/linux/linux-5.10/net/ipv4/
H A Dtcp_fastopen.c135 struct sk_buff *syn, in __tcp_fastopen_cookie_gen_cipher()
142 const struct iphdr *iph = ip_hdr(syn); in __tcp_fastopen_cookie_gen_cipher()
153 const struct ipv6hdr *ip6h = ipv6_hdr(syn); in __tcp_fastopen_cookie_gen_cipher()
171 struct sk_buff *syn, in tcp_fastopen_cookie_gen()
179 __tcp_fastopen_cookie_gen_cipher(req, syn, &ctx->key[0], foc); in tcp_fastopen_cookie_gen()
229 struct sk_buff *syn, in tcp_fastopen_cookie_gen_check()
243 __tcp_fastopen_cookie_gen_cipher(req, syn, &ctx->key[i], foc); in tcp_fastopen_cookie_gen_check()
134 __tcp_fastopen_cookie_gen_cipher(struct request_sock *req, struct sk_buff *syn, const siphash_key_t *key, struct tcp_fastopen_cookie *foc) __tcp_fastopen_cookie_gen_cipher() argument
169 tcp_fastopen_cookie_gen(struct sock *sk, struct request_sock *req, struct sk_buff *syn, struct tcp_fastopen_cookie *foc) tcp_fastopen_cookie_gen() argument
227 tcp_fastopen_cookie_gen_check(struct sock *sk, struct request_sock *req, struct sk_buff *syn, struct tcp_fastopen_cookie *orig, struct tcp_fastopen_cookie *valid_foc) tcp_fastopen_cookie_gen_check() argument
/kernel/linux/linux-6.6/net/ipv4/
H A Dtcp_fastopen.c118 struct sk_buff *syn, in __tcp_fastopen_cookie_gen_cipher()
125 const struct iphdr *iph = ip_hdr(syn); in __tcp_fastopen_cookie_gen_cipher()
136 const struct ipv6hdr *ip6h = ipv6_hdr(syn); in __tcp_fastopen_cookie_gen_cipher()
154 struct sk_buff *syn, in tcp_fastopen_cookie_gen()
162 __tcp_fastopen_cookie_gen_cipher(req, syn, &ctx->key[0], foc); in tcp_fastopen_cookie_gen()
212 struct sk_buff *syn, in tcp_fastopen_cookie_gen_check()
226 __tcp_fastopen_cookie_gen_cipher(req, syn, &ctx->key[i], foc); in tcp_fastopen_cookie_gen_check()
117 __tcp_fastopen_cookie_gen_cipher(struct request_sock *req, struct sk_buff *syn, const siphash_key_t *key, struct tcp_fastopen_cookie *foc) __tcp_fastopen_cookie_gen_cipher() argument
152 tcp_fastopen_cookie_gen(struct sock *sk, struct request_sock *req, struct sk_buff *syn, struct tcp_fastopen_cookie *foc) tcp_fastopen_cookie_gen() argument
210 tcp_fastopen_cookie_gen_check(struct sock *sk, struct request_sock *req, struct sk_buff *syn, struct tcp_fastopen_cookie *orig, struct tcp_fastopen_cookie *valid_foc) tcp_fastopen_cookie_gen_check() argument
/kernel/linux/linux-5.10/lib/
H A Dbch.c405 unsigned int *syn) in compute_syndromes()
418 memset(syn, 0, 2*t*sizeof(*syn)); in compute_syndromes()
427 syn[j] ^= a_pow(bch, (j+1)*(i+s)); in compute_syndromes()
435 syn[2*j+1] = gf_sqr(bch, syn[j]); in compute_syndromes()
444 const unsigned int *syn) in compute_error_locator_polynomial()
448 unsigned int i, j, tmp, l, pd = 1, d = syn[0]; in compute_error_locator_polynomial()
486 d = syn[2*i+2]; in compute_error_locator_polynomial()
488 d ^= gf_mul(bch, elp->c[j], syn[ in compute_error_locator_polynomial()
404 compute_syndromes(struct bch_control *bch, uint32_t *ecc, unsigned int *syn) compute_syndromes() argument
443 compute_error_locator_polynomial(struct bch_control *bch, const unsigned int *syn) compute_error_locator_polynomial() argument
985 unsigned int i, j, syn, syn0, count = 0; chien_search() local
1053 bch_decode(struct bch_control *bch, const uint8_t *data, unsigned int len, const uint8_t *recv_ecc, const uint8_t *calc_ecc, const unsigned int *syn, unsigned int *errloc) bch_decode() argument
[all...]
/kernel/linux/linux-5.10/net/ipv4/netfilter/
H A Dipt_SYNPROXY.c31 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()
/kernel/linux/linux-5.10/net/ipv6/netfilter/
H A Dip6t_SYNPROXY.c31 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()
/kernel/linux/linux-6.6/net/ipv4/netfilter/
H A Dipt_SYNPROXY.c31 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()
/kernel/linux/linux-6.6/net/ipv6/netfilter/
H A Dip6t_SYNPROXY.c31 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()
/kernel/linux/linux-5.10/arch/alpha/kernel/
H A Dcore_cia.c1037 long syn; in cia_decode_ecc_error()
1043 syn = cia->cia_syn & 0xff; in cia_decode_ecc_error()
1044 if (syn == (syn & -syn)) { in cia_decode_ecc_error()
1046 i = ffs(syn) - 1; in cia_decode_ecc_error()
1068 if (data_bit[i] == syn) in cia_decode_ecc_error()
1077 printk (fmt, syn, i);
1034 long syn; cia_decode_ecc_error() local
/kernel/linux/linux-6.6/arch/alpha/kernel/
H A Dcore_cia.c1037 long syn; in cia_decode_ecc_error()
1043 syn = cia->cia_syn & 0xff; in cia_decode_ecc_error()
1044 if (syn == (syn & -syn)) { in cia_decode_ecc_error()
1046 i = ffs(syn) - 1; in cia_decode_ecc_error()
1068 if (data_bit[i] == syn) in cia_decode_ecc_error()
1077 printk (fmt, syn, i);
1034 long syn; cia_decode_ecc_error() local
/kernel/linux/linux-6.6/tools/testing/selftests/netfilter/
H A Dnft_synproxy.sh85 meta iif veth0 tcp flags syn counter notrack
98 tcp flags syn counter drop
/kernel/liteos_m/kal/libc/newlib/porting/include/netinet/
H A Dtcp.h112 uint16_t syn:1; member
126 uint16_t syn:1; member
/kernel/linux/linux-5.10/drivers/edac/
H A Docteon_edac-l2c.c72 "type:%d, syn:0x%x, way:%d", in _octeon_l2c_poll_oct2()
73 err_tdtx.s.type, err_tdtx.s.syn, err_tdtx.s.wayidx); in _octeon_l2c_poll_oct2()
107 "type:%d, syn:0x%x, way:%d", in _octeon_l2c_poll_oct2()
108 err_ttgx.s.type, err_ttgx.s.syn, err_ttgx.s.wayidx); in _octeon_l2c_poll_oct2()
/kernel/linux/linux-5.10/arch/mips/include/asm/octeon/
H A Dcvmx-l2c-defs.h82 __BITFIELD_FIELD(uint64_t syn:10,
98 __BITFIELD_FIELD(uint64_t syn:6,

Completed in 17 milliseconds

123456