Home
last modified time | relevance | path

Searched refs:total_count (Results 1 – 16 of 16) sorted by relevance

/external/jemalloc/test/
Dtest.sh.in45 total_count=`expr ${pass_count} + ${skip_count} + ${fail_count}`
47 …ite summary: pass: ${pass_count}/${total_count}, skip: ${skip_count}/${total_count}, fail: ${fail_…
/external/libchrome/base/metrics/
Dsparse_histogram.cc137 Count total_count = snapshot->TotalCount(); in WriteAsciiImpl() local
138 double scaled_total_count = total_count / 100.0; in WriteAsciiImpl()
140 WriteAsciiHeader(total_count, output); in WriteAsciiImpl()
185 void SparseHistogram::WriteAsciiHeader(const Count total_count, in WriteAsciiHeader() argument
190 total_count); in WriteAsciiHeader()
Dsparse_histogram.h79 void WriteAsciiHeader(const Count total_count,
/external/autotest/tko/
Ddisplay.py156 total_count = 0
161 total_count += status_count[key]
162 if total_count != 0:
163 average_grade = average_grade / total_count
/external/e2fsprogs/misc/
De4defrag.c177 static unsigned int total_count; variable
401 total_count++; in calc_entry_counts()
591 total_count, file, extents, extents); in file_check()
604 total_count, file, extents, extents); in file_check()
1106 if (total_count == 1 && regular_count == 1) in file_statistic()
1109 printf("[%u/%u]", defraged_file_count, total_count); in file_statistic()
1214 if (total_count == 1 && regular_count == 1) { in file_statistic()
1262 defraged_file_count, total_count, file); in file_statistic()
1336 defraged_file_count, total_count, file, min(percent, 100)); in print_progress()
1472 printf("[%u/%u]", defraged_file_count, total_count); in file_defrag()
[all …]
/external/autotest/client/site_tests/kernel_LTP/
Dparse_ltp_out.py115 total_count = pass_count + notpass_count
116 if total_count:
117 score = float(pass_count) / float(total_count) * 100.0
/external/autotest/client/tests/ltp/
Dparse_ltp_out.py120 total_count = pass_count + notpass_count
121 if total_count:
122 score = float(pass_count) / float(total_count) * 100.0
/external/pdfium/core/src/fpdftext/
Dfpdf_text.cpp681 int total_count = 0, rotated_count[3] = {0, 0, 0}; in CheckRotate() local
688 total_count++; in CheckRotate()
707 if (total_count == 0) { in CheckRotate()
711 if (rotated_count[0] > total_count * 2 / 3) { in CheckRotate()
713 } else if (rotated_count[1] > total_count * 2 / 3) { in CheckRotate()
715 } else if (rotated_count[2] > total_count * 2 / 3) { in CheckRotate()
/external/freetype/src/base/
Dftdbgmem.c857 FT_Long total_count = ft_atol( p ); in ft_mem_debug_init() local
860 if ( total_count > 0 ) in ft_mem_debug_init()
863 table->alloc_count_max = total_count; in ft_mem_debug_init()
/external/pdfium/third_party/freetype/src/base/
Dftdbgmem.c857 FT_Long total_count = ft_atol( p ); in ft_mem_debug_init() local
860 if ( total_count > 0 ) in ft_mem_debug_init()
863 table->alloc_count_max = total_count; in ft_mem_debug_init()
/external/libchrome/base/process/
Dprocess_metrics_linux.cc302 int total_count = 0; in GetOpenFdCount() local
306 ++total_count; in GetOpenFdCount()
309 return total_count; in GetOpenFdCount()
/external/v8/tools/
Dll_prof.py159 total_count = 0
175 total_count += count
182 assert total_count == self.self_ticks, \
183 "Lost ticks (%d != %d) in %s" % (total_count, self.self_ticks, self)
/external/opencv3/modules/java/generator/
Dgen_java.py1074 total_count = len(self.ported_func_list)+ len(self.skipped_func_list)
1075 … report.write("PORTED FUNCs LIST (%i of %i):\n\n" % (len(self.ported_func_list), total_count))
1077 …report.write("\n\nSKIPPED FUNCs LIST (%i of %i):\n\n" % (len(self.skipped_func_list), total_count))
/external/autotest/frontend/afe/
Drpc_interface.py1281 total_count = query.count()
1282 if total_count == 0:
1284 return float(complete_count) / total_count
/external/jemalloc/bin/
Djeprof.in989 my $total_count = shift;
997 printf("Total: %s %s\n", Unparse($total_count), Units());
1004 Unparse($total_count), ($focus_count*100.0) / $total_count);
1012 Unparse($total_count),
1013 ($ignore_count*100.0) / $total_count);
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_allocator.h538 uptr total_count = (region->mapped_user - beg_idx - size) in PopulateFreeList() local
540 region->allocated_meta += total_count * kMetadataSize; in PopulateFreeList()