| /f-stack/dpdk/app/test/ |
| H A D | test_common.c | 113 #define ERROR_FLOOR(res, i, pow) \ in test_align() argument 114 (res % pow) || /* check if not aligned */ \ in test_align() 115 ((res / pow) != (i / pow)) /* check if correct alignment */ in test_align() 116 #define ERROR_CEIL(res, i, pow) \ in test_align() argument 117 (res % pow) || /* check if not aligned */ \ in test_align() 118 ((i % pow) == 0 ? /* check if ceiling is invoked */ \ in test_align() 119 val / pow != i / pow : /* if aligned */ \ in test_align() 120 val / pow != (i / pow) + 1) /* if not aligned, hence +1 */ in test_align()
|
| H A D | test_red.c | 179 return avg * pow((1.0 - 1.0 / (double)n), (double)time_diff / pkt_time_usec); in calc_exp_avg_on_empty()
|
| /f-stack/freebsd/netinet/cc/ |
| H A D | cc_cubic.h | 99 return (pow((wmax_pkts * 0.3) / C, (1.0 / 3.0)) * pow(2, CUBIC_SHIFT)); in theoretical_cubic_k() 111 (C * pow(ticks_since_cong / (double)hz - in theoretical_cubic_cwnd() 112 theoretical_cubic_k(wmax_pkts) / pow(2, CUBIC_SHIFT), 3.0)))); in theoretical_cubic_cwnd()
|
| /f-stack/dpdk/lib/librte_member/ |
| H A D | rte_member_vbf.c | 55 float fp_one_bf = 1 - pow((1 - params->false_positive_rate), in rte_member_create_vbf() 66 log(1.0 / (pow(2.0, log(2.0))))); in rte_member_create_vbf() 79 float new_fp = pow((1 - pow((1 - 1.0 / ss->bits), num_keys_per_bf * in rte_member_create_vbf() 81 new_fp = 1 - pow((1 - new_fp), ss->num_set); in rte_member_create_vbf() 93 new_fp = pow((1 - pow((1 - 1.0 / ss->bits), num_keys_per_bf * in rte_member_create_vbf() 95 new_fp = 1 - pow((1 - new_fp), ss->num_set); in rte_member_create_vbf()
|
| /f-stack/dpdk/lib/librte_sched/ |
| H A D | rte_red.c | 46 rte_red_pow2_frac_inv[i] = (uint16_t) round(scale / pow(2, m / table_size)); in __rte_red_init_tables() 55 double Wq = pow(2, -n); in __rte_red_init_tables()
|
| /f-stack/freebsd/contrib/octeon-sdk/ |
| H A D | cvmx-ciu-defs.h | 1141 uint64_t pow : 1; 1244 uint64_t pow : 1; 1345 uint64_t pow : 1; 1455 uint64_t pow : 1; 1546 uint64_t pow : 1; 3550 uint64_t pow : 1; 3704 uint64_t pow : 1; 3775 uint64_t pow : 1; 3851 uint64_t pow : 1; 3922 uint64_t pow : 1; [all …]
|
| H A D | cvmx-trax-defs.h | 1492 uint64_t pow : 1; /**< Enable tracing of requests to POW member 1520 uint64_t pow : 1; 1528 uint64_t pow : 1; /**< Enable tracing of requests to POW member 1557 uint64_t pow : 1; 1619 uint64_t pow : 1; 2497 uint64_t pow : 1; 2534 uint64_t pow : 1; 2596 uint64_t pow : 1; 3343 uint64_t pow : 1; 3380 uint64_t pow : 1; [all …]
|
| H A D | cvmx-npi-defs.h | 4332 uint64_t pow : 1; /**< POW_ECC_ERR */ member 4358 uint64_t pow : 1; 4401 uint64_t pow : 1; /**< POW_ECC_ERR */ member 4427 uint64_t pow : 1; 4473 uint64_t pow : 1; /**< POW_ECC_ERR */ member 4499 uint64_t pow : 1; 4541 uint64_t pow : 1; /**< POW_ECC_ERR */ member 4567 uint64_t pow : 1;
|
| H A D | cvmx-npei-defs.h | 7076 uint64_t pow : 1; /**< POW_ECC_ERR */ member 7102 uint64_t pow : 1;
|
| /f-stack/freebsd/tools/sound/ |
| H A D | feeder_eq_mkfilter.awk | 67 function pow(x, y) function 92 A = pow(10, gain / 40.0); 94 A = sqrt(pow(10, gain / 20.0)); 246 attn = pow(2.0, bit) / pow(2.0, 32.0);
|
| H A D | feeder_rate_mkfilter.awk | 79 function pow(x, y) function 130 beta = (0.5842 * pow((1.0 * attn) - 21.0, 0.4)) + \
|
| /f-stack/freebsd/contrib/device-tree/Bindings/sound/ |
| H A D | rt5677.txt | 20 - realtek,pow-ldo2-gpio : The GPIO that controls the CODEC's POW_LDO2 pin. 72 realtek,pow-ldo2-gpio =
|
| /f-stack/app/redis-5.0.5/deps/jemalloc/test/include/test/ |
| H A D | math.h | 232 ch = pow(p * xx * exp(ln_gamma_df_2 + xx * aa), 1.0 / xx); in pt_chi2() 244 ch = df * pow(x * sqrt(p1) + 1.0 - p1, 3.0); in pt_chi2()
|
| /f-stack/freebsd/contrib/openzfs/module/zfs/ |
| H A D | vdev_raidz.c | 1180 int pow; in vdev_raidz_matrix_init() local 1191 pow = map[i] * n; in vdev_raidz_matrix_init() 1192 if (pow > 255) in vdev_raidz_matrix_init() 1193 pow -= 255; in vdev_raidz_matrix_init() 1194 ASSERT(pow <= 255); in vdev_raidz_matrix_init() 1197 pow -= map[i]; in vdev_raidz_matrix_init() 1198 if (pow < 0) in vdev_raidz_matrix_init() 1199 pow += 255; in vdev_raidz_matrix_init() 1200 rows[i][j] = vdev_raidz_pow2[pow]; in vdev_raidz_matrix_init()
|
| /f-stack/app/redis-5.0.5/deps/lua/src/ |
| H A D | lmathlib.c | 110 lua_pushnumber(L, pow(luaL_checknumber(L, 1), luaL_checknumber(L, 2))); in math_pow()
|
| H A D | luaconf.h | 538 #define luai_numpow(a,b) (pow(a,b))
|
| /f-stack/tools/libxo/xohtml/external/ |
| H A D | jquery.qtip.js | 2114 pow = Math.pow, 2118 smallHyp = Math.sqrt( pow(base, 2) + pow(height, 2) ), 2121 hyp[2] = Math.sqrt( pow(hyp[0], 2) - pow(this.border, 2) ); 2122 hyp[3] = Math.sqrt( pow(hyp[1], 2) - pow(this.border, 2) );
|
| /f-stack/dpdk/drivers/net/octeontx2/ |
| H A D | otx2_ptp.c | 99 (double)pow(10, floor(log10(t_freq))) / rte_get_timer_hz(); in otx2_nix_raw_clock_tsc_conv()
|
| /f-stack/freebsd/contrib/device-tree/src/arm64/amlogic/ |
| H A D | meson-g12b-w400.dtsi | 127 usb1_pow: regulator-usb1-pow {
|
| /f-stack/dpdk/app/test-bbdev/ |
| H A D | test_bbdev_perf.c | 1446 log_syml_prob[m] = -(pow(I - symbols_I[m], 2.0) in gen_qm8_llr() 1447 + pow(Q - symbols_Q[m], 2.0)) / N0; in gen_qm8_llr() 1511 log_syml_prob[m] = -(pow(I - symbols_I[m], 2.0) in gen_qm6_llr() 1512 + pow(Q - symbols_Q[m], 2.0)) / N0; in gen_qm6_llr() 1567 log_syml_prob[m] = -(pow(I - symbols_I[m], 2.0) in gen_qm4_llr() 1568 + pow(Q - symbols_Q[m], 2.0)) / N0; in gen_qm4_llr() 1629 N0 = 1.0 / pow(10.0, get_snr() / 10.0); in generate_llr_input()
|
| /f-stack/dpdk/drivers/net/mlx5/ |
| H A D | mlx5_flow_meter.c | 219 _man = _man * pow(2, MLX5_MAN_WIDTH); in mlx5_flow_meter_xbs_man_exp_calc()
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | hyperloglog.c | 997 z -= pow(1 - x, 2)*y; in hllTau()
|
| H A D | redis-cli.c | 6838 pl = pow( in powerLawRand() 6839 ((pow(max,alpha+1) - pow(min,alpha+1))*r + pow(min,alpha+1)), in powerLawRand()
|
| /f-stack/freebsd/contrib/openzfs/lib/libzfs/ |
| H A D | libzfs_util.c | 1561 fval *= pow(2, shift);
|
| /f-stack/freebsd/contrib/openzfs/cmd/ztest/ |
| H A D | ztest.c | 657 fval *= pow(2, str2shift(end)); in nicenumtoull()
|