Home
last modified time | relevance | path

Searched full:beta (Results 1 – 25 of 139) sorted by relevance

123456

/openbmc/linux/tools/testing/selftests/net/
H A Dioam6.sh11 # and INPUT tests only use a two-node topology (alpha and beta), while GLOBAL
12 # tests use the entire three-node topology (alpha, beta, gamma). Each test is
16 # When either Beta or Gamma is the destination (depending on the test category),
40 # | Beta netns |
72 # | Beta - IOAM configuration |
144 BETA=(
269 ip netns del ioam-node-beta || true
281 ip netns add ioam-node-beta
285 peer name ioam-veth-betaL netns ioam-node-beta
286 ip link add name ioam-veth-betaR netns ioam-node-beta type veth \
[all …]
/openbmc/openbmc-test-automation/lib/
H A Dos_utilities.py30 PRETTY_NAME="Red Hat Enterprise Linux Server 7.5 Beta (Maipo)"
32 CPE_NAME="cpe:/o:redhat:enterprise_linux:7.5:beta:server"
39 REDHAT_SUPPORT_PRODUCT_VERSION="7.5 Beta"
52 [pretty_name]: Red Hat Enterprise Linux Server 7.5 Beta (Maipo)
54 [cpe_name]: cpe:/o:redhat:enterprise_linux:7.5:beta:server
60 [redhat_support_product_version]: 7.5 Beta
/openbmc/linux/net/ipv4/
H A Dtcp_htcp.c28 u8 beta; /* Fixed point arith, << 7 */ member
155 ca->beta = BETA_MIN; in htcp_beta_update()
162 ca->beta = (minRTT << 7) / maxRTT; in htcp_beta_update()
163 if (ca->beta < BETA_MIN) in htcp_beta_update()
164 ca->beta = BETA_MIN; in htcp_beta_update()
165 else if (ca->beta > BETA_MAX) in htcp_beta_update()
166 ca->beta = BETA_MAX; in htcp_beta_update()
168 ca->beta = BETA_MIN; in htcp_beta_update()
194 ca->alpha = 2 * factor * ((1 << 7) - ca->beta); in htcp_alpha_update()
200 * After we have the rtt data to calculate beta, we'd still prefer to wait one
[all …]
H A Dtcp_illinois.c51 u32 beta; /* Muliplicative decrease */ member
74 ca->beta = BETA_BASE; in tcp_illinois_init()
185 * Beta used for multiplicative decrease.
188 * If delay is small (10% of max) then beta = 1/8
189 * If delay is up to 80% of max then beta = 1/2
192 static u32 beta(u32 da, u32 dm) in beta() function
221 /* Update alpha and beta values once per RTT */
229 ca->beta = BETA_BASE; in update_params()
235 ca->beta = beta(da, dm); in update_params()
250 ca->beta = BETA_BASE; in tcp_illinois_state()
[all …]
H A Dtcp_bic.c21 #define BICTCP_BETA_SCALE 1024 /* Scale factor beta calculation
22 * max_cwnd = snd_cwnd * beta
32 static int beta = 819; /* = 819/1024 (BICTCP_BETA_SCALE) */ variable
42 module_param(beta, int, 0644);
43 MODULE_PARM_DESC(beta, "beta for multiplicative increase");
170 ca->last_max_cwnd = (tcp_snd_cwnd(tp) * (BICTCP_BETA_SCALE + beta)) in bictcp_recalc_ssthresh()
178 return max((tcp_snd_cwnd(tp) * beta) / BICTCP_BETA_SCALE, 2U); in bictcp_recalc_ssthresh()
H A Dtcp_cubic.c34 #define BICTCP_BETA_SCALE 1024 /* Scale factor beta calculation
35 * max_cwnd = snd_cwnd * beta
50 static int beta __read_mostly = 717; /* = 717/1024 (BICTCP_BETA_SCALE) */
67 module_param(beta, int, 0644);
68 MODULE_PARM_DESC(beta, "beta for multiplicative increase");
350 ca->last_max_cwnd = (tcp_snd_cwnd(tp) * (BICTCP_BETA_SCALE + beta)) in cubictcp_recalc_ssthresh()
355 return max((tcp_snd_cwnd(tp) * beta) / BICTCP_BETA_SCALE, 2U); in cubictcp_recalc_ssthresh()
518 beta_scale = 8*(BICTCP_BETA_SCALE+beta) / 3 in cubictcp_register()
519 / (BICTCP_BETA_SCALE - beta); in cubictcp_register()
H A Dtcp_vegas.c45 static int beta = 4; variable
50 module_param(beta, int, 0644);
51 MODULE_PARM_DESC(beta, "upper bound of packets in network");
254 if (diff > beta) { in tcp_vegas_cong_avoid()
H A Dtcp_veno.c24 static const int beta = 3 << V_PARAM_SHIFT; variable
163 if (veno->diff < beta) { in tcp_veno_cong_avoid()
200 if (veno->diff < beta) in tcp_veno_ssthresh()
/openbmc/u-boot/lib/lzma/
H A Dhistory.txt4 9.18 beta 2010-11-02
9 9.12 beta 2010-03-24
15 9.11 beta 2010-03-15
49 4.61 beta 2008-11-23
58 4.60 beta 2008-08-19
63 4.59 beta 2008-08-13
70 4.58 beta 2008-05-05
83 4.49 beta 2007-07-05
103 4.39 beta 2006-04-14
110 4.37 beta 2005-04-06
[all …]
/openbmc/linux/Documentation/devicetree/bindings/hwmon/
H A Dti,tmp401.yaml46 ti,beta-compensation:
48 value to select beta correction range.
73 ti,beta-compensation: false
102 ti,beta-compensation = <0x7>;
H A Dmax6697.txt26 - beta-compensation-enable
27 Only valid for MAX6693 and MX6694. Set to enable beta compensation on
29 Beta compensation will be disabled if not specified.
/openbmc/linux/net/sched/
H A Dsch_pie.c178 q->params.beta = nla_get_u32(tb[TCA_PIE_BETA]); in pie_change()
304 u64 alpha, beta; in pie_calculate_probability() local
327 /* In the algorithm, alpha and beta are between 0 and 2 with typical in pie_calculate_probability()
329 * passed from user space to represent this. Also, alpha and beta have in pie_calculate_probability()
331 * probability. alpha/beta are updated locally below by scaling down in pie_calculate_probability()
335 beta = ((u64)params->beta * (MAX_PROB / PSCHED_TICKS_PER_SEC)) >> 4; in pie_calculate_probability()
337 /* We scale alpha and beta differently depending on how heavy the in pie_calculate_probability()
342 beta >>= 1; in pie_calculate_probability()
348 beta >>= 2; in pie_calculate_probability()
353 /* alpha and beta should be between 0 and 32, in multiples of 1/16 */ in pie_calculate_probability()
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/oelib/
H A Dlicense.py50 "ALPHA|BETA": ["ALPHA"],
70 "(ALPHA|(BETA&THETA)|OMEGA)&DELTA": ["OMEGA", "DELTA"],
71 "((ALPHA|BETA)&FOO)|BAZ": ["BETA", "FOO"],
74 preferred = ["BAR", "OMEGA", "BETA", "GPL-2.0-only"]
H A Dtypes.py49 testlist = ['alpha', 'beta', 'theta']
50 self.assertListEqual('alpha beta theta', testlist)
51 self.assertListEqual('alpha beta\ttheta', testlist)
/openbmc/openbmc/poky/meta/recipes-support/gnupg/gnupg/
H A D0004-autogen.sh-fix-find-version-for-beta-checking.patch4 Subject: [PATCH] autogen.sh: fix find-version for beta checking
6 find-version always assumes that gnupg is beta if autogen.sh is run
28 - beta=yes
/openbmc/linux/kernel/bpf/
H A Dtnum.c76 u64 dv, alpha, beta, chi, mu; in tnum_sub() local
80 beta = dv - b.mask; in tnum_sub()
81 chi = alpha ^ beta; in tnum_sub()
88 u64 alpha, beta, v; in tnum_and() local
91 beta = b.value | b.mask; in tnum_and()
93 return TNUM(v, alpha & beta & ~v); in tnum_and()
/openbmc/linux/Documentation/devicetree/bindings/input/
H A Dazoteq,iqs7222.yaml81 azoteq,lta-beta-lp:
89 azoteq,lta-beta-np:
97 azoteq,counts-beta-lp:
105 azoteq,counts-beta-np:
113 azoteq,lta-fast-beta-lp:
121 azoteq,lta-fast-beta-np:
686 azoteq,bottom-beta:
695 azoteq,static-beta:
699 azoteq,bottom-beta regardless of the speed of movement.
939 azoteq,lta-beta-lp = <7>;
[all …]
/openbmc/openbmc/poky/meta/files/common-licenses/
H A DCNRI-Python5 …INDICATED BELOW, OR BY COPYING, INSTALLING OR OTHERWISE USING PYTHON 1.6, beta 1 SOFTWARE, YOU ARE…
7 …al or Organization ("Licensee") accessing and otherwise using Python 1.6, beta 1 software in sourc…
11 …see may substitute the following text (omitting the quotes): "Python 1.6, beta 1, is made availabl…
/openbmc/linux/arch/arm/boot/dts/rockchip/
H A Drk3288-firefly-beta.dts10 model = "Firefly-RK3288 Beta";
11 compatible = "firefly,firefly-rk3288-beta", "rockchip,rk3288";
/openbmc/linux/include/net/
H A Dpie.h23 * @beta: parameter to control drop probability
33 u32 beta; member
95 params->beta = 20; in pie_params_init()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/nuttcp/
H A Dnuttcp_8.2.2.bb13 UPSTREAM_CHECK_URI = "https://www.nuttcp.net/nuttcp/beta/"
15 SRC_URI = "http://nuttcp.net/${BPN}/beta/${BP}.c \
/openbmc/linux/drivers/misc/echo/
H A Decho.c102 #define DC_LOG2BETA 3 /* log2() of DC filter Beta */
283 * at (1-Beta) on real axis. Some chip sets (like Si labs) don't in oslec_update()
291 * Note that the 3dB frequency in radians is approx Beta, e.g. for Beta in oslec_update()
377 f = Beta * clean_bg_rx/P ------ (1) in oslec_update()
388 (2^30) * f = (2^30) * Beta * clean_bg_rx/P in oslec_update()
389 factor = (2^30) * Beta * clean_bg_rx/P ----- (2) in oslec_update()
391 We have chosen Beta = 0.25 by experiment, so: in oslec_update()
/openbmc/linux/Documentation/hwmon/
H A Dmax31730.rst26 diode, while beta compensation corrects for temperature-measurement
27 errors due to low-beta sensing transistors.
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Dbpf_cubic.c26 #define BICTCP_BETA_SCALE 1024 /* Scale factor beta calculation
27 * max_cwnd = snd_cwnd * beta
42 static const int beta = 717; /* = 717/1024 (BICTCP_BETA_SCALE) */ variable
53 static const __u32 beta_scale = 8*(BICTCP_BETA_SCALE+beta) / 3
54 / (BICTCP_BETA_SCALE - beta);
409 ca->last_max_cwnd = (tp->snd_cwnd * (BICTCP_BETA_SCALE + beta)) in BPF_STRUCT_OPS()
414 return max((tp->snd_cwnd * beta) / BICTCP_BETA_SCALE, 2U); in BPF_STRUCT_OPS()
/openbmc/openbmc/meta-raspberrypi/recipes-bsp/rpi-eeprom/
H A Drpi-eeprom_git.bb49 ln -s latest ${D}${base_libdir}/firmware/raspberrypi/bootloader-2711/beta
52 ln -s latest ${D}${base_libdir}/firmware/raspberrypi/bootloader-2712/beta

123456