Home
last modified time | relevance | path

Searched refs:autoc (Results 1 – 5 of 5) sorted by relevance

/external/flac/libFLAC/include/private/
Dlpc.h71 …pute_autocorrelation(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]);
75 …correlation_asm_ia32(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]);
76 …m_ia32_sse_lag_4_old(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]);
77 …m_ia32_sse_lag_8_old(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]);
78 …_ia32_sse_lag_12_old(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]);
79 …_ia32_sse_lag_16_old(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]);
84 …intrin_sse_lag_4_old(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]);
85 …intrin_sse_lag_8_old(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]);
86 …ntrin_sse_lag_12_old(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]);
87 …ntrin_sse_lag_16_old(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]);
[all …]
/external/llvm/test/CodeGen/X86/
Dpr3154.ll5 define void @ff_flac_compute_autocorr_sse2(i32* %data, i32 %len, i32 %lag, double* %autoc) nounwind…
81 %28 = getelementptr double, double* %autoc, i32 %j4.141 ; <double*> [#uses=1]
82 %29 = getelementptr double, double* %autoc, i32 %25 ; <double*> [#uses=1]
83 %30 = getelementptr double, double* %autoc, i32 %26 ; <double*> [#uses=1]
90 %32 = getelementptr double, double* %autoc, i32 %j4.141 ; <double*> [#uses=1]
91 %33 = getelementptr double, double* %autoc, i32 %25 ; <double*> [#uses=1]
/external/llvm/test/Transforms/IndVarSimplify/
Dult-sub-to-eq.ll7 define void @test1(float* nocapture %autoc, float* nocapture %data, float %d, i32 %data_len, i32 %s…
21 %arrayidx2 = getelementptr inbounds float, float* %autoc, i64 %indvars.iv
/external/flac/libFLAC/
Dlpc.c74 …mpute_autocorrelation(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]) in FLAC__lpc_compute_autocorrelation() argument
94 autoc[lag] = d; in FLAC__lpc_compute_autocorrelation()
110 autoc[coeff] = 0.0; in FLAC__lpc_compute_autocorrelation()
114 autoc[coeff] += d * data[sample+coeff]; in FLAC__lpc_compute_autocorrelation()
119 autoc[coeff] += d * data[sample+coeff]; in FLAC__lpc_compute_autocorrelation()
123 void FLAC__lpc_compute_lp_coefficients(const FLAC__real autoc[], unsigned *max_order, FLAC__real lp… in FLAC__lpc_compute_lp_coefficients() argument
131 FLAC__ASSERT(autoc[0] != 0.0); in FLAC__lpc_compute_lp_coefficients()
133 err = autoc[0]; in FLAC__lpc_compute_lp_coefficients()
137 r = -autoc[i+1]; in FLAC__lpc_compute_lp_coefficients()
139 r -= lpc[j] * autoc[i-j]; in FLAC__lpc_compute_lp_coefficients()
Dstream_encoder.c359 …ute_autocorrelation)(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]);
3386 …FLAC__real autoc[FLAC__MAX_LPC_ORDER+1]; /* WATCHOUT: the size is important even though encoder->p… in process_subframe_() local
3502 …tocorrelation(encoder->private_->windowed_signal, frame_header->blocksize, max_lpc_order+1, autoc); in process_subframe_()
3504 if(autoc[0] != 0.0) { in process_subframe_()
3505 … FLAC__lpc_compute_lp_coefficients(autoc, &max_lpc_order, encoder->private_->lp_coeff, lpc_error); in process_subframe_()