/external/compiler-rt/test/asan/TestCases/ |
D | coverage-caller-callee-total-count.cc | 27 uintptr_t total = __sanitizer_get_total_unique_caller_callee_pairs(); in main() local 29 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total); in main() 31 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total); in main() 33 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total); in main() 37 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total); in main() 39 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total); in main() 41 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total); in main()
|
/external/squashfs-tools/squashfs-tools/ |
D | read_file.c | 59 int total = 0; in read_file() local 64 if(total + (MAX_LINE + 1) > size) { in read_file() 70 err = fgets(line + total, MAX_LINE + 1, fd); in read_file() 74 len = strlen(line + total); in read_file() 75 total += len; in read_file() 77 if(len == MAX_LINE && line[total - 1] != '\n') { in read_file() 89 if(len && line[total - 1] == '\n') { in read_file() 90 line[-- total] = '\0'; in read_file() 100 if(len == 0 || line[total - 1] != '\\' || (len >= 2 && in read_file() 101 strcmp(line + total - 2, "\\\\") == 0)) in read_file() [all …]
|
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
D | NanoTimeGranularityTester.java | 36 long total = 0L; in testNanoTimeGranularity() local 47 total += second - first; in testNanoTimeGranularity() 48 total += third - second; in testNanoTimeGranularity() 49 total += fourth - third; in testNanoTimeGranularity() 50 total += fifth - fourth; in testNanoTimeGranularity() 51 total += sixth - fifth; in testNanoTimeGranularity() 52 total += seventh - sixth; in testNanoTimeGranularity() 53 total += eighth - seventh; in testNanoTimeGranularity() 54 total += ninth - eighth; in testNanoTimeGranularity() 56 return ShortDuration.of(LongMath.divide(total, TRIALS * 8, CEILING), NANOSECONDS); in testNanoTimeGranularity()
|
/external/libchrome/base/ |
D | observer_list_unittest.cc | 29 explicit Adder(int scaler) : total(0), scaler_(scaler) {} in Adder() 30 void Observe(int x) override { total += x * scaler_; } in Observe() 32 int total; member in base::__anonf2975cd40111::Adder 201 EXPECT_EQ(20, a.total); in TEST() 202 EXPECT_EQ(-20, b.total); in TEST() 203 EXPECT_EQ(0, c.total); in TEST() 204 EXPECT_EQ(-10, d.total); in TEST() 205 EXPECT_EQ(0, e.total); in TEST() 232 EXPECT_EQ(20, a.total); in TEST() 233 EXPECT_EQ(-20, b.total); in TEST() [all …]
|
D | callback_list_unittest.cc | 25 int total() const { return total_; } in total() function in base::__anon077283990111::Listener 45 int total() const { return total_; } in total() function in base::__anon077283990111::Remover 71 int total() const { return total_; } in total() function in base::__anon077283990111::Adder 180 EXPECT_EQ(1, a.total()); in TEST() 181 EXPECT_EQ(1, b.total()); in TEST() 190 EXPECT_EQ(2, a.total()); in TEST() 191 EXPECT_EQ(1, b.total()); in TEST() 192 EXPECT_EQ(1, c.total()); in TEST() 215 EXPECT_EQ(10, a.total()); in TEST() 216 EXPECT_EQ(-10, b.total()); in TEST() [all …]
|
/external/oauth/core/src/main/java/net/oauth/client/ |
D | ExcerptInputStream.java | 22 int total = 0; in ExcerptInputStream() local 24 while ((read = read(excerpt, total, LIMIT - total)) != -1 && ((total += read) < LIMIT)); in ExcerptInputStream() 25 if (total == LIMIT) { in ExcerptInputStream() 27 System.arraycopy(ELLIPSIS, 0, excerpt, total, ELLIPSIS.length); in ExcerptInputStream() 29 byte[] tmp = new byte[total]; in ExcerptInputStream() 30 System.arraycopy(excerpt, 0, tmp, 0, total); in ExcerptInputStream()
|
/external/shflags/test_results/1.0.1/ |
D | Linux-Ubuntu_Hardy-8.04.txt | 37 tests total: 65 100% 61 tests total: 179 100% 79 tests total: 50 100% 95 tests total: 9 100% 122 tests total: 65 100% 146 tests total: 179 100% 164 tests total: 50 100% 180 tests total: 9 100% 204 tests total: 65 100% 228 tests total: 179 100% [all …]
|
D | Linux-Ubuntu_Dapper-6.06.txt | 37 tests total: 65 100% 61 tests total: 179 100% 79 tests total: 50 100% 95 tests total: 9 100% 122 tests total: 65 100% 146 tests total: 179 100% 164 tests total: 50 100% 180 tests total: 9 100% 206 tests total: 65 100% 230 tests total: 179 100% [all …]
|
/external/doclava/src/com/google/doclava/ |
D | TodoFile.java | 58 public int total; field in TodoFile.PackageStats 85 int total = 1; in writeTodoFile() local 95 total++; in writeTodoFile() 109 total++; in writeTodoFile() 124 total++; in writeTodoFile() 138 total++; in writeTodoFile() 153 data.setValue(classBase + ".totalCount", "" + total); in writeTodoFile() 154 data.setValue(classBase + ".percentGood", percent(errors, total)); in writeTodoFile() 165 ps.total += total; in writeTodoFile() 178 data.setValue("packages." + i + ".totalCount", "" + ps.total); in writeTodoFile() [all …]
|
/external/python/cpython2/Tools/scripts/ |
D | dutree.py | 8 total, d = None, {} 18 total, d = store(size, comps, total, d) 20 display(total, d) 25 def store(size, comps, total, d): argument 32 return total, d 34 def display(total, d): argument 35 show(total, d, '') 37 def show(total, d, prefix): argument
|
/external/kmod/shared/ |
D | array.c | 36 array->total = new_total; in array_realloc() 45 array->total = 0; in array_init() 53 if (array->count + 1 >= array->total) { in array_append() 54 int r = array_realloc(array, array->total + array->step); in array_append() 76 if (array->count + array->step < array->total) { in array_pop() 77 int r = array_realloc(array, array->total - array->step); in array_pop() 86 array->total = 0; in array_free_array() 105 if (array->count + array->step < array->total) { in array_remove_at() 106 int r = array_realloc(array, array->total - array->step); in array_remove_at()
|
/external/valgrind/none/tests/s390x/ |
D | ecag.stdout.exp-zec12 | 4 L1 total cachesize data: 98304 5 L1 total cachesize insn: 65536 11 L2 total cachesize data: 1048576 12 L2 total cachesize insn: 1048576 18 L3 total cachesize data: 50331648 19 L3 total cachesize insn: 50331648 25 L4 total cachesize data: 402653184 26 L4 total cachesize insn: 402653184
|
D | ecag.stdout.exp-z196 | 4 L1 total cachesize data: 131072 5 L1 total cachesize insn: 65536 11 L2 total cachesize data: 1572864 12 L2 total cachesize insn: 1572864 18 L3 total cachesize data: 25165824 19 L3 total cachesize insn: 25165824 25 L4 total cachesize data: 201326592 26 L4 total cachesize insn: 201326592
|
D | ecag.stdout.exp-z13 | 4 L1 total cachesize data: 131072 5 L1 total cachesize insn: 98304 11 L2 total cachesize data: 2097152 12 L2 total cachesize insn: 2097152 18 L3 total cachesize data: 67108864 19 L3 total cachesize insn: 67108864 25 L4 total cachesize data: 503316480 26 L4 total cachesize insn: 503316480
|
/external/python/cpython2/Lib/ |
D | fpformat.py | 72 total = intpart + fraction 73 nextdigit = total[i+digs] 77 if total[n] != '9': break 80 total = '0' + total 83 total = total[:n] + chr(ord(total[n]) + 1) + '0'*(len(total)-n-1) 84 intpart, fraction = total[:i], total[i:]
|
/external/guava/guava-tests/benchmark/com/google/common/base/ |
D | StopwatchBenchmark.java | 33 long total = 0; in stopwatch() local 37 total += s.elapsed(TimeUnit.NANOSECONDS); in stopwatch() 39 return total; in stopwatch() 43 long total = 0; in manual() local 47 total += (System.nanoTime() - start); in manual() 49 return total; in manual()
|
/external/openssh/regress/ |
D | modpipe.c | 86 size_t total; in main() local 106 for (total = 0;;) { in main() 116 if (mods[i].offset < total || in main() 117 mods[i].offset >= total + s) in main() 121 buf[mods[i].offset - total] ^= mods[i].m1; in main() 124 buf[mods[i].offset - total] &= mods[i].m1; in main() 125 buf[mods[i].offset - total] |= mods[i].m2; in main() 139 total += s; in main() 144 if (mods[i].offset < total) in main()
|
/external/bison/lib/ |
D | timevar.c | 452 struct timevar_time_def *total = &timevars[TV_TOTAL].elapsed; local 504 (total->user == 0 ? 0 : tv->elapsed.user / total->user) * 100); 511 (total->sys == 0 ? 0 : tv->elapsed.sys / total->sys) * 100); 518 (total->wall == 0 ? 0 : tv->elapsed.wall / total->wall) * 100); 527 fprintf (fp, "%7.2f ", total->user); 530 fprintf (fp, "%7.2f ", total->sys); 533 fprintf (fp, "%7.2f\n", total->wall); 555 print_time (str, total) in print_time() argument 557 long total; 562 str, total / 1000000, total % 1000000, [all …]
|
/external/toybox/toys/net/ |
D | ftpget.c | 59 int i, total = 0; local 62 while (total<len && (i = xread(fd, buf, len-total))) { 63 total += i; 64 if (buf[total-1] == '\n') break; 66 if (total>=len) error_exit("overflow"); 67 while (total--) 68 if (buf[total]=='\r' || buf[total]=='\n') buf[total] = 0; 72 return total+1;
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/ |
D | Table.java | 88 final List<? extends ITableItem> items, final ICoverageNode total, in render() argument 94 header(table, sortedItems, total); in render() 95 footer(table, total, resources, base); in render() 100 final List<? extends ITableItem> items, final ICoverageNode total) in header() argument 104 c.init(tr, items, total); in header() 108 private void footer(final HTMLElement table, final ICoverageNode total, in footer() argument 113 c.footer(tr, total, resources, base); in footer() 163 final ICoverageNode total) throws IOException { in init() argument 164 visible = renderer.init(items, total); in init() 174 void footer(final HTMLElement tr, final ICoverageNode total, in footer() argument [all …]
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
D | BuildMirroringTables.java | 59 int total = 0; in writeMirroredDataFile() local 68 chars[total] = ch & 0xFFFF; in writeMirroredDataFile() 69 mirrors[total++] = m & 0xFFFF; in writeMirroredDataFile() 73 System.out.println("There are " + total + " characters with a different mirror.\n"); in writeMirroredDataFile() 79 dump("mirroredChars", chars, total, 8); in writeMirroredDataFile() 83 dump("srahCderorrim", mirrors, total, 8); in writeMirroredDataFile() 85 output.println("const le_int32 DefaultCharMapper::mirroredCharsCount = " + total + ";\n"); in writeMirroredDataFile()
|
/external/mesa3d/src/compiler/glsl/tests/ |
D | warnings-test | 6 total=0 13 total=$((total+1)) 24 echo "$pass/$total tests returned correct results" 27 if [[ $pass == $total ]]; then
|
/external/vixl/test/ |
D | test-invalset.cc | 226 size_t total = 0; in TEST() local 228 total += it->val_; in TEST() 232 VIXL_CHECK(total == expected_total); in TEST() 242 total = 0; in TEST() 244 total += it->val_; in TEST() 248 VIXL_CHECK(total == expected_total); in TEST() 271 total = 0; in TEST() 273 total += it->val_; in TEST() 277 VIXL_CHECK(total == expected_total); in TEST() 295 size_t total = 0; in TEST() local [all …]
|
/external/e2fsprogs/contrib/ |
D | make-sparse.c | 29 int got, total = 0; in full_read() local 37 return total ? total : -1; in full_read() 41 return total; in full_read() 46 total += got; in full_read() 49 return total; in full_read()
|
/external/apache-http/src/org/apache/http/impl/io/ |
D | ContentLengthOutputStream.java | 67 private long total = 0; field in ContentLengthOutputStream 113 if (this.total < this.contentLength) { in write() 114 long max = this.contentLength - this.total; in write() 119 this.total += len; in write() 131 if (this.total < this.contentLength) { in write() 133 this.total++; in write()
|