Home
last modified time | relevance | path

Searched refs:win (Results 1 – 25 of 29) sorted by relevance

12

/f-stack/freebsd/arm/nvidia/drm2/
H A Dtegra_dc.c364 win->src_x, win->src_y, win->src_w, win->src_h); in dc_setup_window()
366 win->dst_x, win->dst_y, win->dst_w, win->dst_h); in dc_setup_window()
368 win->bits_per_pixel, win->color_mode, win->swap); in dc_setup_window()
406 h_incr_dda = dc_scaling_incr(win->src_w, win->dst_w, 4); in dc_setup_window()
407 v_incr_dda = dc_scaling_incr(win->src_h, win->dst_h, 15); in dc_setup_window()
411 h_incr_dda = dc_scaling_incr(win->src_h, win->dst_h, 4); in dc_setup_window()
430 WR4(sc, DC_WIN_SIZE, WIN_SIZE(win->dst_w, win->dst_h)); in dc_setup_window()
445 win->stride[1] << 16 | win->stride[0]); in dc_setup_window()
521 memset(&win, 0, sizeof(win)); in dc_plane_update()
618 memset(&win, 0, sizeof(win)); in dc_set_base()
[all …]
/f-stack/freebsd/contrib/ck/include/
H A Dck_pflock.h44 uint32_t win; member
63 pf->win = 0; in ck_pflock_init()
90 ticket = ck_pr_faa_32(&pf->win, 1); in ck_pflock_write_lock()
/f-stack/freebsd/contrib/zlib/test/
H A Dinfcover.c296 ret = inflateInit2(&strm, win); in inf()
302 if (win == 47) { in inf()
474 unsigned char win[32768]; in cover_back() local
476 ret = inflateBackInit_(Z_NULL, 0, win, 0, 0); in cover_back()
485 ret = inflateBackInit(&strm, 15, win); assert(ret == Z_OK); in cover_back()
501 ret = inflateBackInit(&strm, 15, win); assert(ret == Z_OK); in cover_back()
511 unsigned char *in, *out, *win; in try() local
523 win = malloc(32768); in try()
524 assert(win != NULL); in try()
558 ret = inflateBackInit(&strm, 15, win); in try()
[all …]
/f-stack/freebsd/netinet/cc/
H A Dcc_chd.c145 unsigned long win; in chd_window_decrease() local
147 win = min(CCV(ccv, snd_wnd), CCV(ccv, snd_cwnd)) / CCV(ccv, t_maxseg); in chd_window_decrease()
148 win -= max((win / 2), 1); in chd_window_decrease()
149 CCV(ccv, snd_ssthresh) = max(win, 2) * CCV(ccv, t_maxseg); in chd_window_decrease()
/f-stack/freebsd/arm/mv/
H A Dmv_common.c1148 if (i == win) in decode_win_overlap()
1155 else if (((wintab + win)->base + (wintab + win)->size - 1) < in decode_win_overlap()
1170 int win, i; in decode_win_cpu_set() local
1176 win = 0; in decode_win_cpu_set()
1180 while ((win >= 0) && (win < soc_decode_win_spec->mv_win_cpu_max)) { in decode_win_cpu_set()
1181 cr = win_cpu_cr_read(win); in decode_win_cpu_set()
1189 win += i; in decode_win_cpu_set()
1191 if ((win < 0) || (win >= soc_decode_win_spec->mv_win_cpu_max) || in decode_win_cpu_set()
1196 win_cpu_br_write(win, br); in decode_win_cpu_set()
1198 if (win_cpu_can_remap(win)) { in decode_win_cpu_set()
[all …]
/f-stack/freebsd/netinet/tcp_stacks/
H A Drack_bbr_common.c792 int32_t win; in ctf_calc_rwin() local
799 win = sbspace(&so->so_rcv); in ctf_calc_rwin()
800 if (win < 0) in ctf_calc_rwin()
801 win = 0; in ctf_calc_rwin()
802 tp->rcv_wnd = imax(win, (int)(tp->rcv_adv - tp->rcv_nxt)); in ctf_calc_rwin()
H A Drack.c1492 uint32_t win; in rc_init_window() local
1502 return(win); in rc_init_window()
14380 uint32_t win, snt; in rack_set_sockopt() local
14389 win = rc_init_window(rack); in rack_set_sockopt()
14394 if ((snt < win) && in rack_set_sockopt()
14395 (tp->snd_cwnd < win)) in rack_set_sockopt()
14396 tp->snd_cwnd = win; in rack_set_sockopt()
14404 uint32_t win, snt; in rack_set_sockopt() local
14412 if ((snt < win) && in rack_set_sockopt()
14427 if (tp->snd_cwnd < win) in rack_set_sockopt()
[all …]
/f-stack/dpdk/buildtools/
H A Dmeson.build11 # set up map-to-win script using python, either built-in or external
/f-stack/dpdk/drivers/net/cxgbe/base/
H A Dcommon.h545 int t4_memory_rw_addr(struct adapter *adap, int win,
547 int t4_memory_rw_mtype(struct adapter *adap, int win, int mtype, u32 maddr,
549 static inline int t4_memory_rw(struct adapter *adap, int win, in t4_memory_rw() argument
553 return t4_memory_rw_mtype(adap, win, mtype, maddr, len, hbuf, dir); in t4_memory_rw()
H A Dt4_hw.c5530 int t4_memory_rw_addr(struct adapter *adap, int win, u32 addr, in t4_memory_rw_addr() argument
5560 win)); in t4_memory_rw_addr()
5577 PCIE_MEM_ACCESS_REG(A_PCIE_MEM_ACCESS_OFFSET, win), in t4_memory_rw_addr()
5580 PCIE_MEM_ACCESS_REG(A_PCIE_MEM_ACCESS_OFFSET, win)); in t4_memory_rw_addr()
5638 win), pos | win_pf); in t4_memory_rw_addr()
5641 win)); in t4_memory_rw_addr()
5689 int t4_memory_rw_mtype(struct adapter *adap, int win, int mtype, u32 maddr, in t4_memory_rw_mtype() argument
5710 return t4_memory_rw_addr(adap, win, in t4_memory_rw_mtype()
/f-stack/app/nginx-1.16.1/auto/
H A Dinstall120 cp conf/koi-win '\$(DESTDIR)$NGX_CONF_PREFIX'
122 cp conf/win-utf '\$(DESTDIR)$NGX_CONF_PREFIX'
/f-stack/freebsd/contrib/zstd/
H A Dappveyor.yml92 cd programs\ && 7z a -tzip -mx9 zstd-win-binary-%PLATFORM%.zip zstd.exe &&
93 appveyor PushArtifact zstd-win-binary-%PLATFORM%.zip &&
103 7z a -tzip -mx9 zstd-win-release-%PLATFORM%.zip * &&
104 appveyor PushArtifact zstd-win-release-%PLATFORM%.zip
H A DCONTRIBUTING.md201 smaller than the performance win you are expecting.
256 Unless your performance win is large enough to be visible despite the intrinsic noise
260 obscured. So unless you see a large performance win (10-15% consistently) using just
/f-stack/freebsd/kern/
H A DMake.tags.inc10 # win when there is a struct tag with the same name (e.g., vmmeter). The
/f-stack/freebsd/netinet/
H A Dtcp_syncache.c1455 int win, ip_ttl, ip_tos; in syncache_add() local
1508 win = so->sol_sbrcv_hiwat; in syncache_add()
1726 win = imax(win, 0); in syncache_add()
1727 win = imin(win, TCP_MAXWIN); in syncache_add()
1728 sc->sc_wnd = win; in syncache_add()
H A Dtcp_subr.c1409 int optlen, tlen, win; in tcp_respond() local
1429 win = 0; in tcp_respond()
1432 win = sbspace(&inp->inp_socket->so_rcv); in tcp_respond()
1433 if (win > TCP_MAXWIN << tp->rcv_scale) in tcp_respond()
1434 win = TCP_MAXWIN << tp->rcv_scale; in tcp_respond()
1624 nth->th_win = htons((u_short) (win >> tp->rcv_scale)); in tcp_respond()
1626 nth->th_win = htons((u_short)win); in tcp_respond()
H A Dtcp_input.c1503 int rstreason, todrop, win, incforsyn = 0; in tcp_do_segment() local
1950 win = sbspace(&so->so_rcv); in tcp_do_segment()
1951 if (win < 0) in tcp_do_segment()
1952 win = 0; in tcp_do_segment()
1953 tp->rcv_wnd = imax(win, (int)(tp->rcv_adv - tp->rcv_nxt)); in tcp_do_segment()
/f-stack/app/nginx-1.16.1/conf/
H A Dwin-utf4 # use contrib/unicode2nginx/win-utf map instead.
/f-stack/freebsd/contrib/ipfilter/netinet/
H A Dip_state.c2168 u_32_t win, maxwin; local
2178 win = ntohs(tcp->th_win);
2180 win = ntohs(tcp->th_win) << fdata->td_winscale;
2185 if (win == 0)
2186 win = 1;
2204 fdata->td_maxwin = win;
2217 fdata->td_maxend = end + win;
2319 if (fdata->td_maxwin < win)
2320 fdata->td_maxwin = win;
2323 if (SEQ_GE(ack + win, tdata->td_maxend))
[all …]
/f-stack/freebsd/netpfil/pf/
H A Dpf.c2557 th->th_win = htons(win); in pf_send_tcp()
3783 int win = s->src.max_win; in pf_create_state() local
3785 s->src.max_win = (win - 1) >> in pf_create_state()
4063 u_int16_t win = ntohs(th->th_win); in pf_tcp_track_full() local
4116 win = ((u_int32_t)win + (1 << sws) - 1) in pf_tcp_track_full()
4143 if (win > src->max_win) in pf_tcp_track_full()
4144 src->max_win = win; in pf_tcp_track_full()
4222 if (src->max_win < win) in pf_tcp_track_full()
4223 src->max_win = win; in pf_tcp_track_full()
4321 if (src->max_win < win) in pf_tcp_track_full()
[all …]
/f-stack/tools/libxo/xohtml/external/
H A Djquery.js8987 win = getWindow(doc), variable
9180 var elem, win;
9189 win = getWindow( elem );
9192 return win ? ("pageXOffset" in win) ? win[ i ? "pageYOffset" : "pageXOffset" ] :
9193 jQuery.support.boxModel && win.document.documentElement[ method ] ||
9194 win.document.body[ method ] :
9200 win = getWindow( this );
9202 if ( win ) {
9203 win.scrollTo(
9204 !i ? val : jQuery( win ).scrollLeft(),
[all …]
H A Djquery.qtip.js710 win = $(window),
746 position.left -= mouse.scrollX - win.scrollLeft();
747 position.top -= mouse.scrollY - win.scrollTop();
812 position.left -= win.scrollLeft();
813 position.top -= win.scrollTop();
/f-stack/freebsd/contrib/device-tree/src/arm64/allwinner/
H A Dsun50i-a64-orangepi-win.dts14 compatible = "xunlong,orangepi-win", "allwinner,sun50i-a64";
/f-stack/freebsd/contrib/v4l/
H A Dvideodev2.h1613 struct v4l2_window win; /* V4L2_BUF_TYPE_VIDEO_OVERLAY */ member
/f-stack/app/nginx-1.16.1/
H A DCHANGES.ru6765 *) Изменение: в таблице перекодировки koi-win изменены коды символа
6768 *) Добавление: в таблицу перекодировки koi-win добавлены символы евро и
6781 *) Добавление: в таблицу перекодировки koi-win добавлены украинские и

12