HomeSort by: relevance | last modified time | path
    Searched defs:coeff (Results 1 - 24 of 24) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/ml_dsa/
ml_dsa_poly.h 15 uint32_t coeff[ML_DSA_NUM_POLY_COEFFICIENTS]; member in struct:poly_st
21 memset(p->coeff, 0, sizeof(*p));
39 out->coeff[i] = reduce_once(lhs->coeff[i] + rhs->coeff[i]);
57 out->coeff[i] = mod_sub(lhs->coeff[i], rhs->coeff[i]);
92 * coeff[i] == t1[i] * 2^13 + t0[i] mod q
107 ossl_ml_dsa_key_compress_power2_round(t->coeff[i]
    [all...]
  /src/sys/dev/raidframe/
rf_pqdegdags.c 130 unsigned coeff; local
141 coeff = rf_RaidAddressToStripeUnitID(&(raidPtr->Layout), pda->raidAddress);
142 coeff = (coeff % raidPtr->Layout.numDataCol);
162 /* dest, src, len, coeff */
163 rf_IncQ((unsigned long *) qbuf, (unsigned long *) buf, rf_RaidAddressToByte(raidPtr, len), coeff);
194 unsigned coeff; local
226 coeff = rf_RaidAddressToStripeUnitID(layoutPtr, pda->raidAddress);
228 coeff = (coeff % raidPtr->Layout.numDataCol)
305 unsigned coeff; local
    [all...]
rf_pq.c 90 unsigned char coeff);
93 unsigned length, unsigned coeff);
252 unsigned long coeff; local
269 coeff = rf_RaidAddressToStripeUnitID(&(raidPtr->Layout), new->raidAddress);
272 coeff = (coeff % raidPtr->Layout.numDataCol);
274 QDelta(qpbuf, obuf, nbuf, rf_RaidAddressToByte(raidPtr, old->numSector), coeff);
315 unsigned long coeff; local
331 coeff = rf_RaidAddressToStripeUnitID(&(raidPtr->Layout), new->raidAddress);
334 coeff = (coeff % raidPtr->Layout.numDataCol)
363 unsigned long coeff; local
406 unsigned long coeff; local
542 unsigned long coeff; local
602 unsigned long coeff; local
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/modules/color/
color_gamma.h 47 unsigned int coeffFromUser :1; //coeff. A0-A3 from user is in use
48 unsigned int coeffFromEdid :1; //coeff. A0-A3 from edid is in use
74 struct regamma_coeff coeff; member in union:regamma_lut::__anon4651
amdgpu_color_gamma.c 474 struct gamma_coefficients *coeff,
478 scratch_gamma_args.a0 = coeff->a0[color_index];
479 scratch_gamma_args.a1 = coeff->a1[color_index];
480 scratch_gamma_args.a2 = coeff->a2[color_index];
481 scratch_gamma_args.a3 = coeff->a3[color_index];
482 scratch_gamma_args.gamma = coeff->user_gamma[color_index];
490 struct gamma_coefficients *coeff,
495 coeff->a0[color_index],
496 coeff->a1[color_index],
497 coeff->a2[color_index]
824 struct gamma_coefficients *coeff; local
1026 struct gamma_coefficients coeff; local
1462 const struct pixel_gamma_point *coeff = coeff128; local
1618 struct gamma_coefficients coeff; local
1684 struct gamma_coefficients coeff; local
1798 struct pixel_gamma_point *coeff = NULL; local
2015 struct pixel_gamma_point *coeff = NULL; local
    [all...]
  /src/external/mit/isl/dist/
isl_farkas.c 347 * "n_line" is the number of lines in "coeff".
348 * "n_ray" is the number of rays (other than lines) in "coeff".
349 * "n_vertex" is the number of vertices in "coeff".
356 isl_basic_set *coeff; member in struct:isl_coefficients_factor_data
404 isl_basic_set_free(data->factors[i].coeff);
429 isl_basic_set *coeff; local
433 coeff = isl_basic_set_coefficients_base(isl_basic_set_copy(bset));
434 data->factors[data->pos].coeff = coeff;
435 if (!coeff)
618 isl_basic_set *coeff = factor->coeff; local
627 isl_basic_set *coeff = factor->coeff; local
732 isl_basic_set *coeff; local
772 isl_basic_set *coeff; local
895 isl_basic_set *coeff; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/rsa/
rsa_lib.c 816 BIGNUM *coeff = sk_BIGNUM_pop(coeffs); local
819 if (!ossl_assert(prime != NULL && exp != NULL && coeff != NULL))
828 pinfo->t = coeff;
  /src/crypto/external/bsd/openssl/dist/crypto/rsa/
