| /linux/tools/testing/selftests/bpf/progs/ |
| H A 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() 123 if (!tcph->fin) in egress_close_remote() 139 if (tcph->fin) in ingress_close_remote() 143 if (tcph->fin || tcph->syn || !tcph->ack) in ingress_close_remote() 160 if (tcph->fin) in egress_close_local() [all …]
|
| H A D | test_misc_tcp_hdr_options.c | 148 if (th->fin) in check_active_hdr_in() 151 if (th->ack && !th->fin && tcp_hdrlen(th) == skops->skb_len) in check_active_hdr_in()
|
| H A D | xdp_flowtable.c | 57 if (tcph->fin || tcph->rst) in xdp_flowtable_offload_check_tcp_state()
|
| /linux/tools/testing/selftests/net/tcp_ao/lib/ |
| H A D | ftrace-tcp.c | 38 int fin; member 60 int fin, int syn, int rst, int psh, int ack, in __trace_event_expect() argument 71 .fin = fin, in __trace_event_expect() 125 unsigned int fin:1, member 166 if (p->fin >= 0 && p->fin != e->fin) 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() 363 out->fin = (fin == 'F'); in tracer_scan_event() 369 if ((fin != 'F' && fin != ' ') || in tracer_scan_event() [all …]
|
| H A D | aolib.h | 767 int fin, int syn, int rst, int psh, int ack, 773 int fin, int syn, int rst, int psh, int ack) in trace_hash_event_expect() argument 779 fin, syn, rst, psh, ack, in trace_hash_event_expect() 788 int fin, int syn, int rst, int psh, int ack, in trace_ao_event_expect() argument 795 fin, syn, rst, psh, ack, in trace_ao_event_expect()
|
| /linux/sound/usb/line6/ |
| H A D | capture.c | 40 struct usb_iso_packet_descriptor *fin = in submit_audio_in_urb() local 42 fin->offset = urb_size; in submit_audio_in_urb() 43 fin->length = line6pcm->max_packet_size_in; in submit_audio_in_urb() 162 struct usb_iso_packet_descriptor *fin = &urb->iso_frame_desc[i]; in audio_in_callback() local 164 if (fin->status == -EXDEV) { in audio_in_callback() 169 fbuf = urb->transfer_buffer + fin->offset; in audio_in_callback() 170 fsize = fin->actual_length; in audio_in_callback()
|
| /linux/samples/bpf/ |
| H A D | hbm.c | 216 FILE *fin; in run_bpf_prog() local 228 fin = fopen("/sys/class/net/eth0/statistics/tx_bytes", "r"); in run_bpf_prog() 229 if (fscanf(fin, "%llu", &last_eth_tx_bytes) != 1) in run_bpf_prog() 231 fclose(fin); in run_bpf_prog() 246 fin = fopen("/sys/class/net/eth0/statistics/tx_bytes", in run_bpf_prog() 248 if (fscanf(fin, "%llu", &new_eth_tx_bytes) != 1) in run_bpf_prog() 250 fclose(fin); in run_bpf_prog()
|
| /linux/sound/soc/renesas/rcar/ |
| H A D | src.c | 215 u32 fin, fout, new_rate; in rsnd_src_set_convert_rate() local 225 fin = rsnd_src_get_in_rate(priv, io); in rsnd_src_set_convert_rate() 251 base = (u64)0x0400000 * fin; in rsnd_src_set_convert_rate() 277 u32 fin, fout; in rsnd_src_init_convert_rate() local 290 fin = rsnd_src_get_in_rate(priv, io); in rsnd_src_init_convert_rate() 296 if (fin == fout) in rsnd_src_init_convert_rate() 298 else if (fin > fout) in rsnd_src_init_convert_rate() 299 ratio = 100 * fin / fout; in rsnd_src_init_convert_rate() 301 ratio = 100 * fout / fin; in rsnd_src_init_convert_rate() 308 use_src = (fin != fout) | rsnd_src_sync_is_enabled(mod); in rsnd_src_init_convert_rate() [all …]
|
| /linux/drivers/media/dvb-frontends/ |
| H A D | ves1820.c | 109 u32 fin; in ves1820_set_symbolrate() local 151 fin = state->config->xin >> 4; in ves1820_set_symbolrate() 153 ratio = (symbolrate << 4) / fin; in ves1820_set_symbolrate() 154 tmp = ((symbolrate << 4) % fin) << 8; in ves1820_set_symbolrate() 155 ratio = (ratio << 8) + tmp / fin; in ves1820_set_symbolrate() 156 tmp = (tmp % fin) << 8; in ves1820_set_symbolrate() 157 ratio = (ratio << 8) + DIV_ROUND_CLOSEST(tmp, fin); in ves1820_set_symbolrate()
|
| /linux/drivers/clk/ |
| H A D | clk-axi-clkgen.c | 132 unsigned long fin, unsigned long fout, in axi_clkgen_calc_params() argument 142 fin /= 1000; in axi_clkgen_calc_params() 150 d_min = max(DIV_ROUND_UP(fin, limits->fpfd_max), 1); in axi_clkgen_calc_params() 151 d_max = min(fin / limits->fpfd_min, 80); in axi_clkgen_calc_params() 157 m_min = max(DIV_ROUND_UP(fvco_min_fract, fin) * d_min, 1); in axi_clkgen_calc_params() 158 m_max = min(fvco_max_fract * d_max / fin, 64 << fract_shift); in axi_clkgen_calc_params() 161 _d_min = max(d_min, DIV_ROUND_UP(fin * m, fvco_max_fract)); in axi_clkgen_calc_params() 162 _d_max = min(d_max, fin * m / fvco_min_fract); in axi_clkgen_calc_params() 165 fvco = fin * m / d; in axi_clkgen_calc_params()
|
| /linux/drivers/phy/rockchip/ |
| H A D | phy-rockchip-samsung-dcphy.c | 1128 u64 fin, fvco, fout; in samsung_mipi_dcphy_pll_round_rate() local 1146 fin = div64_ul(prate, MSEC_PER_SEC); in samsung_mipi_dcphy_pll_round_rate() 1164 min_prediv = DIV_ROUND_UP_ULL(fin, 30 * MSEC_PER_SEC); in samsung_mipi_dcphy_pll_round_rate() 1165 max_prediv = DIV_ROUND_CLOSEST_ULL(fin, 6 * MSEC_PER_SEC); in samsung_mipi_dcphy_pll_round_rate() 1170 _fbdiv = DIV_ROUND_CLOSEST_ULL(fvco * _prediv, 2 * fin); in samsung_mipi_dcphy_pll_round_rate() 1177 _dsm = ((_prediv * fvco) - (2 * _fbdiv * fin)); in samsung_mipi_dcphy_pll_round_rate() 1178 _dsm = DIV_ROUND_UP_ULL(_dsm << 15, fin); in samsung_mipi_dcphy_pll_round_rate() 1182 tmp = DIV_ROUND_CLOSEST_ULL((_fbdiv * fin * 2 * 1000), _prediv); in samsung_mipi_dcphy_pll_round_rate() 1183 tmp += DIV_ROUND_CLOSEST_ULL((_dsm * fin * 1000), _prediv << 15); in samsung_mipi_dcphy_pll_round_rate() 1402 unsigned long fin = div64_ul(clk_get_rate(samsung->ref_clk), MSEC_PER_SEC); in samsung_mipi_dcphy_pll_ssc_modulation_calc() local [all …]
|
| /linux/Documentation/userspace-api/media/rc/ |
| H A D | keytable.c.rst | 103 FILE *fin; 107 fin=fopen(argv[2],"r"); 108 if (fin==NULL) { 122 while (fgets(s,sizeof(s),fin)) {
|
| /linux/tools/bpf/ |
| H A D | bpf_dbg.c | 1318 static void init_shell(FILE *fin, FILE *fout) in init_shell() argument 1325 rl_instream = fin; in init_shell() 1350 static void exit_shell(FILE *fin, FILE *fout) in exit_shell() argument 1362 if (fin != stdin) in exit_shell() 1363 fclose(fin); in exit_shell() 1368 static int run_shell_loop(FILE *fin, FILE *fout) in run_shell_loop() argument 1372 init_shell(fin, fout); in run_shell_loop() 1384 exit_shell(fin, fout); in run_shell_loop() 1390 FILE *fin = NULL, *fout = NULL; in main() local 1393 fin = fopen(argv[1], "r"); in main() [all …]
|
| /linux/net/ipv4/netfilter/ |
| H A 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/tools/mm/ |
| H A D | page_owner_sort.c | 113 int read_block(char *buf, char *ext_buf, int buf_size, FILE *fin) in read_block() 117 while (buf_end - curr > 1 && fgets(curr, buf_end - curr, fin)) { in read_block() 713 FILE *fin, *fout; in main() 838 fin = fopen(argv[optind], "r"); in main() 839 if (!fin) { in main() 856 fstat(fileno(fin), &st); in main() 868 int buf_len = read_block(buf, ext_buf, BUF_SIZE, fin); in main() 106 read_block(char * buf,char * ext_buf,int buf_size,FILE * fin) read_block() argument 665 FILE *fin, *fout; main() local
|
| /linux/net/ipv6/netfilter/ |
| H A 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/Documentation/translations/zh_CN/infiniband/ |
| H A D | tag_matching.rst | 44 RDMA读取操作。为了使缓冲区得到重用,需要收到一个fin消息。
|
| /linux/include/net/psp/ |
| H A D | functions.h | 72 bool fin = !!(TCP_SKB_CB(skb)->tcp_flags & TCPHDR_FIN); in psp_is_allowed_nondata() local 77 pure_fin = fin && end_seq - seq == 1; in psp_is_allowed_nondata()
|
| /linux/drivers/spi/ |
| H A D | spi-imx.c | 216 static unsigned int spi_imx_clkdiv_1(unsigned int fin, in spi_imx_clkdiv_1() argument 222 if (fspi * mxc_clkdivs[i] >= fin) in spi_imx_clkdiv_1() 225 *fres = fin / mxc_clkdivs[i]; in spi_imx_clkdiv_1() 230 static unsigned int spi_imx_clkdiv_2(unsigned int fin, in spi_imx_clkdiv_2() argument 236 if (fspi * div >= fin) in spi_imx_clkdiv_2() 242 *fres = fin / div; in spi_imx_clkdiv_2() 522 unsigned int fin = spi_imx->spi_clk; in mx51_ecspi_clkdiv() local 524 fspi = min(fspi, fin); in mx51_ecspi_clkdiv() 526 post = fls(fin) - fls(fspi); in mx51_ecspi_clkdiv() 527 if (fin > fspi << post) in mx51_ecspi_clkdiv() [all …]
|
| /linux/drivers/gpu/drm/bridge/imx/ |
| H A D | imx93-mipi-dsi.c | 225 unsigned long fin = dsi->ref_clk_rate; in dphy_pll_get_configure_from_opts() local 250 min_n = DIV_ROUND_UP_ULL((u64)fin, MHZ(8)); in dphy_pll_get_configure_from_opts() 251 max_n = DIV_ROUND_DOWN_ULL((u64)fin, MHZ(2)); in dphy_pll_get_configure_from_opts() 262 m = DIV_ROUND_CLOSEST(fout * n * fvco_div, fin); in dphy_pll_get_configure_from_opts() 269 tmp = m * fin; in dphy_pll_get_configure_from_opts()
|
| /linux/tools/include/uapi/linux/ |
| H A D | tcp.h | 33 fin:1, member 51 fin:1; member
|
| /linux/drivers/clk/mediatek/ |
| H A D | clk-pll.c | 48 static unsigned long __mtk_pll_recalc_rate(struct mtk_clk_pll *pll, u32 fin, in __mtk_pll_recalc_rate() argument 62 vco = (u64)fin * pcw; in __mtk_pll_recalc_rate() 147 u32 freq, u32 fin) in mtk_pll_calc_values() argument 178 do_div(_pcw, fin); in mtk_pll_calc_values()
|
| /linux/drivers/net/wireless/ath/carl9170/ |
| H A D | fw.c | 137 unsigned long fin, diff; in carl9170_fw_checksum() local 165 fin = (unsigned long) last_desc + sizeof(*last_desc); in carl9170_fw_checksum() 166 diff = fin - (unsigned long) otus_desc; in carl9170_fw_checksum()
|
| /linux/sound/soc/codecs/ |
| H A D | madera.c | 4203 unsigned int fin; 4211 .fin = 32768, 4218 .fin = 32768, member 4318 unsigned int fin, unsigned int fout) in madera_disable_fll_ao() 4326 fll->ref_freq == fin && fll->fout == fout) in madera_disable_fll_ao() 4329 madera_fll_dbg(fll, "Change FLL_AO refclk to fin=%u fout=%u source=%d\n", in madera_disable_fll_ao() 4330 fin, fout, source); in madera_disable_fll_ao() 4332 if (fout && (fll->ref_freq != fin || fll->fout != fout)) { in madera_set_fll_ao_refclk() 4334 if (madera_fllao_settings[i].fin == fin in madera_set_fll_ao_refclk() 4333 madera_set_fll_ao_refclk(struct madera_fll * fll,int source,unsigned int fin,unsigned int fout) madera_set_fll_ao_refclk() argument 4421 madera_fllhj_apply(struct madera_fll * fll,int fin) madera_fllhj_apply() argument 4655 madera_fllhj_set_refclk(struct madera_fll * fll,int source,unsigned int fin,unsigned int fout) madera_fllhj_set_refclk() argument [all...] |
| /linux/arch/m68k/ifpsp060/ |
| H A D | MISC | 68 fin.s : 2.4 127 fin.s : 2.4
|