Lines Matching refs:threshold

176 	float64_t threshold)  in test_near_equal_f64()  argument
181 if (fabs(a[index] - b[index]) > threshold) { in test_near_equal_f64()
191 float32_t threshold) in test_near_equal_f32() argument
196 if (fabsf(a[index] - b[index]) > threshold) { in test_near_equal_f32()
207 float16_t threshold) in test_near_equal_f16() argument
212 if (fabsf((float)a[index] - (float)b[index]) > (float)threshold) { in test_near_equal_f16()
222 size_t length, const q63_t *a, const q63_t *b, q63_t threshold) in test_near_equal_q63() argument
227 if (llabs(a[index] - b[index]) > threshold) { in test_near_equal_q63()
236 size_t length, const q31_t *a, const q31_t *b, q31_t threshold) in test_near_equal_q31() argument
241 if (abs(a[index] - b[index]) > threshold) { in test_near_equal_q31()
250 size_t length, const q15_t *a, const q15_t *b, q15_t threshold) in test_near_equal_q15() argument
255 if (abs(a[index] - b[index]) > threshold) { in test_near_equal_q15()
264 size_t length, const q7_t *a, const q7_t *b, q7_t threshold) in test_near_equal_q7() argument
269 if (abs(a[index] - b[index]) > threshold) { in test_near_equal_q7()
279 float64_t threshold) in test_rel_error_f64() argument
291 if (rel > threshold) { in test_rel_error_f64()
302 float32_t threshold) in test_rel_error_f32() argument
314 if (rel > threshold) { in test_rel_error_f32()
326 float16_t threshold) in test_rel_error_f16() argument
338 if (rel > threshold) { in test_rel_error_f16()
400 float64_t threshold) in test_snr_error_f64() argument
405 return (snr >= threshold); in test_snr_error_f64()
410 float32_t threshold) in test_snr_error_f32() argument
415 return (snr >= threshold); in test_snr_error_f32()
421 float32_t threshold) in test_snr_error_f16() argument
426 return (snr >= threshold); in test_snr_error_f16()
431 size_t length, const q63_t *a, const q63_t *b, float32_t threshold) in test_snr_error_q63() argument
436 return (snr >= threshold); in test_snr_error_q63()
440 size_t length, const q31_t *a, const q31_t *b, float32_t threshold) in test_snr_error_q31() argument
445 return (snr >= threshold); in test_snr_error_q31()
449 size_t length, const q15_t *a, const q15_t *b, float32_t threshold) in test_snr_error_q15() argument
454 return (snr >= threshold); in test_snr_error_q15()
458 size_t length, const q7_t *a, const q7_t *b, float32_t threshold) in test_snr_error_q7() argument
463 return (snr >= threshold); in test_snr_error_q7()