Lines Matching refs:sample_idx
49 missing = sample_idx = 0;
108 cvReleaseMat( &sample_idx );
132 missing = sample_idx = 0;
268 sample_idx = cvCreateMat( 1, sample_idx_len, CV_32S );
270 sample_idx->data.i[i] = _sample_idx->data.i[i];
271 std::sort(sample_idx->data.i, sample_idx->data.i + sample_idx_len);
279 sample_idx = cvCreateMat( 1, active_samples_count, CV_32S );
283 sample_idx->data.i[active_samples_count++] = i;
291 sample_idx = cvCreateMat( 1, n, CV_32S );
293 sample_idx->data.i[i] = i;
306 if (is_regression) base_value = find_optimal_value(sample_idx);
329 int samples_count = get_len(sample_idx);
364 int* sample_data = sample_idx->data.i;
366 int s_step = (sample_idx->cols > sample_idx->rows) ? 1
367 : sample_idx->step/CV_ELEM_SIZE(sample_idx->type);
427 int* sample_data = sample_idx->data.i;
441 int s_step = (sample_idx->cols > sample_idx->rows) ? 1
442 : sample_idx->step/CV_ELEM_SIZE(sample_idx->type);
452 int s_step = (sample_idx->cols > sample_idx->rows) ? 1
453 : sample_idx->step/CV_ELEM_SIZE(sample_idx->type);
463 int s_step = (sample_idx->cols > sample_idx->rows) ? 1
464 : sample_idx->step/CV_ELEM_SIZE(sample_idx->type);
492 int s_step = (sample_idx->cols > sample_idx->rows) ? 1
493 : sample_idx->step/CV_ELEM_SIZE(sample_idx->type);
529 int* sample_data = sample_idx->data.i;
531 int s_step = (sample_idx->cols > sample_idx->rows) ? 1
532 : sample_idx->step/CV_ELEM_SIZE(sample_idx->type);
778 int n = get_len(sample_idx);
1331 missing = sample_idx = 0;