Lines Matching refs:Qfloat
94 typedef float Qfloat; typedef
97 typedef double Qfloat; typedef
232 const float* another, Qfloat* results, in calc_non_rbf_base()
245 results[j] = (Qfloat)(s*alpha + beta); in calc_non_rbf_base()
251 const float* another, Qfloat* results ) in calc_linear()
258 const float* another, Qfloat* results ) in calc_poly()
267 const float* another, Qfloat* results ) in calc_sigmoid()
275 Qfloat t = results[j]; in calc_sigmoid()
278 results[j] = (Qfloat)((1. - e)/(1. + e)); in calc_sigmoid()
280 results[j] = (Qfloat)((e - 1.)/(e + 1.)); in calc_sigmoid()
286 const float* another, Qfloat* results ) in calc_rbf()
315 results[j] = (Qfloat)(s*gamma); in calc_rbf()
323 const float* another, Qfloat* results ) in calc()
325 const Qfloat max_val = (Qfloat)(FLT_MAX*1e-3); in calc()
431 buf[i] = (Qfloat*)cvMemStorageAlloc( storage, sample_count*2*sizeof(buf[i][0]) ); in create()
452 cache_line_size = sample_count*sizeof(Qfloat); in create()
479 Qfloat* data; in get_row_base()
494 data = (Qfloat*)cvMemStorageAlloc( storage, cache_line_size ); in get_row_base()
548 Qfloat* dst_pos = dst; in get_row_svr()
549 Qfloat* dst_neg = dst + len; in get_row_svr()
552 Qfloat* temp; in get_row_svr()
558 Qfloat t = row[j]; in get_row_svr()
613 const Qfloat *Q_i = get_row( i, buf[0] ); in solve_generic()
624 const Qfloat *Q_i, *Q_j; in solve_generic()
1882 Qfloat* buffer = 0; in predict()
1905 CV_CALL( buffer = (Qfloat*)cvStackAlloc( buf_sz )); in predict()
1909 CV_CALL( buffer = (Qfloat*)cvAlloc( buf_sz )); in predict()