Lines Matching refs:row
457 // the size of Q matrix row headers
477 CvSVMKernelRow* row = rows + i1;
478 bool existed = row->data != 0;
483 CvSVMKernelRow* del_row = existed ? row : lru_list.prev;
487 // delete row from the LRU list
498 // insert row into the LRU list
499 row->data = data;
500 row->prev = &lru_list;
501 row->next = lru_list.next;
502 row->prev->next = row->next->prev = row;
506 kernel->calc( sample_count, var_count, samples, samples[i1], row->data );
512 return row->data;
516 float* CvSVMSolver::get_row_svc( int i, float* row, float*, bool existed )
527 row[j] = _y[j]*row[j];
532 row[j] = -_y[j]*row[j];
535 return row;
539 row, float*, bool )
541 return row;
545 float* CvSVMSolver::get_row_svr( int i, float* row, float* dst, bool )
558 Qfloat t = row[j];
570 float* row = get_row_base( i, &existed );
571 return (this->*get_row_func)( i, row, dst, existed );