/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | vdev_raidz_math_impl.h | 46 raidz_rec_q_coeff(const raidz_row_t *rr, const int *tgtidx, unsigned *coeff) in raidz_rec_q_coeff() argument 51 coeff[MUL_Q_X] = gf_exp2(255 - (ncols - x - 1)); in raidz_rec_q_coeff() 55 raidz_rec_r_coeff(const raidz_row_t *rr, const int *tgtidx, unsigned *coeff) in raidz_rec_r_coeff() argument 60 coeff[MUL_R_X] = gf_exp4(255 - (ncols - x - 1)); in raidz_rec_r_coeff() 64 raidz_rec_pq_coeff(const raidz_row_t *rr, const int *tgtidx, unsigned *coeff) in raidz_rec_pq_coeff() argument 75 coeff[MUL_PQ_X] = gf_div(a, e); in raidz_rec_pq_coeff() 76 coeff[MUL_PQ_Y] = gf_div(b, e); in raidz_rec_pq_coeff() 80 raidz_rec_pr_coeff(const raidz_row_t *rr, const int *tgtidx, unsigned *coeff) in raidz_rec_pr_coeff() argument 92 coeff[MUL_PR_X] = gf_div(a, e); in raidz_rec_pr_coeff() 93 coeff[MUL_PR_Y] = gf_div(b, e); in raidz_rec_pr_coeff() [all …]
|
/freebsd/contrib/arm-optimized-routines/math/tools/ |
H A D | asinh.sollya | 7 // we use 2^-6 as the lower bound for coeff generation, which yields sufficiently 22 poly = poly + x^i*coeff(p,0); 28 for i from 0 to deg do coeff(poly,i);
|
H A D | cos.sollya | 19 // first coeff is fixed, iteratively find optimal double prec coeffs 23 poly = poly + x^(2*i)*coeff(p,0); 31 for i from 0 to deg do coeff(poly,i);
|
H A D | v_sin.sollya | 25 // first coeff is fixed, iteratively find optimal double prec coeffs 29 poly = poly + x^(2*i)*coeff(p,0); 36 for i from 0 to deg do coeff(poly,i);
|
H A D | sincosf.sollya | 21 // first coeff is fixed, iteratively find optimal double prec coeffs 25 poly = poly + x^(2*i)*coeff(p,0); 33 for i from 0 to deg do coeff(poly,i);
|
H A D | sinpi.sollya | 22 // first coeff is predefine, iteratively find optimal double prec coeffs 26 poly = poly + x^(2*i+1)*coeff(p,0); 33 for i from 0 to deg do coeff(poly,i);
|
H A D | sin.sollya | 25 // first coeff is fixed, iteratively find optimal double prec coeffs 29 poly = poly + x^(2*i)*coeff(p,0); 37 for i from 0 to deg do coeff(poly,i);
|
H A D | log.sollya | 24 // first coeff is fixed, iteratively find optimal double prec coeffs 28 poly = poly + x^i*coeff(p,0); 35 for i from 0 to deg do coeff(poly,i);
|
H A D | v_log.sollya | 23 // first coeff is fixed, iteratively find optimal double prec coeffs 27 poly = poly + x^i*coeff(p,0); 34 for i from 0 to deg do coeff(poly,i);
|
H A D | v_log2f.sollya | 27 // first coeff is fixed, iteratively find optimal double prec coeffs 31 poly = poly + x^i*coeff(p,0); 38 for i from 0 to deg do coeff(poly,i);
|
H A D | sincos.sollya | 21 // first coeff is fixed, iteratively find optimal double prec coeffs 25 poly = poly + x^(2*i)*coeff(p,0); 33 for i from 0 to deg do coeff(poly,i);
|
H A D | log_abs.sollya | 19 // first coeff is fixed, iteratively find optimal double prec coeffs 23 poly = poly + x^i*coeff(p,0); 35 for i from 0 to deg do coeff(poly,i);
|
H A D | v_log10.sollya | 23 // first coeff is fixed, iteratively find optimal double prec coeffs 27 poly = poly + x^i*coeff(p,0); 38 for i from 0 to deg do double(coeff(poly,i));
|
H A D | log10f.sollya | 26 // first coeff is fixed, iteratively find optimal double prec coeffs 30 poly = poly + x^i*coeff(p,0); 37 for i from 0 to deg do double(coeff(poly,i));
|
H A D | log2.sollya | 29 // first coeff is fixed, iteratively find optimal double prec coeffs 33 poly = poly + x^i*coeff(p,0); 42 for i from 0 to deg do coeff(poly,i);
|
H A D | log2_abs.sollya | 23 // first coeff is fixed, iteratively find optimal double prec coeffs 27 poly = poly + x^i*coeff(p,0); 41 for i from 0 to deg do coeff(poly,i);
|
H A D | v_log10f.sollya | 31 // first coeff is fixed, iteratively find optimal double prec coeffs 35 poly = poly + x^i*coeff(p,0); 42 for i from 0 to deg do single(coeff(poly,i));
|
H A D | log10.sollya | 29 // first coeff is fixed, iteratively find optimal double prec coeffs 33 poly = poly + x^i*coeff(p,0); 41 for i from 0 to deg do coeff(poly,i);
|
H A D | exp2.sollya | 31 // first coeff is fixed, iteratively find optimal double prec coeffs 36 poly = poly + x^i*coeff(p,0); 48 for i from 0 to deg do coeff(poly,i);
|
H A D | exp10.sollya | 34 // first coeff is fixed, iteratively find optimal double prec coeffs 39 poly = poly + x^i*coeff(p,0); 47 for i from 0 to deg do coeff(poly,i);
|
H A D | asinhf.sollya | 22 poly = poly + x^i*coeff(p,0); 29 for i from 2 to deg do coeff(poly,i);
|
H A D | log1p.sollya | 22 poly = poly + x^i*coeff(p,0); 28 for i from 2 to deg do coeff(poly,i);
|
H A D | asinf.sollya | 30 poly = poly + x^i*coeff(p,0); 36 for i from 0 to deg do print(coeff(poly, i));
|
/freebsd/sys/contrib/dev/ath/ath_hal/ar9300/ |
H A D | ar9300_reset.c | 63 u_int32_t num_chains, struct coeff_t *coeff, HAL_BOOL is_cal_reusable); 5782 struct coeff_t *coeff, HAL_BOOL is_cal_reusable) in ar9300_tx_iq_cal_outlier_detection() argument 5840 magnitude = coeff->mag_coeff[ch_idx][im][0]; in ar9300_tx_iq_cal_outlier_detection() 5841 phase = coeff->phs_coeff[ch_idx][im][0]; in ar9300_tx_iq_cal_outlier_detection() 5864 magnitude = coeff->mag_coeff[ch_idx][im][0]; in ar9300_tx_iq_cal_outlier_detection() 5865 phase = coeff->phs_coeff[ch_idx][im][0]; in ar9300_tx_iq_cal_outlier_detection() 5891 coeff->mag_coeff[ch_idx][outlier_mag_idx][0] = magnitude_avg; in ar9300_tx_iq_cal_outlier_detection() 5892 coeff->phs_coeff[ch_idx][outlier_mag_idx][0] = phase_avg; in ar9300_tx_iq_cal_outlier_detection() 5907 coeff->mag_coeff[ch_idx][outlier_phs_idx][0] = magnitude_avg; in ar9300_tx_iq_cal_outlier_detection() 5908 coeff->phs_coeff[ch_idx][outlier_phs_idx][0] = phase_avg; in ar9300_tx_iq_cal_outlier_detection() [all …]
|
/freebsd/sys/dev/sound/pcm/ |
H A D | feeder_rate.c | 514 coeff = Z_COEFF_INTERPOLATE(z, z_coeff[c], z_dcoeff[c]); \ 516 v += Z_NORM_##BIT((intpcm64_t)x * coeff); \ 543 int32_t coeff, z, *z_coeff, *z_dcoeff; \ 811 int32_t coeff; in z_coeff_interpolate() local 816 coeff = z_coeff[0]; in z_coeff_interpolate() 824 coeff = Z_RSHIFT((int64_t)zl1 * z, Z_SHIFT) + zl0; in z_coeff_interpolate() 833 coeff = Z_RSHIFT((Z_RSHIFT((int64_t)zq2 * z, Z_SHIFT) + in z_coeff_interpolate() 845 coeff = Z_RSHIFT((Z_RSHIFT((Z_RSHIFT((int64_t)zh3 * z, Z_SHIFT) + in z_coeff_interpolate() 858 coeff = (Z_RSHIFT((Z_RSHIFT((Z_RSHIFT((int64_t)zb3 * z, Z_SHIFT) + in z_coeff_interpolate() 886 coeff = Z_RSHIFT((Z_RSHIFT((Z_RSHIFT((Z_RSHIFT((Z_RSHIFT( in z_coeff_interpolate() [all …]
|