Searched defs:existed (Results 1 - 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DFileUtilities.h54 bool existed; local
55 sys::fs::remove(Filename.str(), existed);
65 bool existed; local
66 sys::fs::remove(Filename.str(), existed);
/external/opencv/ml/src/
H A Dmlsvm.cpp478 bool existed = row->data != 0;
481 if( existed || cache_size <= 0 )
483 CvSVMKernelRow* del_row = existed ? row : lru_list.prev;
504 if( !existed )
510 *_existed = existed;
516 float* CvSVMSolver::get_row_svc( int i, float* row, float*, bool existed )
518 if( !existed )
569 bool existed = false; local
570 float* row = get_row_base( i, &existed );
571 return (this->*get_row_func)( i, row, dst, existed );
[all...]

Completed in 3531 milliseconds