Home
last modified time | relevance | path

Searched refs:wscale (Results 1 – 20 of 20) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/net/ethernet/chelsio/libcxgb/
H A Dlibcxgb_cm.h81 u32 wscale = 0; in cxgb_compute_wscale() local
83 while (wscale < 14 && (65535 << wscale) < win) in cxgb_compute_wscale()
84 wscale++; in cxgb_compute_wscale()
85 return wscale; in cxgb_compute_wscale()
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/
H A Docl.hpp352 KernelArg(int _flags, UMat* _m, int wscale=1, int iwscale=1, const void* _obj=0, size_t _sz=0);
363 static KernelArg ReadWrite(const UMat& m, int wscale=1, int iwscale=1) in ReadWrite() argument
364 { return KernelArg(READ_WRITE, (UMat*)&m, wscale, iwscale); } in ReadWrite()
365 static KernelArg ReadWriteNoSize(const UMat& m, int wscale=1, int iwscale=1) in ReadWriteNoSize() argument
366 { return KernelArg(READ_WRITE+NO_SIZE, (UMat*)&m, wscale, iwscale); } in ReadWriteNoSize()
367 static KernelArg ReadOnly(const UMat& m, int wscale=1, int iwscale=1) in ReadOnly() argument
368 { return KernelArg(READ_ONLY, (UMat*)&m, wscale, iwscale); } in ReadOnly()
369 static KernelArg WriteOnly(const UMat& m, int wscale=1, int iwscale=1) in WriteOnly() argument
370 { return KernelArg(WRITE_ONLY, (UMat*)&m, wscale, iwscale); } in WriteOnly()
371 static KernelArg ReadOnlyNoSize(const UMat& m, int wscale=1, int iwscale=1) in ReadOnlyNoSize() argument
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/
H A Docl.hpp352 KernelArg(int _flags, UMat* _m, int wscale=1, int iwscale=1, const void* _obj=0, size_t _sz=0);
363 static KernelArg ReadWrite(const UMat& m, int wscale=1, int iwscale=1) in ReadWrite() argument
364 { return KernelArg(READ_WRITE, (UMat*)&m, wscale, iwscale); } in ReadWrite()
365 static KernelArg ReadWriteNoSize(const UMat& m, int wscale=1, int iwscale=1) in ReadWriteNoSize() argument
366 { return KernelArg(READ_WRITE+NO_SIZE, (UMat*)&m, wscale, iwscale); } in ReadWriteNoSize()
367 static KernelArg ReadOnly(const UMat& m, int wscale=1, int iwscale=1) in ReadOnly() argument
368 { return KernelArg(READ_ONLY, (UMat*)&m, wscale, iwscale); } in ReadOnly()
369 static KernelArg WriteOnly(const UMat& m, int wscale=1, int iwscale=1) in WriteOnly() argument
370 { return KernelArg(WRITE_ONLY, (UMat*)&m, wscale, iwscale); } in WriteOnly()
371 static KernelArg ReadOnlyNoSize(const UMat& m, int wscale=1, int iwscale=1) in ReadOnlyNoSize() argument
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/
H A Docl.hpp352 KernelArg(int _flags, UMat* _m, int wscale=1, int iwscale=1, const void* _obj=0, size_t _sz=0);
363 static KernelArg ReadWrite(const UMat& m, int wscale=1, int iwscale=1) in ReadWrite() argument
364 { return KernelArg(READ_WRITE, (UMat*)&m, wscale, iwscale); } in ReadWrite()
365 static KernelArg ReadWriteNoSize(const UMat& m, int wscale=1, int iwscale=1) in ReadWriteNoSize() argument
366 { return KernelArg(READ_WRITE+NO_SIZE, (UMat*)&m, wscale, iwscale); } in ReadWriteNoSize()
367 static KernelArg ReadOnly(const UMat& m, int wscale=1, int iwscale=1) in ReadOnly() argument
368 { return KernelArg(READ_ONLY, (UMat*)&m, wscale, iwscale); } in ReadOnly()
369 static KernelArg WriteOnly(const UMat& m, int wscale=1, int iwscale=1) in WriteOnly() argument
370 { return KernelArg(WRITE_ONLY, (UMat*)&m, wscale, iwscale); } in WriteOnly()
371 static KernelArg ReadOnlyNoSize(const UMat& m, int wscale=1, int iwscale=1) in ReadOnlyNoSize() argument
[all …]
/OK3568_Linux_fs/kernel/net/netfilter/
H A Dnf_synproxy_core.c70 opts->wscale = *ptr; in synproxy_parse_options()
71 if (opts->wscale > TCP_MAX_WSCALE) in synproxy_parse_options()
72 opts->wscale = TCP_MAX_WSCALE; in synproxy_parse_options()
149 opts->wscale); in synproxy_build_options()
159 opts->tsval |= opts->wscale; in synproxy_init_timestamp_cookie()
160 opts->wscale = info->wscale; in synproxy_init_timestamp_cookie()
175 opts->wscale = opts->tsecr & 0xf; in synproxy_check_timestamp_cookie()
176 if (opts->wscale != 0xf) in synproxy_check_timestamp_cookie()
625 nth->window = htons(ntohs(th->window) >> opts->wscale); in synproxy_send_client_ack()
1040 nth->window = htons(ntohs(th->window) >> opts->wscale); in synproxy_send_client_ack_ipv6()
H A Dnft_synproxy.c163 priv->info.wscale = nla_get_u8(tb[NFTA_SYNPROXY_WSCALE]); in nft_synproxy_do_init()
233 nla_put_u8(skb, NFTA_SYNPROXY_WSCALE, priv->info.wscale) || in nft_synproxy_do_dump()
/OK3568_Linux_fs/kernel/drivers/scsi/cxgbi/
H A Dlibcxgbi.h359 unsigned int wscale = 0; in cxgbi_sock_compute_wscale() local
361 while (wscale < 14 && (65535 << wscale) < win) in cxgbi_sock_compute_wscale()
362 wscale++; in cxgbi_sock_compute_wscale()
363 return wscale; in cxgbi_sock_compute_wscale()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/netfilter/
H A Dxt_SYNPROXY.h15 __u8 wscale; member
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/netfilter/
H A Dxt_SYNPROXY.h15 __u8 wscale; member
/OK3568_Linux_fs/kernel/include/uapi/linux/netfilter/
H A Dnf_synproxy.h19 __u8 wscale; member
/OK3568_Linux_fs/kernel/include/net/netfilter/
H A Dnf_synproxy.h37 u8 wscale; member
/OK3568_Linux_fs/kernel/drivers/infiniband/hw/cxgb4/
H A Dcm.c725 u32 wscale; in send_connect() local
778 wscale = cxgb_compute_wscale(rcv_win); in send_connect()
791 WND_SCALE_V(wscale) | in send_connect()
806 if (wscale && enable_tcp_window_scaling) in send_connect()
1963 u32 wscale; in send_fw_act_open_req() local
1990 wscale = cxgb_compute_wscale(rcv_win); in send_fw_act_open_req()
2004 WND_SCALE_V(wscale) | in send_fw_act_open_req()
2021 if (wscale && enable_tcp_window_scaling) in send_fw_act_open_req()
2419 u32 wscale; in accept_cr() local
2428 wscale = cxgb_compute_wscale(rcv_win); in accept_cr()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/ethernet/chelsio/inline_crypto/chtls/
H A Dchtls_cm.c991 int wscale = 0; in select_rcv_wscale() local
999 while (wscale < 14 && (65535 << wscale) < space) in select_rcv_wscale()
1000 wscale++; in select_rcv_wscale()
1002 return wscale; in select_rcv_wscale()
/OK3568_Linux_fs/kernel/drivers/target/iscsi/cxgbit/
H A Dcxgbit_cm.c1138 u32 wscale; in cxgbit_pass_accept_rpl() local
1157 wscale = cxgb_compute_wscale(csk->rcv_win); in cxgbit_pass_accept_rpl()
1166 WND_SCALE_V(wscale) | in cxgbit_pass_accept_rpl()
1185 if (wscale) in cxgbit_pass_accept_rpl()
/OK3568_Linux_fs/kernel/drivers/scsi/cxgbi/cxgb4i/
H A Dcxgb4i.c211 int wscale = cxgbi_sock_compute_wscale(csk->mss_idx); in send_act_open_req() local
218 WND_SCALE_V(wscale) | in send_act_open_req()
330 int wscale = cxgbi_sock_compute_wscale(csk->mss_idx); in send_act_open_req6() local
337 WND_SCALE_V(wscale) | in send_act_open_req6()
/OK3568_Linux_fs/kernel/drivers/scsi/cxgbi/cxgb3i/
H A Dcxgb3i.c161 unsigned int wscale = cxgbi_sock_compute_wscale(csk->rcv_win); in send_act_open_req() local
174 V_WND_SCALE(wscale) | V_MSS_IDX(csk->mss_idx) | in send_act_open_req()
/OK3568_Linux_fs/kernel/drivers/infiniband/hw/i40iw/
H A Di40iw_type.h718 bool wscale; member
H A Di40iw_cm.c3304 tcp_info->wscale = true; in i40iw_init_tcp_ctx()
H A Di40iw_ctrl.c2959 LS_64(tcp->wscale, I40IWQPC_WSCALE) | in i40iw_sc_qp_setctx()
/OK3568_Linux_fs/kernel/Documentation/networking/
H A Dsnmp_counter.rst1222 …ts sack cubic wscale:7,7 rto:204 rtt:0.98/0.49 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:10 b…
1224 The 'wscale:7,7' means both server and client set the window scale