Lines Matching defs:orig
43 { static double orig [DFT_DATA_LENGTH] ;
52 for (k = 0 ; k < ARRAY_LEN (orig) ; k++)
54 orig [k] = in_data [k] ;
57 return dft_cmp_double (linenum, orig, test, len, target_snr, allow_exit) ;
61 dft_cmp_double (int linenum, const double *orig, const double *test, int len, double target_snr, int allow_exit)
66 if (! orig || ! test)
76 dft_magnitude (orig, orig_spec) ;
83 oct_save_double (orig, test, len) ;
136 calc_max_spectral_difference (const double *orig, const double *test)
141 { if (orig_max < orig [k])
142 orig_max = orig [k] ;
143 if (max_diff < fabs (orig [k] - test [k]))
144 max_diff = fabs (orig [k] - test [k]) ;