Searched refs:coefs (Results 26 - 50 of 58) sorted by relevance

123

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/pci/au88x0/
H A Dau88x0_eq.c66 static void vortex_EqHw_SetLeftCoefs(vortex_t * vortex, u16 coefs[]) argument
72 hwwrite(vortex->mmio, 0x2b000 + n * 0x30, coefs[i + 0]);
73 hwwrite(vortex->mmio, 0x2b004 + n * 0x30, coefs[i + 1]);
76 hwwrite(vortex->mmio, 0x2b008 + n * 0x30, coefs[i + 2]);
77 hwwrite(vortex->mmio, 0x2b00c + n * 0x30, coefs[i + 3]);
78 hwwrite(vortex->mmio, 0x2b010 + n * 0x30, coefs[i + 4]);
80 hwwrite(vortex->mmio, 0x2b008 + n * 0x30, sign_invert(coefs[2 + i]));
81 hwwrite(vortex->mmio, 0x2b00c + n * 0x30, sign_invert(coefs[3 + i]));
82 hwwrite(vortex->mmio, 0x2b010 + n * 0x30, sign_invert(coefs[4 + i]));
88 static void vortex_EqHw_SetRightCoefs(vortex_t * vortex, u16 coefs[]) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dwmadec.c623 float *coefs, *exponents, mult, mult1, noise; local
632 coefs = s->coefs[ch];
637 *coefs++ = s->noise_table[s->noise_index] *
685 *coefs++ = noise *
694 *coefs++ = ((*coefs1++) + noise) *
705 *coefs++ = s->noise_table[s->noise_index] * mult1;
711 *coefs++ = 0.0;
714 *coefs++ = coefs1[i] * exponents[i<<bsize>>esize] * mult;
718 *coefs
[all...]
H A Dflacenc.c67 int32_t coefs[MAX_LPC_ORDER]; member in struct:FlacSubframe
742 int c = coefs[(x)-1];\
750 const int32_t *coefs, int shift, int big)
810 int order, const int32_t *coefs, int shift)
821 int c = coefs[j];
831 case 1: encode_residual_lpc_unrolled(res, smp, n, 1, coefs, shift, 0); break;
832 case 2: encode_residual_lpc_unrolled(res, smp, n, 2, coefs, shift, 0); break;
833 case 3: encode_residual_lpc_unrolled(res, smp, n, 3, coefs, shift, 0); break;
834 case 4: encode_residual_lpc_unrolled(res, smp, n, 4, coefs, shift, 0); break;
835 case 5: encode_residual_lpc_unrolled(res, smp, n, 5, coefs, shif
748 encode_residual_lpc_unrolled(int32_t *res, const int32_t *smp, int n, int order, const int32_t *coefs, int shift, int big) argument
809 encode_residual_lpc(int32_t *res, const int32_t *smp, int n, int order, const int32_t *coefs, int shift) argument
851 int32_t coefs[MAX_LPC_ORDER][MAX_LPC_ORDER]; local
[all...]
H A Dlpc.h90 int32_t coefs[][MAX_LPC_ORDER], int *shift,
H A Dlpc.c159 int32_t coefs[][MAX_LPC_ORDER], int *shift,
232 quantize_lpc_coefs(lpc[i], i+1, precision, coefs[i], &shift[i], max_shift, zero_shift);
235 quantize_lpc_coefs(lpc[i], i+1, precision, coefs[i], &shift[i], max_shift, zero_shift);
156 ff_lpc_calc_coefs(LPCContext *s, const int32_t *samples, int blocksize, int min_order, int max_order, int precision, int32_t coefs[][MAX_LPC_ORDER], int *shift, enum FFLPCType lpc_type, int lpc_passes, int omethod, int max_shift, int zero_shift) argument
H A Dwma.h120 DECLARE_ALIGNED(32, float, coefs)[MAX_CHANNELS][BLOCK_MAX_SIZE];
H A Daaccoder.c621 const float *coefs = sce->coeffs + start; local
637 float t = fabsf(coefs[w2*128+i]);
659 dist += quantize_band_cost(s, coefs + w2*128, s->scoefs + start + w2*128, sce->ics.swb_sizes[g],
783 const float *coefs = sce->coeffs + start; local
797 dist += quantize_band_cost(s, coefs + w2*128,
902 float *coefs = sce->coeffs + start; local
911 memset(coefs + w2*128, 0, sizeof(coefs[0])*size);
916 float t = coefs[w2*128+i]*coefs[w
943 const float *coefs = sce->coeffs + start; local
[all...]
H A Dalacenc.c132 int32_t coefs[MAX_LPC_ORDER][MAX_LPC_ORDER]; local
150 ALAC_MAX_LPC_PRECISION, coefs, shift,
156 memcpy(s->lpc[ch].lpc_coeff, coefs[opt_order-1], opt_order*sizeof(int));
H A Daacpsy.c561 const float *coefs, const FFPsyWindowInfo *wi)
583 band->energy += coefs[start+i] * coefs[start+i];
584 form_factor += sqrtf(fabs(coefs[start+i]));
560 psy_3gpp_analyze_channel(FFPsyContext *ctx, int channel, const float *coefs, const FFPsyWindowInfo *wi) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dwmadec.c625 float *coefs, *exponents, mult, mult1, noise; local
634 coefs = s->coefs[ch];
639 *coefs++ = s->noise_table[s->noise_index] *
687 *coefs++ = noise *
696 *coefs++ = ((*coefs1++) + noise) *
707 *coefs++ = s->noise_table[s->noise_index] * mult1;
713 *coefs++ = 0.0;
716 *coefs++ = coefs1[i] * exponents[i<<bsize>>esize] * mult;
720 *coefs
[all...]
H A Dlpc.c173 int32_t coefs[][MAX_LPC_ORDER], int *shift,
258 quantize_lpc_coefs(lpc[i], i+1, precision, coefs[i], &shift[i], max_shift, zero_shift);
261 quantize_lpc_coefs(lpc[i], i+1, precision, coefs[i], &shift[i], max_shift, zero_shift);
170 ff_lpc_calc_coefs(LPCContext *s, const int32_t *samples, int blocksize, int min_order, int max_order, int precision, int32_t coefs[][MAX_LPC_ORDER], int *shift, enum FFLPCType lpc_type, int lpc_passes, int omethod, int max_shift, int zero_shift) argument
H A Dwma.h115 DECLARE_ALIGNED(32, float, coefs)[MAX_CHANNELS][BLOCK_MAX_SIZE];
H A Daaccoder.c619 const float *coefs = sce->coeffs + start; local
635 float t = fabsf(coefs[w2*128+i]);
657 dist += quantize_band_cost(s, coefs + w2*128, s->scoefs + start + w2*128, sce->ics.swb_sizes[g],
783 const float *coefs = sce->coeffs + start; local
797 dist += quantize_band_cost(s, coefs + w2*128,
902 float *coefs = sce->coeffs + start; local
911 memset(coefs + w2*128, 0, sizeof(coefs[0])*size);
916 float t = coefs[w2*128+i]*coefs[w
943 const float *coefs = sce->coeffs + start; local
[all...]
H A Dlpc.h91 int32_t coefs[][MAX_LPC_ORDER], int *shift,
H A Daacpsy.c571 const uint8_t *band_sizes, const float *coefs)
583 band->energy += coefs[start+i] * coefs[start+i];
584 form_factor += sqrtf(fabs(coefs[start+i]));
619 const float *coefs, const FFPsyWindowInfo *wi)
633 calc_thr_3gpp(wi, num_bands, pch, band_sizes, coefs);
570 calc_thr_3gpp(const FFPsyWindowInfo *wi, const int num_bands, AacPsyChannel *pch, const uint8_t *band_sizes, const float *coefs) argument
618 psy_3gpp_analyze_channel(FFPsyContext *ctx, int channel, const float *coefs, const FFPsyWindowInfo *wi) argument
H A Dflacenc.c79 int32_t coefs[MAX_LPC_ORDER]; member in struct:FlacSubframe
759 int32_t coefs[MAX_LPC_ORDER][MAX_LPC_ORDER]; local
817 s->options.lpc_coeff_precision, coefs, shift, s->options.lpc_type,
836 s->flac_dsp.lpc_encode(res, smp, n, order+1, coefs[order],
851 s->flac_dsp.lpc_encode(res, smp, n, i+1, coefs[i], shift[i]);
869 s->flac_dsp.lpc_encode(res, smp, n, i+1, coefs[i], shift[i]);
882 sub->coefs[i] = coefs[sub->order-1][i];
884 s->flac_dsp.lpc_encode(res, smp, n, sub->order, sub->coefs, sub->shift);
1148 put_sbits(&s->pb, cbits, sub->coefs[
[all...]
H A Dalacenc.c151 int32_t coefs[MAX_LPC_ORDER][MAX_LPC_ORDER]; local
169 ALAC_MAX_LPC_PRECISION, coefs, shift,
175 memcpy(s->lpc[ch].lpc_coeff, coefs[opt_order-1], opt_order*sizeof(int));
H A Dwmalosslessdec.c149 DECLARE_ALIGNED(16, int16_t, coefs)[MAX_ORDER + WMALL_COEFF_PAD_SIZE/sizeof(int16_t)];
494 s->cdlms[c][i].coefs[j] =
500 memset(s->cdlms[c][i].coefs + s->cdlms[c][i].order,
593 memset(s->cdlms[ich][ilms].coefs, 0,
594 sizeof(s->cdlms[ich][ilms].coefs));
789 pred += s->dsp.scalarproduct_and_madd_int16(s->cdlms[ch][ilms].coefs,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/crypto/async_tx/
H A Dasync_pq.c60 unsigned char coefs[src_cnt]; local
87 coefs[idx] = scfs[i];
123 &coefs[src_off], len,
277 unsigned char coefs[disks-2]; local
317 coefs[src_cnt] = raid6_gfexp[i];
324 coefs,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/mmedia/
H A Dsndmsad.cpp67 void wxSoundFormatMSAdpcm::SetCoefs(wxInt16 **WXUNUSED(coefs), wxUint16 ncoefs,
87 void wxSoundFormatMSAdpcm::GetCoefs(wxInt16 **& coefs, wxUint16& ncoefs, argument
90 coefs = m_coefs;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/arm/
H A Dfft_fixed_neon.S86 movrel r1, coefs
99 movrel r1, coefs
125 movrel lr, coefs + 24
199 const coefs, align=4
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/arm/
H A Dfft_fixed_neon.S86 movrel r1, coefs
99 movrel r1, coefs
125 movrel lr, coefs + 24
199 const coefs, align=4
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/bfin/
H A Didct_bfin.S68 coefs: label
99 RELOC(R1, P3, coefs); // Pointer to Coefficients
H A Dvp3_idct_bfin.S41 coefs: label
72 RELOC(R1, P3, coefs); // Pointer to Coefficients
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/mips/
H A Daaccoder_mips.c2182 const float *coefs = sce->coeffs + start; local
2195 bits += quantize_band_cost_bits(s, coefs + w2*128,
2217 const float *coefs = sce->coeffs + start; local
2231 dist += quantize_band_cost(s, coefs + w2*128,

Completed in 140 milliseconds

123