rsa_lib.c 787 BIGNUM *coeff = sk_BIGNUM_value(coeffs, i - 1); local
790 if (!ossl_assert(prime != NULL && exp != NULL && coeff != NULL))
801 pinfo->t = coeff;
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/hw/
opp.h 175 struct fixed31_32 coeff; member in struct:gamma_point
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/clk/
nouveau_nvkm_subdev_clk_gm20b.c 199 u32 coeff; local
203 /* coeff = slope * voltage + offset */
204 coeff = DIV_ROUND_CLOSEST(mv * p->coeff_slope, 1000) + p->coeff_offs;
205 coeff = DIV_ROUND_CLOSEST(coeff, 1000);
206 dvfs->dfs_coeff = min_t(u32, coeff, MASK(GPCPLL_DVFS0_DFS_COEFF_WIDTH));
216 nvkm_debug(subdev, "%s uv: %d coeff: %x, ext_cal: %d, det_max: %d\n",
518 gm20b_dvfs_program_coeff(struct gm20b_clk *clk, u32 coeff)
528 coeff << GPCPLL_DVFS0_DFS_COEFF_SHIFT);
589 * frequency to be safe at at DVFS coeff = 0
    [all...]
  /src/sys/dev/ic/
arn5008.c 1770 uint32_t coeff, exp, man, reg; local
1773 coeff = (100 << 24) / c->ic_freq;
1774 athn_get_delta_slope(coeff, &exp, &man);
1775 DPRINTFN(DBG_RX, sc, "delta slope coeff exp=%u man=%u\n", exp, man);
1782 /* For Short GI, coeff is 9/10 that of normal coeff. */
1783 coeff = (9 * coeff) / 10;
1784 athn_get_delta_slope(coeff, &exp, &man);
1785 DPRINTFN(DBG_RX, sc, "delta slope coeff exp=%u man=%u\n", exp, man)
    [all...]
arn9003.c 1945 uint32_t coeff, exp, man, reg; local
1948 coeff = (100 << 24) / c->ic_freq;
1949 athn_get_delta_slope(coeff, &exp, &man);
1950 DPRINTFN(DBG_RF, sc, "delta slope coeff exp=%u man=%u\n", exp, man);
1957 /* For Short GI, coeff is 9/10 that of normal coeff. */
1958 coeff = (9 * coeff) / 10;
1959 athn_get_delta_slope(coeff, &exp, &man);
1960 DPRINTFN(DBG_RF, sc, "delta slope coeff exp=%u man=%u\n", exp, man)
2436 int32_t res[6], coeff[2]; local
    [all...]
  /src/sys/dev/usb/
