Lines Matching full:_results
214 CvMat* _results, CvMat* _neighbor_responses,
220 int rstep = _results && !CV_IS_MAT_CONT(_results->type) ? _results->step/sizeof(result) : 1;
227 if( _results || start+i == 0 )
276 if( _results )
277 _results->data.fl[(start + i)*rstep] = r;
305 float CvKNearest::find_nearest( const CvMat* _samples, int k, CvMat* _results,
327 if( _results && (!CV_IS_MAT(_results) ||
328 _results->cols != 1 && _results->rows != 1 ||
329 _results->cols + _results->rows - 1 != _samples->rows) )
333 if( _results && CV_MAT_TYPE(_results->type) != CV_32FC1 &&
334 (CV_MAT_TYPE(_results->type) != CV_32SC1 || regression))
387 _results, _neighbor_responses, _dist, sort_buf );