Searched refs:total (Results 1 - 25 of 551) sorted by relevance

1234567891011>>

/external/v8/test/webkit/
H A Ddfg-put-scoped-var-backward-flow.js29 var total = 0;
31 total += num;
33 return 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...]
H A Dmmap_limit_mb.cc26 for (long total = total_mb << 20; total > 0; total -= allocation_size)
/external/mesa3d/src/glsl/tests/
H A Doptimization-test3 total=0
10 total=$((total+1))
21 echo "$pass/$total tests returned correct results"
24 if [[ $pass == $total ]]; then
/external/guava/guava-tests/benchmark/com/google/common/base/
H A DStopwatchBenchmark.java33 long total = 0;
37 total += s.elapsed(TimeUnit.NANOSECONDS);
39 return total;
43 long total = 0;
47 total += (System.nanoTime() - start);
49 return total;
H A DSplitterBenchmark.java45 int total = 0;
48 total += Iterables.size(CHAR_SPLITTER.split(input));
53 int total = 0;
56 total += Iterables.size(STRING_SPLITTER.split(input));
/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/oauth/core/src/main/java/net/oauth/client/
H A DExcerptInputStream.java22 int total = 0;
24 while ((read = read(excerpt, total, LIMIT - total)) != -1 && ((total += read) < LIMIT));
25 if (total == LIMIT) {
27 System.arraycopy(ELLIPSIS, 0, excerpt, total, ELLIPSIS.length);
29 byte[] tmp = new byte[total];
30 System.arraycopy(excerpt, 0, tmp, 0, total);
/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);
H A Dprogress.h15 void ui_progress__update(u64 curr, u64 total, const char *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/src/views/animated/
H A DSkScrollBarView.cpp53 void SkScrollBarView::setTotal(unsigned total) argument
55 if ((int)total < 0)
56 total = 0;
58 if (fTotalLength != total)
60 fTotalLength = total;
70 if (dom.findS32(node, "total", &value))
122 int total = fTotalLength; local
127 if (total <= 0 || shown <= 0 || shown >= total) // no bar to show
129 total
[all...]
/external/valgrind/exp-bbv/tests/amd64-linux/
H A Dmillion.S3 # total is 2 + 1 + 499997*2 + 3
7 xor %rcx,%rcx # not needed, pads total to 1M
8 xor %rax,%rax # not needed, pads total to 1M
/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/
H A DIProgress.h12 STDMETHOD(SetTotal)(UInt64 total) x; \
28 STDMETHOD(SetTotal)(const UInt64 *total) PURE;
/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/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/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/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/doclava/src/com/google/doclava/
H A DTodoFile.java58 public int total; field in class:TodoFile.PackageStats
85 int total = 1;
95 total++;
109 total++;
124 total++;
138 total++;
153 data.setValue(classBase + ".totalCount", "" + total);
154 data.setValue(classBase + ".percentGood", percent(errors, total));
165 ps.total += total;
[all...]
/external/fio/t/
H A Dstest.c25 unsigned long total; local
32 nr = total = 0;
33 while (total < 128*1024*1024UL) {
37 printf("fail at %lu, size %u\n", total, size);
42 total += size;
/external/lldb/test/python_api/type/
H A Dmain.cpp36 int total = 0; local
40 ++total;
43 printf("We have a total number of %d tasks\n", total);
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
H A DSynchronousHttpClient.java46 long total = 0;
48 total += count;
51 return total;
/external/lzma/CPP/7zip/UI/Console/
H A DPercentPrinter.h21 void SetTotal(UInt64 total) { m_Total = total; m_PrevValue = 0; } argument
/external/chromium-trace/trace-viewer/third_party/Paste/paste/debug/
H A Ddebugapp.py39 total = environ.get('CONTENT_LENGTH')
40 if total:
41 remaining = int(total)
44 print("%s of %s remaining" % (remaining, total))

Completed in 2708 milliseconds

1234567891011>>