HomeSort by relevance Sort by last modified time
    Searched refs:total (Results 376 - 400 of 1239) sorted by null

<<11121314151617181920>>

  /external/opencv/
cvjni.cpp 331 sprintf(buffer, "Total Time to init: %f", (double)total_time_finish / (double)CLOCKS_PER_SEC);
408 if (rects == 0 || rects->total <= 0) {
425 jobjectArray ary = env->NewObjectArray(rects->total, jcls, 0);
431 for (int i = 0; i < rects->total; i++) {
483 sprintf(buffer, "Total Time to cvHaarDetectObjects in findAllFaces: %f", (double)haar_detect_time_finish / (double)CLOCKS_PER_SEC);
487 if (m_facesFound == 0 || m_facesFound->total <= 0) {
490 sprintf(buffer, "FACES_DETECTED %d", m_facesFound->total);
497 sprintf(buffer, "Total Time to findAllFaces: %f", (double)total_time_finish / (double)CLOCKS_PER_SEC);
582 sprintf(buffer, "Total Time to cvHaarDetectObjects in findSingleFace: %f", (double)haar_detect_time_finish / (double)CLOCKS_PER_SEC);
586 if (m_facesFound == 0 || m_facesFound->total <= 0) {
    [all...]
  /external/opencv/cv/src/
cvapprox.cpp 82 buffer_size = (chain->total + 8) * sizeof( _CvPtInfo );
95 if( chain->total == 0 )
111 count = chain->total;
402 assert( writer.seq->total > 0 );
434 int len = src_seq->total;
457 if( contour->total > 0 )
527 int i = 0, j, count = src_contour->total, new_count;
536 if( src_contour->total == 0 )
618 while( stack->total != 0 )
685 new_count = count = (*dst_contour)->total;
    [all...]
cvsubdivision2d.cpp 574 int i, total; local
585 total = subdiv->edges->total;
590 for( i = 0; i < total; i++ )
599 total = subdiv->total;
604 for( i = 0; i < total; i++ )
627 int i, total, elem_size; local
640 total = subdiv->edges->total;
    [all...]
  /external/v8/test/mjsunit/tools/
profile.js 194 assertEquals(totalTicks, node.totalWeight, 'total of ' + stack);
234 Driver.prototype.increment = function(func, self, total) {
236 this.counters[func] = { self: 0, total: 0 };
239 this.counters[func].total += total;
289 assertEquals(testDriver.root.total, flatProfileRoot.totalWeight);
298 assertEquals(reference.total, rec.totalWeight, 'total of ' + rec.label);
344 assertEquals(reference[1], rec.totalWeight, 'total of ' + rec.label);
  /external/harfbuzz_ng/util/
ansi-print.cc 236 unsigned int total = 0;
248 total += c;
265 if (total < *score) {
266 *score = total;
291 s = row_sum_i[i] + total - row_sum[i];
323 s = col_sum_i[i] + total - col_sum[i];
  /external/v8/src/
utils.cc 260 int total = 0; local
261 while (total < size) {
262 int write = static_cast<int>(fwrite(str, 1, size - total, f));
264 return total;
266 total += write;
269 return total;
  /external/valgrind/massif/tests/
long-time.post.exp 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
48 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
62 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
89 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
100 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
115 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
130 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
141 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
157 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
175 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadNotifier.java 210 long total = 0; local
216 total += info.mTotalBytes;
222 if (total > 0) {
224 NumberFormat.getPercentInstance().format((double) current / total);
227 final long remainingMillis = ((total - current) * 1000) / speed;
232 final int percent = (int) ((current * 100) / total);
  /system/core/fs_mgr/
fs_mgr_fstab.c 83 uint64_t total; local
85 total = sysconf(_SC_PHYS_PAGES);
86 total *= percentage;
87 total /= 100;
89 total *= sysconf(_SC_PAGESIZE);
91 return total;
  /external/llvm/tools/llvm-size/
llvm-size.cpp 11 // that is, it prints out the size of each section, and the total size of all
129 uint64_t total = 0; local
139 total += Seg.vmsize;
165 total += Seg.vmsize;
189 outs() << "total " << format(fmt.str().c_str(), total) << "\n";
263 uint64_t total = total_text + total_data + total_objc + total_others; local
270 << total_others << "\t" << total << "\t" << format("%" PRIx64, total)
278 uint64_t total = 0 local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-swing.jar 
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 141 int total = 0; local
142 s << " L: " << ((total+=(m_matrix.cols()+1) * sizeof(int) + m_matrix.nonZeros()*(sizeof(int)+sizeof(Scalar))) >> 20) << "Mb" << "\n";
143 s << " diag: " << ((total+=m_diag.size() * sizeof(Scalar)) >> 20) << "Mb" << "\n";
144 s << " tree: " << ((total+=m_parent.size() * sizeof(int)) >> 20) << "Mb" << "\n";
145 s << " nonzeros: " << ((total+=m_nonZerosPerCol.size() * sizeof(int)) >> 20) << "Mb" << "\n";
146 s << " perm: " << ((total+=m_P.size() * sizeof(int)) >> 20) << "Mb" << "\n";
147 s << " perm^-1: " << ((total+=m_Pinv.size() * sizeof(int)) >> 20) << "Mb" << "\n";
148 s << " TOTAL: " << (total>> 20) << "Mb" << "\n";
  /external/harfbuzz_ng/test/shaping/
hb_test_tools.py 173 self.total = Stat ()
176 self.total.add (test)
183 return float (self.passed.count) / self.total.count
186 return (float (self.passed.count) / self.total.count) * \
187 (float (self.failed.count) / self.total.count)
217 total = passed + failed
218 print "%d out of %d tests passed. %d failed (%g%%)" % (passed, total, failed, 100. * failed / total)
  /external/libnl/lib/
utils.c 359 uint64_t total = 0, l; local
371 total += l;
373 total += (l * 1000);
375 total += (l * 1000*60);
377 total += (l * 1000*60*60);
379 total += (l * 1000*60*60*24);
385 total += l;
388 *result = total;
  /external/libxml2/doc/
queries.py 32 total = int(row[0])
39 f.write("<queries total='%d' uniq='%d' nr='%d' date='%s'>\n" % (
40 total, uniq, number, date))
  /external/tinycompress/
compress.c 356 int written, total = 0, ret; local
378 return total;
408 total += written;
410 return total;
418 int num_read, total = 0, ret; local
438 return total;
468 total += num_read;
471 return total;
  /external/valgrind/memcheck/tests/
badjump.stderr.exp 20 total heap usage: ... allocs, ... frees, ... bytes allocated
noisy_child.stderr.exp 18 total heap usage: ... allocs, ... frees, ... bytes allocated
partial_load_ok.stderr.exp 23 total heap usage: ... allocs, ... frees, ... bytes allocated
  /external/valgrind/memcheck/tests/darwin/
aio.stderr.exp 17 total heap usage: ... allocs, ... frees, ... bytes allocated
  /frameworks/av/media/libstagefright/codecs/aacenc/SampleCode/
AAC_E_SAMPLES.c 149 int total = 0; local
258 total += t2 - t1;
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
StorageVolumePreference.java 75 final String total = Formatter.formatFileSize(context, totalBytes); local
76 setSummary(context.getString(R.string.storage_volume_summary, used, total));
  /system/extras/tests/memtest/
fptest.cpp 66 float total = 0; local
102 float total = 0; local
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
JamoTest.java 176 int total = 0; local
184 ++total;
236 errln("Test word failures: " + errors + " out of " + total);
238 logln("All " + total + " test words passed");
  /external/libvorbis/vq/
metrics.c 32 total bits
33 total samples
96 long total=0; local
115 total++;
121 fprintf(stderr,"\tmean closest side spacing: %g\n",mean/total);
122 fprintf(stderr,"\tmean sq closest side spacing: %g\n",sqrt(meansq/total));

Completed in 813 milliseconds

<<11121314151617181920>>