/openbmc/webui-vue/src/assets/styles/bmc/helpers/ |
H A D | _motion.scss | 9 $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 D | variables.scss | 9 $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 D | mixins.scss | 58 transition: 110ms cubic-bezier(0.4, 0.14, 1, 1);
|
/openbmc/webui-vue/docs/guide/guidelines/ |
H A D | motion.md | 27 $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 D | bpf_dctcp_release.c | 14 const char cubic[] = "cubic"; variable 19 (void *)cubic, sizeof(cubic)); in BPF_STRUCT_OPS()
|
H A D | connect4_prog.c | 72 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 D | bpf_cubic.c | 199 * 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 D | sockopt_sk.c | 182 /* Always use cubic */ in _setsockopt() 187 memcpy(optval, "cubic", 5); in _setsockopt()
|
H A D | sockopt_qos_to_cc.c | 21 char cc_cubic[TCP_CA_NAME_MAX] = "cubic"; in sockopt_qos_to_cc()
|
/openbmc/linux/net/ipv4/ |
H A D | tcp_cubic.c | 3 * 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 D | Kconfig | 476 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 D | readme.md | 227 $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 D | bpftool-struct_ops.rst | 80 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 D | bpf_tcp_ca.c | 180 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 D | bpf_iter_setsockopt.c | 117 "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 D | sockopt_sk.c | 160 if (strcmp(buf.cc, "cubic") != 0) { in getsetsockopt() 162 buf.cc, "cubic"); in getsetsockopt()
|
H A D | sockopt_qos_to_cc.c | 32 char cc_cubic[16] = "cubic"; /* TCP_CA_NAME_MAX */ in test_sockopt_qos_to_cc()
|
/openbmc/linux/samples/bpf/ |
H A D | do_hbm_test.sh | 21 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 D | vsp1_clu.h | 3 * vsp1_clu.h -- R-Car VSP1 Cubic Look-Up Table
|
H A D | vsp1_clu.c | 3 * vsp1_clu.c -- R-Car VSP1 Cubic Look-Up Table
|
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Sensor/ |
H A D | Value.interface.yaml | 64 To calculate Air Flow in Cubic Feet per Minute
|
/openbmc/docs/designs/ |
H A D | virtual-sensors.md | 14 1. Airflow: Function of Fan RPM reported in units of cubic-feet per second.
|
/openbmc/openbmc/poky/meta/recipes-graphics/cairo/ |
H A D | cairo_1.18.2.bb | 4 of line segments and cubic splines and can be rendered at any width \
|
/openbmc/linux/drivers/acpi/ |
H A D | processor_thermal.c | 24 * thus a cubic (instead of linear) reduction of energy. Also, we allow for
|
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/ |
H A D | PowerDistributionMetrics.v1_3_2.json | 100 …l contain the absolute (volumetric) humidity sensor reading, in grams per cubic meter units, for t…
|