/external/opencv/cv/src/ |
cvlinefit.cpp | 660 if( ptseq->total == 0 ) 695 CV_CALL( buffer = points = (schar*)cvAlloc( ptseq->total*CV_ELEM_SIZE(type) )); 700 int i, total = ptseq->total*CV_MAT_CN(type); 703 for( i = 0; i < total; i++ ) 713 IPPI_CALL( icvFitLine2D( (CvPoint2D32f*)points, ptseq->total, 718 IPPI_CALL( icvFitLine3D( (CvPoint3D32f*)points, ptseq->total,
|
cvshapedescr.cpp | 78 if( contour->total > 1 ) 86 count -= !is_closed && count == contour->total; 318 if( sequence->total <= 0 ) 323 count = sequence->total; 458 if( contour->total ) 461 int lpt = contour->total; 584 lpt = contour->total - n1 + n2 + 1;*/ 586 if( contour->total && lpt > 2 ) 752 if( cvSliceLength( slice, contour ) == contour->total ) 792 int n = points->total; [all...] |
cvhistogram.cpp | 410 int size1[CV_MAX_DIM], size2[CV_MAX_DIM], total = 1; local 430 total *= size1[i]; 447 for( i = 0; i < total; i++ ) 460 double num, denom2, scale = 1./total; 462 for( i = 0; i < total; i++ ) 480 for( i = 0; i < total; i++ ) 493 for( i = 0; i < total; i++ ) 557 double num, denom2, scale = 1./total; 660 int size1[CV_MAX_DIM], size2[CV_MAX_DIM], total = 1; local 676 total *= size1[i] 727 int dims, size[CV_MAX_DIM], total = 0; local 890 int total = 1; local 1572 int total = 1; local 2418 int total = 0; local [all...] |
cvgeometry.cpp | 176 int i, total, counter = 0; local 204 total = contour->total; 214 for( i = 0; i < total; i++ ) 257 for( i = 0; i < total; i++ ) 293 for( i = 0; i < total; i++ )
|
/external/opencv/cvaux/src/ |
cvvecfacetracking.cpp | 237 if (0 == m_seqRects->total) 242 if (m_seqRects->total < 32) 249 if ((pR->iEnergy > 100 && m_seqRects->total < 32) || (m_seqRects->total < 16)) 256 if ((pR->iEnergy > 100 && m_seqRects->total < 16) || (pR->iEnergy > 200 && m_seqRects->total < 32)) 345 int nRects = m_seqRects->total; 377 for (i = 0; i < m_seqRects->total; i++) 381 for (j = j_begin; j < m_seqRects->total;) 397 for (int i = 0; i < m_seqRects->total; i++ [all...] |
cvlcm.cpp | 295 if(SiteSet->total > 70000) 330 if(LCMNodeSeq->total > 0) 336 if(LCMEdgeSeq->total > 0) 369 for(i = 0; i < SiteSet->total; i++) 542 counter < pLCM->VoronoiDiagram->edges->total; 568 pLCMEdge->width = width/pLCMEdge->chain->total;
|
/external/iputils/Modules/ |
pg3.c | 347 u32 total, idle; local 428 total = (stop.tv_sec - start.tv_sec)*1000000 + 437 total, total-idle, idle, 439 ((pc*1000)/(total/1000)), 440 (((pc*1000)/(total/1000))*pkt_size)/1024/1024
|
/external/opencv/ml/src/ |
mlnbayes.cpp | 494 if( !CV_NODE_IS_SEQ(node->tag) || seq->total != nclasses) 505 if( !CV_NODE_IS_SEQ(node->tag) || seq->total != nclasses) 516 if( !CV_NODE_IS_SEQ(node->tag) || seq->total != nclasses) 527 if( !CV_NODE_IS_SEQ(node->tag) || seq->total != nclasses) 538 if( !CV_NODE_IS_SEQ(node->tag) || seq->total != nclasses) 549 if( !CV_NODE_IS_SEQ(node->tag) || seq->total != nclasses)
|
/external/pdfium/fpdfsdk/src/javascript/ |
util.cpp | 609 FX_INT64 total; /* current total */ local 621 total = 0; 624 total = 10 * total + (c - '0'); /* accumulate digit */ 629 return -total; 631 return total; /* return result, negated if necessary */
|
/external/skia/src/animator/ |
SkAnimateActive.cpp | 62 int total = oldCount + newCount; local 63 if (total == 0) 65 fInterpolators.setCount(total); 67 for (index = oldCount; index < total; index++) 69 fAnimators.setCount(total); 72 fState.setCount(total); 110 // total = oldCount + newCount; 111 // for (index = oldCount; index < total; index++)
|
/external/valgrind/massif/tests/ |
insig.post.exp | 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 58 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 80 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
|
/frameworks/rs/ |
rsElement.cpp | 76 size_t total = 0; local 78 total += mFields[ct].e->mBits * mFields[ct].arraySize; 80 return total; 88 size_t total = 0; local 90 total += mFields[ct].e->mBitsUnpadded * mFields[ct].arraySize; 92 return total;
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/ |
ChiSquareTestImpl.java | 157 // compute row, column and total sums 160 double total = 0.0d; local 165 total += counts[row][col]; 174 expected = (rowSum[row] * colSum[col]) / total;
|
/external/blktrace/btt/ |
btt_plot.py | 116 total = 0.0 118 total += val 119 return total / len(vals)
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_thread_registry.cc | 108 void ThreadRegistry::GetNumberOfThreads(uptr *total, uptr *running, 111 if (total) *total = n_contexts_;
|
/external/guava/guava/src/com/google/common/io/ |
CharStreams.java | 193 long total = 0; local 197 total += buf.remaining(); 200 return total;
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/ |
Node.java | 492 int total = 0; local 494 total += child.collideWith(other, results); 496 return total;
|
/external/libvncserver/test/ |
encodingstest.c | 77 unsigned int total=0,diff=0; local 92 total++; 97 if(maxDelta>0 && diff/total>=maxDelta)
|
/external/linux-tools-perf/src/tools/perf/ui/ |
hist.c | 42 u64 total = pair->hists->stats.total_period; local 44 if (!total) 61 fmt, 100.0 * period / total);
|
/external/mesa3d/src/mapi/glapi/gen/ |
glX_server_table.py | 87 def divide_group(self, min_opcode, total): 94 remaining_bits = self.max_bits - total 136 n = self.divide_group(i, total + M)
|
/frameworks/base/core/java/android/database/ |
CursorWindow.java | 744 int total = 0; local 769 total += num; 773 return "# Open Cursors=" + total + s;
|
/frameworks/base/core/java/android/view/ |
ScaleGestureDetector.java | 234 float total = 0; local 248 total += major; 272 final float avg = total / sampleCount;
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/ |
ExportProcessor.java | 157 final int total = composer.getCount(); local 158 if (total == 0) { 188 doProgressNotification(uri, total, current);
|
/system/extras/tests/workloads/ |
defs.sh | 227 total=0 232 if echo $line | grep -q "Total frames"; then 234 total=$4 247 echo $total $janky $l90 $l95 $l99
|
/art/runtime/base/ |
hash_set.h | 348 size_t total = 0; local 354 total += i + NumBuckets() - ideal_location; 356 total += i - ideal_location; 360 return total;
|