Home
last modified time | relevance | path

Searched refs:temp_y (Results 1 – 3 of 3) sorted by relevance

/external/compiler-rt/test/msan/
Ddtor-multiple-inheritance.cc18 int *temp_y; variable
29 assert(__msan_test_shadow(temp_y, sizeof(*temp_y)) != -1); in ~A()
58 assert(__msan_test_shadow(temp_y, sizeof(*temp_y)) == -1); in ~C()
84 temp_y = &d->y; in main()
94 assert(__msan_test_shadow(temp_y, sizeof(*temp_y)) != -1); in main()
/external/opencv3/modules/ml/src/
Dsvm.cpp1412 vector<schar> temp_y; in do_train() local
1470 temp_y.resize(ci + cj); in do_train()
1478 temp_y[k] = k < ci ? 1 : -1; in do_train()
1489 Solver::solve_c_svc( temp_samples, temp_y, Cp, Cn, in do_train()
1492 Solver::solve_nu_svc( temp_samples, temp_y, params.nu, in do_train()
/external/opencv/ml/src/
Dmlsvm.cpp1364 schar* temp_y = 0; in do_train() local
1391 CV_CALL( temp_y = (schar*)cvMemStorageAlloc( temp_storage, sample_count)); in do_train()
1431 temp_y[k] = 1; in do_train()
1437 temp_y[ci + k] = -1; in do_train()
1446 if( !train1( ci + cj, var_count, temp_samples, temp_y, in do_train()