if_otus.c 2770 otus_get_delta_slope(uint32_t coeff, uint32_t *exponent, uint32_t *mantissa)
2777 /* exponent = 14 - floor(log2(coeff)) */
2779 if (coeff & (1 << exp))
2784 /* mantissa = floor(coeff * 2^exponent + 0.5) */
2785 man = coeff + (1 << (COEFF_SCALE_SHIFT - exp - 1));
2798 uint32_t coeff, exp, man, tmp; local
2878 coeff = (100 << 24) / c->ic_freq;
2879 otus_get_delta_slope(coeff, &exp, &man);
2882 DPRINTFN(DBG_CHAN, sc, "ds coeff=%u exp=%u man=%u\n",
2883 coeff, exp, man)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_color.c 45 #define CTM_COEFF_NEGATIVE(coeff) (((coeff) & CTM_COEFF_SIGN) != 0)
46 #define CTM_COEFF_ABS(coeff) ((coeff) & (CTM_COEFF_SIGN - 1))
74 #define ILK_CSC_COEFF_FP(coeff, fbits) \
75 (clamp_val(((coeff) >> (32 - (fbits) - 3)) + 4, 0, 0xfff) & 0xff8)
159 const u16 coeff[9],
169 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff[0] << 16 | coeff[1]); local
170 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), coeff[2] << 16) local
172 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff[3] << 16 | coeff[4]); local
173 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), coeff[5] << 16); local
175 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), coeff[6] << 16 | coeff[7]); local
176 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff[8] << 16); local
197 I915_WRITE(PIPE_CSC_OUTPUT_COEFF_RY_GY(pipe), coeff[0] << 16 | coeff[1]); local
198 I915_WRITE(PIPE_CSC_OUTPUT_COEFF_BY(pipe), coeff[2] << 16); local
200 I915_WRITE(PIPE_CSC_OUTPUT_COEFF_RU_GU(pipe), coeff[3] << 16 | coeff[4]); local
201 I915_WRITE(PIPE_CSC_OUTPUT_COEFF_BU(pipe), coeff[5] << 16); local
203 I915_WRITE(PIPE_CSC_OUTPUT_COEFF_RV_GV(pipe), coeff[6] << 16 | coeff[7]); local
204 I915_WRITE(PIPE_CSC_OUTPUT_COEFF_BV(pipe), coeff[8] << 16); local
283 u16 coeff[9]; local
321 u16 coeff[9]; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
simplify-rtx.cc 2978 rtx coeff;
2981 coeff = immed_wide_int_const (coeff0 + coeff1, int_mode);
2983 tem = simplify_gen_binary (MULT, int_mode, lhs, coeff);
3183 rtx coeff;
3186 coeff = immed_wide_int_const (coeff0 + negcoeff1, int_mode);
3188 tem = simplify_gen_binary (MULT, int_mode, lhs, coeff);
3233 /* Don't let a relocatable value get a negative coeff. */
2969 rtx coeff; local
3174 rtx coeff; local
expmed.cc 3498 HOST_WIDE_INT coeff;
3533 coeff = INTVAL (scalar_op1);
3534 is_neg = coeff < 0;
3559 if (EXACT_POWER_OF_2_OR_ZERO_P (coeff)
3562 floor_log2 (coeff), target, unsignedp);
3571 /* Its safe to use -coeff even for INT_MIN, as the
3575 coeff = -(unsigned HOST_WIDE_INT) coeff;
3583 if (EXACT_POWER_OF_2_OR_ZERO_P (coeff))
3586 floor_log2 (coeff), target, unsignedp)
3487 HOST_WIDE_INT coeff; local
3661 HOST_WIDE_INT coeff = INTVAL (cop1); local
    [all...]
builtins.cc 4249 rtx target, coeff;
4282 coeff = c_readstr (p, mode);
4285 target = expand_mult (mode, target, coeff, NULL_RTX, 1);
4248 rtx target, coeff; local
dwarf2out.cc 14514 HOST_WIDE_INT coeff = poly_i.coeffs[j];
14515 if (coeff != 0)
14523 /* Add COEFF * ((REGNO / FACTOR) - BIAS) to the value:
14524 add COEFF * (REGNO / FACTOR) now and subtract
14525 COEFF * BIAS from the final constant part. */
14526 constant -= coeff * bias;
14528 if (coeff % factor == 0)
14529 coeff /= factor;
14537 if (coeff != 1)
14539 add_loc_descr (&ret, int_loc_descriptor (coeff));
14501 HOST_WIDE_INT coeff = poly_i.coeffs[j]; local
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/config/libbid/
bid_internal.h 789 UINT64 tmp, coeff; local
796 coeff = (x & LARGE_COEFF_MASK64) | LARGE_COEFF_HIGH_BIT64;
808 if (coeff >= 10000000000000000ull)
809 coeff = 0;
810 *pcoefficient_x = coeff;
814 return coeff;
829 get_BID64 (UINT64 sgn, int expon, UINT64 coeff, int rmode,
836 if (coeff > 9999999999999999ull) {
838 coeff = 1000000000000000ull;
868 coeff += round_const_table[rmode][extra_digits]
1761 UINT128 coeff, T33, T34; local
1826 UINT128 coeff, T33, T34; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
simplify-rtx.cc 2801 rtx coeff;
2804 coeff = immed_wide_int_const (coeff0 + coeff1, int_mode);
2806 tem = simplify_gen_binary (MULT, int_mode, lhs, coeff);
3021 rtx coeff;
3024 coeff = immed_wide_int_const (coeff0 + negcoeff1, int_mode);
3026 tem = simplify_gen_binary (MULT, int_mode, lhs, coeff);
3071 /* Don't let a relocatable value get a negative coeff. */
2792 rtx coeff; local
3012 rtx coeff; local
expmed.cc 3482 HOST_WIDE_INT coeff;
3517 coeff = INTVAL (scalar_op1);
3518 is_neg = coeff < 0;
3543 if (EXACT_POWER_OF_2_OR_ZERO_P (coeff)
3546 floor_log2 (coeff), target, unsignedp);
3555 /* Its safe to use -coeff even for INT_MIN, as the
3559 coeff = -(unsigned HOST_WIDE_INT) coeff;
3567 if (EXACT_POWER_OF_2_OR_ZERO_P (coeff))
3570 floor_log2 (coeff), target, unsignedp)
3471 HOST_WIDE_INT coeff; local
3645 HOST_WIDE_INT coeff = INTVAL (cop1); local
    [all...]
builtins.cc 3932 rtx target, coeff;
3966 coeff = c_readstr (p, as_a <scalar_int_mode> (mode));
3969 target = expand_mult (mode, target, coeff, NULL_RTX, 1);
3931 rtx target, coeff; local
dwarf2out.cc 14429 HOST_WIDE_INT coeff = poly_i.coeffs[j];
14430 if (coeff != 0)
14438 /* Add COEFF * ((REGNO / FACTOR) - BIAS) to the value:
14439 add COEFF * (REGNO / FACTOR) now and subtract
14440 COEFF * BIAS from the final constant part. */
14441 constant -= coeff * bias;
14443 if (coeff % factor == 0)
14444 coeff /= factor;
14452 if (coeff != 1)
14454 add_loc_descr (&ret, int_loc_descriptor (coeff));
14416 HOST_WIDE_INT coeff = poly_i.coeffs[j]; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/libbid/
bid_internal.h 789 UINT64 tmp, coeff; local
796 coeff = (x & LARGE_COEFF_MASK64) | LARGE_COEFF_HIGH_BIT64;
808 if (coeff >= 10000000000000000ull)
809 coeff = 0;
810 *pcoefficient_x = coeff;
814 return coeff;
829 get_BID64 (UINT64 sgn, int expon, UINT64 coeff, int rmode,
836 if (coeff > 9999999999999999ull) {
838 coeff = 1000000000000000ull;
868 coeff += round_const_table[rmode][extra_digits]
1761 UINT128 coeff, T33, T34; local
1826 UINT128 coeff, T33, T34; local
    [all...]

Completed in 227 milliseconds