Searched refs:autoc (Results 1 – 6 of 6) sorted by relevance
/external/flac/libFLAC/ia32/ |
D | lpc_asm.nasm | 51 …e_autocorrelation_asm(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]) 61 ; autoc[coeff] = 0.0; 65 ; autoc[coeff] += d * data[sample+coeff]; 70 ; autoc[coeff] += d * data[sample+coeff]; 76 ;[esp + 28] == autoc[] 91 ; autoc[coeff] = 0.0; 92 mov edi, [esp + 28] ; edi == autoc 102 mov edi, [esp + 28] ; edi == autoc 109 ; autoc[coeff] += d * data[sample+coeff]; 131 …fadd dword [edi + (32*4)] ; ST = autoc[32]+d*data[sample+32] d WATCHOUT: not a byte displacement … [all …]
|
/external/flac/libFLAC/include/private/ |
D | lpc.h | 69 …pute_autocorrelation(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]); 73 …correlation_asm_ia32(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]); 74 …n_asm_ia32_sse_lag_4(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]); 75 …n_asm_ia32_sse_lag_8(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]); 76 …_asm_ia32_sse_lag_12(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]); 77 …ation_asm_ia32_3dnow(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]); 103 void FLAC__lpc_compute_lp_coefficients(const FLAC__real autoc[], unsigned *max_order, FLAC__real lp…
|
/external/llvm/test/CodeGen/X86/ |
D | pr3154.ll | 5 define void @ff_flac_compute_autocorr_sse2(i32* %data, i32 %len, i32 %lag, double* %autoc) nounwind… 81 %28 = getelementptr double* %autoc, i32 %j4.141 ; <double*> [#uses=1] 82 %29 = getelementptr double* %autoc, i32 %25 ; <double*> [#uses=1] 83 %30 = getelementptr double* %autoc, i32 %26 ; <double*> [#uses=1] 90 %32 = getelementptr double* %autoc, i32 %j4.141 ; <double*> [#uses=1] 91 %33 = getelementptr double* %autoc, i32 %25 ; <double*> [#uses=1]
|
/external/llvm/test/Transforms/IndVarSimplify/ |
D | ult-sub-to-eq.ll | 3 define void @test1(float* nocapture %autoc, float* nocapture %data, float %d, i32 %data_len, i32 %s… 17 %arrayidx2 = getelementptr inbounds float* %autoc, i64 %indvars.iv
|
/external/flac/libFLAC/ |
D | lpc.c | 63 …mpute_autocorrelation(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]) in FLAC__lpc_compute_autocorrelation() argument 83 autoc[lag] = d; in FLAC__lpc_compute_autocorrelation() 99 autoc[coeff] = 0.0; in FLAC__lpc_compute_autocorrelation() 103 autoc[coeff] += d * data[sample+coeff]; in FLAC__lpc_compute_autocorrelation() 108 autoc[coeff] += d * data[sample+coeff]; in FLAC__lpc_compute_autocorrelation() 112 void FLAC__lpc_compute_lp_coefficients(const FLAC__real autoc[], unsigned *max_order, FLAC__real lp… in FLAC__lpc_compute_lp_coefficients() argument 120 FLAC__ASSERT(autoc[0] != 0.0); in FLAC__lpc_compute_lp_coefficients() 122 err = autoc[0]; in FLAC__lpc_compute_lp_coefficients() 126 r = -autoc[i+1]; in FLAC__lpc_compute_lp_coefficients() 128 r -= lpc[j] * autoc[i-j]; in FLAC__lpc_compute_lp_coefficients()
|
D | stream_encoder.c | 376 …ute_autocorrelation)(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]); 3194 …FLAC__real autoc[FLAC__MAX_LPC_ORDER+1]; /* WATCHOUT: the size is important even though encoder->p… in process_subframe_() local 3310 …tocorrelation(encoder->private_->windowed_signal, frame_header->blocksize, max_lpc_order+1, autoc); in process_subframe_() 3312 if(autoc[0] != 0.0) { in process_subframe_() 3313 … FLAC__lpc_compute_lp_coefficients(autoc, &max_lpc_order, encoder->private_->lp_coeff, lpc_error); in process_subframe_()
|