HomeSort by relevance Sort by last modified time
    Searched refs:votes (Results 1 - 2 of 2) sorted by null

  /art/test/952-invoke-custom/generator/
TestInvokeCustomWithConcurrentThreads.java 132 int votes = 0; local
137 votes += called[i].get();
141 System.out.println("Winners " + winners + " Votes " + votes);
155 if (votes != NUMBER_OF_THREADS) {
164 assertEquals(votes, NUMBER_OF_THREADS);
  /external/opencv/ml/src/
mlrtrees.cpp 410 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 211 milliseconds