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

/external/chromium_org/components/autofill/core/browser/
H A Dpersonal_data_manager.cc999 std::map<std::string, int> votes; local
1012 votes[country_code] += profiles[i]->IsVerified() ? 100 : 1;
1017 if (!votes.empty()) {
1019 std::max_element(votes.begin(), votes.end(), CompareVotes);
/external/opencv/ml/src/
H A Dmlrtrees.cpp410 CvMat votes; local
412 cvGetRow(oob_sample_votes, &votes, i);
413 votes.data.i[predicted_node->class_idx]++;
416 cvMinMaxLoc( &votes, 0, 0, 0, &max_loc );
457 // predict "permuted" cases and calculate the number of votes for the
547 int* votes = (int*)alloca( sizeof(int)*nclasses ); local
548 memset( votes, 0, sizeof(*votes)*nclasses );
556 nvotes = ++votes[class_idx];

Completed in 650 milliseconds