Home
last modified time | relevance | path

Searched full:cubic (Results 1 – 25 of 54) sorted by relevance

123

/openbmc/webui-vue/src/assets/styles/bmc/helpers/
H A D_motion.scss9 $standard-easing--productive: cubic-bezier(0.2, 0, 0.38, 0.9);
10 $standard-easing--expressive: cubic-bezier(0.4, 0.14, 0.3, 1);
11 $entrance-easing--productive: cubic-bezier(0, 0, 0.38, 0.9);
12 $entrance-easing--expressive: cubic-bezier(0, 0, 0.3, 1);
13 $exit-easing--productive: cubic-bezier(0.2, 0, 1, 0.9);
14 $exit-easing--expressive: cubic-bezier(0.4, 0.14, 1, 1);
/openbmc/phosphor-webui/app/common/styles/base/
H A Dvariables.scss9 $standard-easing--productive: cubic-bezier(0.2, 0, 0.38, 0.9);
10 $standard-easing--expressive: cubic-bezier(0.4, 0.14, 0.3, 1);
11 $entrance-easing--productive: cubic-bezier(0, 0, 0.38, 0.9);
12 $entrance-easing--expressive: cubic-bezier(0, 0, 0.3, 1);
13 $exit-easing--productive: cubic-bezier(0.2, 0, 1, 0.9);
14 $exit-easing--expressive: cubic-bezier(0.4, 0.14, 1, 1);
H A Dmixins.scss58 transition: 110ms cubic-bezier(0.4, 0.14, 1, 1);
/openbmc/webui-vue/docs/guide/guidelines/
H A Dmotion.md27 $standard-easing--productive: cubic-bezier(0.2, 0, 0.38, 0.9);
28 $standard-easing--expressive: cubic-bezier(0.4, 0.14, 0.3, 1);
29 $entrance-easing--productive: cubic-bezier(0, 0, 0.38, 0.9);
30 $entrance-easing--expressive: cubic-bezier(0, 0, 0.3, 1);
31 $exit-easing--productive: cubic-bezier(0.2, 0, 1, 0.9);
32 $exit-easing--expressive: cubic-bezier(0.4, 0.14, 1, 1);
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Dbpf_dctcp_release.c14 const char cubic[] = "cubic"; variable
19 (void *)cubic, sizeof(cubic)); in BPF_STRUCT_OPS()
H A Dconnect4_prog.c72 char cubic[TCP_CA_NAME_MAX] = "cubic"; in set_cc() local
79 if (bpf_setsockopt(ctx, SOL_TCP, TCP_CONGESTION, &cubic, sizeof(cubic))) in set_cc()
81 if (verify_cc(ctx, cubic)) in set_cc()
H A Dbpf_cubic.c199 * Shift epoch_start to keep cwnd growth to cubic curve. in BPF_PROG()
229 /* calculate the cubic root of x using a table lookup followed by one
278 /* The CUBIC function can update ca->cnt at most once per jiffy. in bictcp_update()
291 ca->tcp_cwnd = cwnd; /* syn with cubic */ in bictcp_update()
306 /* cubic function - calc*/ in bictcp_update()
338 /* cubic function - calc bictcp_cnt*/ in bictcp_update()
346 * The initial growth of cubic function may be too conservative in bictcp_update()
374 /* The maximum rate of cwnd increase CUBIC allows is 1 packet per in bictcp_update()
533 struct tcp_congestion_ops cubic = { variable
H A Dsockopt_sk.c182 /* Always use cubic */ in _setsockopt()
187 memcpy(optval, "cubic", 5); in _setsockopt()
H A Dsockopt_qos_to_cc.c21 char cc_cubic[TCP_CA_NAME_MAX] = "cubic"; in sockopt_qos_to_cc()
/openbmc/linux/net/ipv4/
H A Dtcp_cubic.c3 * TCP CUBIC: Binary Increase Congestion control for TCP v2.3
6 * This is from the implementation of CUBIC TCP in
8 * "CUBIC: A New TCP-Friendly High-Speed TCP Variant"
13 * CUBIC integrates a new slow start algorithm, called HyStart.
23 * Unless CUBIC is enabled and congestion window is large
152 * Shift epoch_start to keep cwnd growth to cubic curve. in cubictcp_cwnd_event()
163 /* calculate the cubic root of x using a table lookup followed by one
225 /* The CUBIC function can update ca->cnt at most once per jiffy. in bictcp_update()
238 ca->tcp_cwnd = cwnd; /* syn with cubic */ in bictcp_update()
253 /* cubic function - calc*/ in bictcp_update()
[all …]
H A DKconfig476 selection will be made (CUBIC with new Reno as a fallback).
497 tristate "CUBIC TCP"
500 This is version 2.0 of BIC-TCP which uses a cubic growth function
502 See http://www.csc.ncsu.edu/faculty/rhee/export/bitcp/cubic-paper.pdf
692 bool "Cubic" if TCP_CONG_CUBIC=y
732 default "cubic" if DEFAULT_CUBIC
742 default "cubic"
/openbmc/webui-vue/docs/customization/
H A Dreadme.md227 $standard-easing--productive: cubic-bezier(0.2, 0, 0.38, 0.9);
228 $standard-easing--expressive: cubic-bezier(0.4, 0.14, 0.3, 1);
229 $entrance-easing--productive: cubic-bezier(0, 0, 0.38, 0.9);
230 $entrance-easing--expressive: cubic-bezier(0, 0, 0.3, 1);
231 $exit-easing--productive: cubic-bezier(0.2, 0, 1, 0.9);
232 $exit-easing--expressive: cubic-bezier(0.4, 0.14, 1, 1);
/openbmc/linux/tools/bpf/bpftool/Documentation/
H A Dbpftool-struct_ops.rst80 105: cubic tcp_congestion_ops
86 Unregistered tcp_congestion_ops cubic id 105
92 Registered tcp_congestion_ops cubic id 110
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/
H A Dbpf_tcp_ca.c180 link = bpf_map__attach_struct_ops(cubic_skel->maps.cubic); in test_cubic()
264 .cc = "cubic", in test_dctcp_fallback()
274 strcpy(dctcp_skel->rodata->fallback, "cubic"); in test_dctcp_fallback()
294 ASSERT_STREQ(dctcp_skel->bss->cc_res, "cubic", "cc_res"); in test_dctcp_fallback()
304 ASSERT_STREQ(srv_cc, "cubic", "srv_fd cc"); in test_dctcp_fallback()
548 if (test__start_subtest("cubic")) in test_bpf_tcp_ca()
H A Dbpf_iter_setsockopt.c117 "set listen_fd to cubic")) in do_bpf_iter_setsockopt()
136 nr_reuse_listens, "set reuse_listen_fds to cubic")) in do_bpf_iter_setsockopt()
205 cubic_link = bpf_map__attach_struct_ops(cubic_skel->maps.cubic); in serial_test_bpf_iter_setsockopt()
H A Dsockopt_sk.c160 if (strcmp(buf.cc, "cubic") != 0) { in getsetsockopt()
162 buf.cc, "cubic"); in getsetsockopt()
H A Dsockopt_qos_to_cc.c32 char cc_cubic[16] = "cubic"; /* TCP_CA_NAME_MAX */ in test_sockopt_qos_to_cc()
/openbmc/linux/samples/bpf/
H A Ddo_hbm_test.sh21 echo " [-S|--stats] -t=<time>|--time=<time>] [-w] [cubic|dctcp]"
26 echo " -c or -cc TCP congestion control (cubic or dctcp)"
63 echo " cubic or dctcp specify which TCP CC to use"
190 cubic)
191 cc=cubic
/openbmc/linux/drivers/media/platform/renesas/vsp1/
H A Dvsp1_clu.h3 * vsp1_clu.h -- R-Car VSP1 Cubic Look-Up Table
H A Dvsp1_clu.c3 * vsp1_clu.c -- R-Car VSP1 Cubic Look-Up Table
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Sensor/
H A DValue.interface.yaml64 To calculate Air Flow in Cubic Feet per Minute
/openbmc/docs/designs/
H A Dvirtual-sensors.md14 1. Airflow: Function of Fan RPM reported in units of cubic-feet per second.
/openbmc/openbmc/poky/meta/recipes-graphics/cairo/
H A Dcairo_1.18.2.bb4 of line segments and cubic splines and can be rendered at any width \
/openbmc/linux/drivers/acpi/
H A Dprocessor_thermal.c24 * thus a cubic (instead of linear) reduction of energy. Also, we allow for
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/
H A DPowerDistributionMetrics.v1_3_2.json100 …l contain the absolute (volumetric) humidity sensor reading, in grams per cubic meter units, for t…

123