Searched refs:_results (Results 1 – 4 of 4) sorted by relevance
/external/opencv/ml/src/ |
D | mlknearest.cpp | 214 CvMat* _results, CvMat* _neighbor_responses, in write_results() argument 220 int rstep = _results && !CV_IS_MAT_CONT(_results->type) ? _results->step/sizeof(result) : 1; in write_results() 227 if( _results || start+i == 0 ) in write_results() 276 if( _results ) in write_results() 277 _results->data.fl[(start + i)*rstep] = r; in write_results() 305 float CvKNearest::find_nearest( const CvMat* _samples, int k, CvMat* _results, in find_nearest() argument 327 if( _results && (!CV_IS_MAT(_results) || in find_nearest() 328 _results->cols != 1 && _results->rows != 1 || in find_nearest() 329 _results->cols + _results->rows - 1 != _samples->rows) ) in find_nearest() 333 if( _results && CV_MAT_TYPE(_results->type) != CV_32FC1 && in find_nearest() [all …]
|
/external/lldb/test/unittest2/ |
D | signals.py | 24 for result in _results.keys(): 27 _results = weakref.WeakKeyDictionary() variable 29 _results[result] = 1 32 return bool(_results.pop(result, None))
|
/external/lldb/test/unittest2/test/ |
D | test_break.py | 22 unittest2.signals._results = weakref.WeakKeyDictionary() 43 for ref in unittest2.signals._results: 148 self.assertIn(result, unittest2.signals._results)
|
/external/opencv/ml/include/ |
D | ml.h | 301 const float* neighbor_responses, const float* dist, CvMat* _results,
|