Home
last modified time | relevance | path

Searched refs:weight (Results 1 – 25 of 119) sorted by relevance

12345

/f-stack/freebsd/contrib/openzfs/include/sys/
H A Dmetaslab_impl.h124 #define WEIGHT_GET_ACTIVE(weight) BF64_GET((weight), 61, 3) argument
125 #define WEIGHT_SET_ACTIVE(weight, x) BF64_SET((weight), 61, 3, x) argument
127 #define WEIGHT_IS_SPACEBASED(weight) \ argument
128 ((weight) == 0 || BF64_GET((weight), 60, 1))
129 #define WEIGHT_SET_SPACEBASED(weight) BF64_SET((weight), 60, 1, 1) argument
134 #define WEIGHT_GET_INDEX(weight) BF64_GET((weight), 54, 6) argument
135 #define WEIGHT_SET_INDEX(weight, x) BF64_SET((weight), 54, 6, x) argument
136 #define WEIGHT_GET_COUNT(weight) BF64_GET((weight), 0, 54) argument
137 #define WEIGHT_SET_COUNT(weight, x) BF64_SET((weight), 0, 54, x) argument
/f-stack/dpdk/examples/qos_sched/
H A Dprofile_ov.cfg66 tc 0 wred weight = 9 9 9
71 tc 1 wred weight = 9 9 9
76 tc 2 wred weight = 9 9 9
81 tc 3 wred weight = 9 9 9
86 tc 4 wred weight = 9 9 9
91 tc 5 wred weight = 9 9 9
96 tc 6 wred weight = 9 9 9
101 tc 7 wred weight = 9 9 9
106 tc 8 wred weight = 9 9 9
111 tc 9 wred weight = 9 9 9
[all …]
H A Dprofile.cfg83 tc 0 wred weight = 9 9 9
88 tc 1 wred weight = 9 9 9
93 tc 2 wred weight = 9 9 9
98 tc 3 wred weight = 9 9 9
103 tc 4 wred weight = 9 9 9
108 tc 5 wred weight = 9 9 9
113 tc 6 wred weight = 9 9 9
118 tc 7 wred weight = 9 9 9
123 tc 8 wred weight = 9 9 9
128 tc 9 wred weight = 9 9 9
[all …]
/f-stack/freebsd/net/route/
H A Droute_helpers.c241 tmp.weight = rc->rc_nh_weight; in decompose_change_notification()
249 tmp.weight = rc->rc_nh_weight; in decompose_change_notification()
271 if (wn_old[idx_old].weight != wn_new[idx_new].weight) { in decompose_change_notification()
274 rc_del.rc_nh_weight = wn_old[idx_old].weight; in decompose_change_notification()
278 rc_add.rc_nh_weight = wn_new[idx_new].weight; in decompose_change_notification()
299 rc_del.rc_nh_weight = wn_old[idx_old].weight; in decompose_change_notification()
320 rc_del.rc_nh_weight = wn_old[idx_old].weight; in decompose_change_notification()
328 rc_del.rc_nh_weight = wn_old[idx_old].weight; in decompose_change_notification()
335 rc_add.rc_nh_weight = wn_new[idx_new].weight; in decompose_change_notification()
364 rc_new.rc_nh_weight = wn[i].weight; in rib_decompose_notification()
[all …]
H A Dnhgrp_ctl.c89 if (wa->weight > wb->weight) in wn_cmp()
91 else if (wa->weight < wb->weight) in wn_cmp()
140 xmin = wn[0].weight; in calc_min_mpath_slots_fast()
142 total += wn[i].weight; in calc_min_mpath_slots_fast()
143 if ((wn[i].weight - last < xmin) && (wn[i].weight != last)) in calc_min_mpath_slots_fast()
144 xmin = wn[i].weight - last; in calc_min_mpath_slots_fast()
145 last = wn[i].weight; in calc_min_mpath_slots_fast()
151 if ((wn[i].weight % xmin) != 0) in calc_min_mpath_slots_fast()
223 remaining_sum += x[i].weight; in compile_nhgrp()
229 nh_weight = (uint64_t)x[i].weight; in compile_nhgrp()
[all …]
/f-stack/dpdk/doc/guides/sample_app_ug/
H A Dqos_scheduler.rst206 tc 0 wred weight = 9 9 9
211 tc 1 wred weight = 9 9 9
216 tc 2 wred weight = 9 9 9
221 tc 3 wred weight = 9 9 9
226 tc 4 wred weight = 9 9 9
231 tc 5 wred weight = 9 9 9
236 tc 6 wred weight = 9 9 9
241 tc 7 wred weight = 9 9 9
246 tc 8 wred weight = 9 9 9
251 tc 9 wred weight = 9 9 9
[all …]
/f-stack/app/nginx-1.16.1/src/stream/
H A Dngx_stream_upstream_least_conn_module.c164 || peer->conns * best->weight < best->conns * peer->weight) in ngx_stream_upstream_get_least_conn_peer()
170 } else if (peer->conns * best->weight == best->conns * peer->weight) { in ngx_stream_upstream_get_least_conn_peer()
201 if (peer->conns * best->weight != best->conns * peer->weight) { in ngx_stream_upstream_get_least_conn_peer()
219 if (peer->effective_weight < peer->weight) { in ngx_stream_upstream_get_least_conn_peer()
H A Dngx_stream_upstream_round_robin.c60 w += server[i].naddrs * server[i].weight; in ngx_stream_upstream_init_round_robin()
98 peer[n].weight = server[i].weight; in ngx_stream_upstream_init_round_robin()
99 peer[n].effective_weight = server[i].weight; in ngx_stream_upstream_init_round_robin()
126 w += server[i].naddrs * server[i].weight; in ngx_stream_upstream_init_round_robin()
162 peer[n].weight = server[i].weight; in ngx_stream_upstream_init_round_robin()
163 peer[n].effective_weight = server[i].weight; in ngx_stream_upstream_init_round_robin()
231 peer[i].weight = 1; in ngx_stream_upstream_init_round_robin()
351 peer[0].weight = 1; in ngx_stream_upstream_create_round_robin_peer()
385 peer[i].weight = 1; in ngx_stream_upstream_create_round_robin_peer()
563 if (peer->effective_weight < peer->weight) { in ngx_stream_upstream_get_peer()
[all …]
H A Dngx_stream_upstream.c409 ngx_int_t weight, max_conns, max_fails; in ngx_stream_upstream_server() local
422 weight = 1; in ngx_stream_upstream_server()
435 weight = ngx_atoi(&value[i].data[7], value[i].len - 7); in ngx_stream_upstream_server()
437 if (weight == NGX_ERROR || weight == 0) { in ngx_stream_upstream_server()
539 us->weight = weight; in ngx_stream_upstream_server()
/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_upstream_least_conn_module.c168 || peer->conns * best->weight < best->conns * peer->weight) in ngx_http_upstream_get_least_conn_peer()
174 } else if (peer->conns * best->weight == best->conns * peer->weight) { in ngx_http_upstream_get_least_conn_peer()
205 if (peer->conns * best->weight != best->conns * peer->weight) { in ngx_http_upstream_get_least_conn_peer()
223 if (peer->effective_weight < peer->weight) { in ngx_http_upstream_get_least_conn_peer()
/f-stack/freebsd/net/altq/
H A Daltq_red.c174 red_alloc(int weight, int inv_pmax, int th_min, int th_max, int flags, in red_alloc() argument
185 if (weight == 0) in red_alloc()
188 rp->red_weight = weight; in red_alloc()
221 if (weight == 0) { in red_alloc()
554 wtab_alloc(int weight) in wtab_alloc() argument
560 if (w->w_weight == weight) { in wtab_alloc()
568 w->w_weight = weight; in wtab_alloc()
574 w->w_tab[0] = ((weight - 1) << FP_SHIFT) / weight; in wtab_alloc()
/f-stack/tools/libxo/doc/_static/
H A Dbasic.css_t108 font-weight: bold;
118 font-weight: bold;
249 font-weight: bold;
294 font-weight: bold;
307 font-weight: bold;
320 font-weight: bold;
329 font-weight: bold;
471 font-weight: bold;
586 font-weight: bold;
596 font-weight: bold;
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dmetaslab.c1147 ASSERT(weight >= SPA_MINBLOCKSIZE || weight == 0); in metaslab_group_sort()
2952 weight = space; in metaslab_space_weight()
2964 weight = 2 * weight - (msp->ms_id * weight) / vd->vdev_ms_count; in metaslab_space_weight()
2965 ASSERT(weight >= space && weight <= 2 * space); in metaslab_space_weight()
2980 return (weight); in metaslab_space_weight()
3022 return (weight); in metaslab_weight_from_range_tree()
3069 return (weight); in metaslab_weight_from_spacemap()
3102 return (weight); in metaslab_segment_weight()
3130 return (weight); in metaslab_segment_weight()
3180 uint64_t weight; in metaslab_weight() local
[all …]
/f-stack/app/nginx-1.16.1/src/http/
H A Dngx_http_upstream_round_robin.c54 w += server[i].naddrs * server[i].weight; in ngx_http_upstream_init_round_robin()
92 peer[n].weight = server[i].weight; in ngx_http_upstream_init_round_robin()
93 peer[n].effective_weight = server[i].weight; in ngx_http_upstream_init_round_robin()
120 w += server[i].naddrs * server[i].weight; in ngx_http_upstream_init_round_robin()
156 peer[n].weight = server[i].weight; in ngx_http_upstream_init_round_robin()
157 peer[n].effective_weight = server[i].weight; in ngx_http_upstream_init_round_robin()
225 peer[i].weight = 1; in ngx_http_upstream_init_round_robin()
341 peer[0].weight = 1; in ngx_http_upstream_create_round_robin_peer()
375 peer[i].weight = 1; in ngx_http_upstream_create_round_robin_peer()
554 if (peer->effective_weight < peer->weight) { in ngx_http_upstream_get_peer()
[all …]
/f-stack/dpdk/drivers/net/mvpp2/
H A Dmrvl_tm.c468 uint32_t priority, uint32_t weight, uint32_t level_id, in mrvl_node_check_params() argument
481 if (weight > MRVL_WEIGHT_MAX) in mrvl_node_check_params()
574 uint32_t parent_node_id, uint32_t priority, uint32_t weight, in mrvl_node_add() argument
588 ret = mrvl_node_check_params(dev, node_id, priority, weight, level_id, in mrvl_node_add()
645 node->weight = weight; in mrvl_node_add()
844 if (node->weight) { in mrvl_hierarchy_commit()
846 p->weight = node->weight; in mrvl_hierarchy_commit()
849 p->weight = 0; in mrvl_hierarchy_commit()
876 p->weight = 0; in mrvl_hierarchy_commit()
/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_resolver.h66 u_short weight; member
73 u_short weight; member
81 u_short weight; member
/f-stack/dpdk/drivers/net/softnic/
H A Drte_eth_softnic_tm.c1435 uint32_t weight, in node_add_check_port() argument
1461 if (weight != 1) in node_add_check_port()
1509 uint32_t weight, in node_add_check_subport() argument
1533 if (weight != 1) in node_add_check_subport()
1658 uint32_t weight, in node_add_check_tc() argument
1674 if (weight != 1) in node_add_check_tc()
1876 if (weight == 0 || weight >= UINT8_MAX) in node_add_check()
2001 n->weight = weight; in pmd_tm_node_add()
2865 np->weight = weight; in update_pipe_weight()
2913 nq->weight = weight; in update_queue_weight()
[all …]
/f-stack/dpdk/drivers/event/dlb/pf/base/
H A Ddlb_osdep_bitmap.h343 int weight = 0; in dlb_bitmap_count() local
354 weight++; in dlb_bitmap_count()
356 return weight; in dlb_bitmap_count()
/f-stack/dpdk/drivers/event/dlb2/pf/base/
H A Ddlb2_osdep_bitmap.h340 int weight = 0; in dlb2_bitmap_count() local
351 weight++; in dlb2_bitmap_count()
353 return weight; in dlb2_bitmap_count()
/f-stack/dpdk/drivers/net/ixgbe/
H A Dixgbe_tm.c21 uint32_t weight, uint32_t level_id,
463 uint32_t priority, uint32_t weight, in ixgbe_node_param_check() argument
479 if (weight != 1) { in ixgbe_node_param_check()
560 uint32_t weight, uint32_t level_id, in ixgbe_node_add() argument
586 ret = ixgbe_node_param_check(dev, node_id, priority, weight, in ixgbe_node_add()
635 tm_node->weight = weight; in ixgbe_node_add()
717 tm_node->weight = weight; in ixgbe_node_add()
/f-stack/dpdk/drivers/net/ipn3ke/
H A Dipn3ke_tm.c141 nodes->weight = 0; in ipn3ke_hw_tm_init()
158 nodes->weight = 0; in ipn3ke_hw_tm_init()
175 nodes->weight = 0; in ipn3ke_hw_tm_init()
1195 weight, in ipn3ke_tm_node_add()
1304 n->weight = weight; in ipn3ke_tm_node_add()
1626 n->weight, in ipn3ke_hw_tm_node_wr()
1657 n->weight, in ipn3ke_hw_tm_node_wr()
1709 n->weight, in ipn3ke_hw_tm_node_wr()
1882 n->weight = 0; in ipn3ke_tm_hierarchy_commit_clear()
1896 n->weight = 0; in ipn3ke_tm_hierarchy_commit_clear()
[all …]
/f-stack/tools/libxo/xohtml/
H A Dxohtml.css52 * font-weight: bold;
309 font-weight: bold;
409 font-weight: 700;
497 font-weight: normal;
660 font-weight: bold;
684 font-weight: bold;
708 font-weight: normal;
712 font-weight: bold;
761 font-weight: 600;
930 font-weight: bold;
[all …]
/f-stack/freebsd/contrib/device-tree/Bindings/iio/adc/
H A Davia-hx711.yaml7 title: AVIA HX711 ADC chip for weight cells
61 weight {
/f-stack/dpdk/drivers/net/i40e/
H A Di40e_tm.c22 uint32_t weight, uint32_t level_id,
355 uint32_t priority, uint32_t weight, in i40e_node_param_check() argument
373 if (weight != 1) { in i40e_node_param_check()
452 uint32_t weight, uint32_t level_id, in i40e_node_add() argument
476 ret = i40e_node_param_check(dev, node_id, priority, weight, in i40e_node_add()
525 tm_node->weight = weight; in i40e_node_add()
599 tm_node->weight = weight; in i40e_node_add()
/f-stack/dpdk/lib/librte_ethdev/
H A Drte_tm.c218 uint32_t weight, in rte_tm_node_add() argument
225 node_id, parent_node_id, priority, weight, level_id, in rte_tm_node_add()
274 uint32_t weight, in rte_tm_node_parent_update() argument
279 node_id, parent_node_id, priority, weight, error); in rte_tm_node_parent_update()

12345