HomeSort by relevance Sort by last modified time
    Searched refs:total (Results 1 - 25 of 2273) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/test/asan/TestCases/
coverage-caller-callee-total-count.cc 27 uintptr_t total = __sanitizer_get_total_unique_caller_callee_pairs(); local
29 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total);
31 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total);
33 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total);
37 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total);
39 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total)
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
ttl.py 35 total = long(text)
39 total = 0L
48 total += current * 604800L
50 total += current * 86400L
52 total += current * 3600L
54 total += current * 60L
56 total += current
62 if total < 0L or total > 2147483647L:
64 return total
    [all...]
  /external/mesa3d/src/glsl/tests/
optimization-test 3 total=0
10 total=$((total+1))
21 echo "$pass/$total tests returned correct results"
24 if [[ $pass == $total ]]; then
  /system/core/liblog/
uio.c 26 int total = 0; local
35 if (total == 0) total = -1;
40 total += ret;
46 return total;
50 int total = 0; local
59 if (total == 0) total = -1;
64 total += ret;
70 return total;
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/base/
StopwatchBenchmark.java 33 long total = 0; local
37 total += s.elapsed(TimeUnit.NANOSECONDS);
39 return total;
43 long total = 0; local
47 total += (System.nanoTime() - start);
49 return total;
SplitterBenchmark.java 45 int total = 0; local
48 total += Iterables.size(CHAR_SPLITTER.split(input));
53 int total = 0; local
56 total += Iterables.size(STRING_SPLITTER.split(input));
  /external/squashfs-tools/squashfs-tools/
read_file.c 59 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 - 2, "\\\\") == 0)
    [all...]
  /external/oauth/core/src/main/java/net/oauth/client/
ExcerptInputStream.java 22 int total = 0; local
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);
  /cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/
StorageDeviceInfo.java 36 int total = 0; local
37 total = Math.max(total, getContext().getExternalCacheDirs().length);
38 total = Math.max(total, getContext().getExternalFilesDirs(null).length);
39 total = Math.max(
40 total, getContext().getExternalFilesDirs(Environment.DIRECTORY_PICTURES).length);
41 total = Math.max(total, getContext().getObbDirs().length);
46 if (total == 1)
    [all...]
  /toolchain/binutils/binutils-2.25/gold/testsuite/
incr_comdat_test_2_v1.cc 34 static int total = 0; local
35 total += k;
36 return total;
incr_comdat_test_2_v2.cc 34 static int total = 0; local
35 total += k;
36 return total;
incr_comdat_test_2_v3.cc 34 static int total = 0; local
35 total += k;
36 return total;
incr_comdat_test_1.cc 43 static int total = 0; local
44 total += k;
45 return total;
  /bionic/libc/stdio/
fread.c 57 size_t total = desired_total; variable
62 if (total == 0) {
82 while (total > 0) {
86 size_t buffered_bytes = MIN((size_t) fp->_r, total);
91 total -= buffered_bytes;
96 if (total == 0) {
104 if (total > (size_t) fp->_bf._size) {
126 while (total > 0) {
127 ssize_t bytes_read = (*fp->_read)(fp->_cookie, dst, total);
133 total -= bytes_read
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
NanoTimeGranularityTester.java 36 long total = 0L; local
47 total += second - first;
48 total += third - second;
49 total += fourth - third;
50 total += fifth - fourth;
51 total += sixth - fifth;
52 total += seventh - sixth;
53 total += eighth - seventh;
54 total += ninth - eighth;
56 return ShortDuration.of(LongMath.divide(total, TRIALS * 8, CEILING), NANOSECONDS)
    [all...]
  /libcore/ojluni/src/main/java/java/util/zip/
CheckedInputStream.java 97 long total = 0; local
98 while (total < n) {
99 long len = n - total;
102 return total;
104 total += len;
106 return total;
  /libcore/support/src/test/java/tests/support/
ThrowingReader.java 30 private int total = 0; field in class:ThrowingReader
41 total++;
49 if (total < throwAt) {
50 count = Math.min(count, (throwAt - total));
54 total += returned;
59 if (total == throwAt) {
  /art/test/478-checker-inline-noreturn/src/
Main.java 50 int total = 0; local
52 total += $opt$noinline$Function(x, max_y);
54 return total;
  /external/iproute2/examples/bpf/
bpf_shared.h 18 long total; member in struct:count_queue
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SeparatedFolderListAdapter.java 58 // total together all sections, plus one for each section header
59 int total = 0; local
61 total += adapter.getCount();
63 return total;
68 // assume that headers count as one, then total all sections
69 int total = 0; local
71 total += adapter.getViewTypeCount();
72 return total == 0 ? 1 : total;
  /art/test/478-checker-inliner-nested-loop/src/
Main.java 44 int total = 0; local
47 total += Inline(x, y);
50 return total;
  /external/compiler-rt/test/asan/TestCases/Posix/
mmap_limit_mb.cc 28 for (long total = total_mb << 20; total > 0; total -= allocation_size)
  /external/valgrind/exp-bbv/tests/amd64-linux/
million.S 3 # 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/dng_sdk/source/
dng_xy_coord.cpp 30 real64 total = X + Y + Z; local
32 if (total > 0.0)
35 return dng_xy_coord (X / total,
36 Y / total);
  /external/lzma/CPP/7zip/Archive/Common/
MultiStream.h 35 UInt64 total = 0; local
39 s.GlobalOffset = total;
40 total += Streams[i].Size;
43 _totalLength = total;

Completed in 528 milliseconds

1 2 3 4 5 6 7 8 91011>>