Home
last modified time | relevance | path

Searched refs:LLSModel (Results 1 – 7 of 7) sorted by relevance

/third_party/ffmpeg/libavutil/
Dlls.h38 typedef struct LLSModel { struct
50 void (*update_lls)(struct LLSModel *m, const double *var); argument
57 double (*evaluate_lls)(struct LLSModel *m, const double *var, int order); argument
58 } LLSModel; typedef
60 void avpriv_init_lls(LLSModel *m, int indep_count);
61 void ff_init_lls_x86(LLSModel *m);
62 void avpriv_solve_lls(LLSModel *m, double threshold, unsigned short min_order);
Dlls.c36 static void update_lls(LLSModel *m, const double *var) in update_lls()
47 void avpriv_solve_lls(LLSModel *m, double threshold, unsigned short min_order) in avpriv_solve_lls()
104 static double evaluate_lls(LLSModel *m, const double *param, int order) in evaluate_lls()
115 av_cold void avpriv_init_lls(LLSModel *m, int indep_count) in avpriv_init_lls()
117 memset(m, 0, sizeof(LLSModel)); in avpriv_init_lls()
/third_party/ffmpeg/libavutil/x86/
Dlls_init.c26 void ff_update_lls_sse2(LLSModel *m, const double *var);
27 void ff_update_lls_avx(LLSModel *m, const double *var);
28 void ff_update_lls_fma3(LLSModel *m, const double *var);
29 double ff_evaluate_lls_sse2(LLSModel *m, const double *var, int order);
31 av_cold void ff_init_lls_x86(LLSModel *m) in ff_init_lls_x86()
Dlls.asm32 struc LLSModel
52 mov id, [ctxq + LLSModel.indep_count]
131 mov countd, [ctxq + LLSModel.indep_count]
/third_party/ffmpeg/libavutil/tests/
Dlls.c29 LLSModel m; in main()
/third_party/ffmpeg/libavcodec/
Dlpc.h86 LLSModel lls_models[2];
Dlpc.c242 LLSModel *m = s->lls_models; in ff_lpc_calc_coefs()