Searched defs:total (Results 1 - 25 of 273) sorted by relevance

1234567891011

/external/linux-tools-perf/src/tools/perf/ui/
H A Dprogress.c5 u64 total __maybe_unused,
17 void ui_progress__update(u64 curr, u64 total, const char *title) argument
19 return progress_fns->update(curr, total, title);
/external/linux-tools-perf/src/tools/perf/ui/tui/
H A Dprogress.c7 static void tui_progress__update(u64 curr, u64 total, const char *title) argument
17 if (total == 0)
28 bar = ((SLtt_Screen_Cols - 2) * curr) / total;
/external/skia/bench/
H A DMemoryBench.cpp36 size_t total = fMinSize * 64; variable
43 while (size < total) {
/external/sqlite/android/
H A DPhoneNumberUtilsTest.cpp34 #define EXPECT(function, input1, input2, expected, total, error) \
38 (total)++; \
53 (total), (error))
58 (total), (error))
64 (total)++; \
77 int total = 0; local
189 printf("total: %d, error: %d\n\n", total, error);
/external/apache-http/src/org/apache/http/impl/io/
H A DContentLengthOutputStream.java67 private long total = 0; field in class:ContentLengthOutputStream
113 if (this.total < this.contentLength) {
114 long max = this.contentLength - this.total;
119 this.total += len;
131 if (this.total < this.contentLength) {
133 this.total++;
/external/compiler-rt/test/asan/TestCases/
H A Dcoverage-caller-callee-total-count.cc26 uintptr_t total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(0); local
28 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total);
30 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total);
32 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total);
36 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total);
38 total
[all...]
/external/e2fsprogs/contrib/
H A Dmake-sparse.c25 int got, total = 0; local
33 return total ? total : -1;
37 return total;
42 total += got;
45 return total;
/external/elfutils/src/lib/
H A Dmd5.h52 md5_uint32 total[2]; member in struct:md5_ctx
H A Dsha1.h53 sha1_uint32 total[2]; member in struct:sha1_ctx
/external/jemalloc/test/integration/
H A Daligned_alloc.c77 size_t alignment, size, total; local
87 total = 0;
102 total += malloc_usable_size(ps[i]);
103 if (total >= (MAXALIGN << 1))
H A Dmallocx.c41 size_t nsz, rsz, sz, alignment, total; local
51 total = 0;
78 total += rsz;
79 if (total >= (MAXALIGN << 1))
H A Dposix_memalign.c69 size_t alignment, size, total; local
80 total = 0;
96 total += malloc_usable_size(ps[i]);
97 if (total >= (MAXALIGN << 1))
H A Dsdallocx.c15 size_t nsz, sz, alignment, total; local
25 total = 0;
34 total += nsz;
35 if (total >= (MAXALIGN << 1))
/external/jmonkeyengine/engine/src/test/jme3test/network/
H A DTestThroughput.java43 private static long total = 0; field in class:TestThroughput
66 total++;
68 //System.out.println( "total:" + total + " counter:" + counter + " lastTime:" + lastTime + " time:" + time );
75 System.out.println("messages per second:" + pps + " total messages:" + total);
/external/libvncserver/common/
H A Dmd5.h89 md5_uint32 total[2]; member in struct:md5_ctx
/external/linux-tools-perf/src/tools/perf/ui/gtk/
H A Dprogress.c10 static void gtk_progress_update(u64 curr, u64 total, const char *title) argument
12 double fraction = total ? 1.0 * curr / total : 0.0;
35 snprintf(buf, sizeof(buf), "%"PRIu64" / %"PRIu64, curr, total);
/external/lzma/CPP/7zip/Archive/Common/
H A DMultiStream.h30 UInt64 total = 0; local
34 s.GlobalOffset = total;
35 total += Streams[i].Size;
38 _totalLength = total;
/external/lzma/CPP/7zip/UI/Console/
H A DPercentPrinter.h21 void SetTotal(UInt64 total) { m_Total = total; m_PrevValue = 0; } argument
/external/netperf/
H A Dhist.h56 int total; member in struct:histogram_struct
/external/skia/gm/
H A Dverttext.cpp61 SkScalar total = paint.measureText(gText, gLen); local
67 paint.isVerticalText() ? x : x + total,
68 paint.isVerticalText() ? y + total : y,
/external/skia/tests/
H A DAtomicTest.cpp35 int32_t total = base; local
38 total += gAdds[i].valueToAdd * gAdds[i].timesToAdd;
52 REPORTER_ASSERT(reporter, total == base);
/external/squashfs-tools/squashfs-tools/
H A Dread_file.c59 int total = 0; local
64 if(total + (MAX_LINE + 1) > size) {
70 err = fgets(line + total, MAX_LINE + 1, fd);
74 len = strlen(line + total);
75 total += len;
77 if(len == MAX_LINE && line[total - 1] != '\n') {
89 if(len && line[total - 1] == '\n') {
90 line[-- total] = '\0';
100 if(len == 0 || line[total - 1] != '\\' || (len >= 2 &&
101 strcmp(line + total
[all...]
/external/valgrind/drd/tests/
H A Domp_prime.c38 int total = 0; local
89 DRD_TRACE_VAR(total);
96 primes[total] = i;
97 total++;
103 n, total);
104 for (i = 0; i < total; i++)
/external/elfutils/src/libdw/
H A Ddwarf_aggregate_size.c66 Dwarf_Word total = 0; local
189 total += stride * count;
196 *size = total;
/external/fio/t/
H A Dlfsr-test.c39 double total, mean; local
118 total = utime_since(&start, &end);
119 mean = total / fl->num_vals;
125 printf("Elapsed: %lf s\n", total / pow(10,9));

Completed in 2252 milliseconds

1234567891011