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

  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/
lp_bld_format_srgb.c 187 LLVMValueRef pow_approx, coeff, x2, exponent, pow_1, pow_2; local
194 coeff = lp_build_const_vec(gallivm, src_type,
198 tmp = lp_build_mul(&f32_bld, coeff, src);
228 coeff = lp_build_const_vec(gallivm, src_type,
231 pow_final = lp_build_mul(&f32_bld, tmp, coeff);
lp_bld_arit.c 3184 LLVMValueRef coeff; local
3186 coeff = lp_build_const_vec(bld->gallivm, type, coeffs[i]);
3190 even = lp_build_mad(bld, x2, even, coeff);
3192 even = coeff;
3195 odd = lp_build_mad(bld, x2, odd, coeff);
3197 odd = coeff;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/
lp_bld_format_srgb.c 186 LLVMValueRef pow_approx, coeff, x2, exponent, pow_1, pow_2; local
193 coeff = lp_build_const_vec(gallivm, src_type,
197 tmp = lp_build_mul(&f32_bld, coeff, src);
227 coeff = lp_build_const_vec(gallivm, src_type,
230 pow_final = lp_build_mul(&f32_bld, tmp, coeff);
lp_bld_arit.c 3269 LLVMValueRef coeff; local
3271 coeff = lp_build_const_vec(bld->gallivm, type, coeffs[i]);
3275 even = lp_build_mad(bld, x2, even, coeff);
3277 even = coeff;
3280 odd = lp_build_mad(bld, x2, odd, coeff);
3282 odd = coeff;
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/vl/
vl_mpeg12_bitstream.c 52 struct dct_coeff coeff; member in struct:dct_coeff_compressed
549 struct dct_coeff coeff = src->coeff; local
552 switch (coeff.run) {
568 coeff.length += 1;
569 coeff.run = 1;
576 coeff.length += 1;
577 coeff.run = 1;
581 coeff.length += 1;
582 coeff.run += 1
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/vl/
vl_mpeg12_bitstream.c 52 struct dct_coeff coeff; member in struct:dct_coeff_compressed
549 struct dct_coeff coeff = src->coeff; local
552 switch (coeff.run) {
568 coeff.length += 1;
569 coeff.run = 1;
576 coeff.length += 1;
577 coeff.run = 1;
581 coeff.length += 1;
582 coeff.run += 1
    [all...]
  /xsrc/external/mit/xf86-video-geode/dist/src/cim/
cim_df.c 2281 long coeff; local
2293 coeff = temp & 0x7FFF;
2295 coeff = -coeff;
2296 taps[i][0] = coeff;
2301 coeff = temp & 0x7FFF;
2303 coeff = -coeff;
2304 taps[i][1] = coeff;
2310 coeff = temp & 0x7FFF
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/vc4/
vc4_program.c 675 float coeff[] = { local
685 struct qreg sum = qir_FMUL(c, x, qir_uniform_f(c, coeff[0]));
686 for (int i = 1; i < ARRAY_SIZE(coeff); i++) {
692 qir_uniform_f(c, coeff[i])));
700 float coeff[] = { local
710 struct qreg sum = qir_uniform_f(c, coeff[0]);
713 for (int i = 1; i < ARRAY_SIZE(coeff); i++) {
719 qir_uniform_f(c, coeff[i])),
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/vc4/
vc4_program.c 685 float coeff[] = { local
695 struct qreg sum = qir_FMUL(c, x, qir_uniform_f(c, coeff[0]));
696 for (int i = 1; i < ARRAY_SIZE(coeff); i++) {
702 qir_uniform_f(c, coeff[i])));
710 float coeff[] = { local
720 struct qreg sum = qir_uniform_f(c, coeff[0]);
723 for (int i = 1; i < ARRAY_SIZE(coeff); i++) {
729 qir_uniform_f(c, coeff[i])),
  /xsrc/external/mit/xf86-video-ati/dist/src/
radeon_video.c 2148 signed char coeff[5][4]; member in struct:__anon6875
2810 OUTREG(RADEON_OV0_FOUR_TAP_COEF_0+i*4, (TapCoeffs[tap_set].coeff[i][0] &0xf) |
2811 ((TapCoeffs[tap_set].coeff[i][1] &0x7f)<<8) |
2812 ((TapCoeffs[tap_set].coeff[i][2] &0x7f)<<16) |
2813 ((TapCoeffs[tap_set].coeff[i][3] &0xf)<<24));

Completed in 40 milliseconds