/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/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/ |
D | 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
|
/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::__anonea3212f50111::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::__anonff0d39ba0111::Listener 45 int total() const { return total_; } in total() function in base::__anonff0d39ba0111::Remover 71 int total() const { return total_; } in total() function in base::__anonff0d39ba0111::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/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/opencv/cxcore/src/ |
D | cxdatastructs.cpp | 530 int count, total = seq->total; in cvGetSeqElem() local 532 if( (unsigned)index >= (unsigned)total ) in cvGetSeqElem() 534 index += index < 0 ? total : 0; in cvGetSeqElem() 535 index -= index >= total ? total : 0; in cvGetSeqElem() 536 if( (unsigned)index >= (unsigned)total ) in cvGetSeqElem() 541 if( index + index <= total ) in cvGetSeqElem() 554 total -= block->count; in cvGetSeqElem() 556 while( index < total ); in cvGetSeqElem() 557 index -= total; in cvGetSeqElem() 611 int total = seq->total; in cvSliceLength() local [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/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/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/boringssl/src/crypto/cipher/ |
D | e_ssl3.c | 131 size_t total = 0; in aead_ssl3_seal() local 175 total = len; in aead_ssl3_seal() 178 if (!EVP_EncryptUpdate(&ssl3_ctx->cipher_ctx, out + total, &len, mac, in aead_ssl3_seal() 182 total += len; in aead_ssl3_seal() 194 if (!EVP_EncryptUpdate(&ssl3_ctx->cipher_ctx, out + total, &len, padding, in aead_ssl3_seal() 198 total += len; in aead_ssl3_seal() 201 if (!EVP_EncryptFinal_ex(&ssl3_ctx->cipher_ctx, out + total, &len)) { in aead_ssl3_seal() 204 total += len; in aead_ssl3_seal() 206 *out_len = total; in aead_ssl3_seal() 253 size_t total = 0; in aead_ssl3_open() local [all …]
|
/external/valgrind/none/tests/s390x/ |
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-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-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/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/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/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/chromium-trace/catapult/telemetry/telemetry/util/ |
D | color_histogram.py | 41 total = np.sum(np.abs(cumsum)) 43 total = 0 47 total += abs(remainder) 51 return abs(float(total) / n1 / n2) 63 total = 0 66 total += HistogramDistance(self[i], other[i], default_color) 67 return total
|
/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/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/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/glsl/tests/ |
D | optimization-test | 3 total=0 10 total=$((total+1)) 21 echo "$pass/$total tests returned correct results" 24 if [[ $pass == $total ]]; then
|
/external/opencv/cvaux/src/ |
D | cvhmm1d.cpp | 333 int total = hmm->num_states; 337 num_samples = (int*)icvAlloc( total * sizeof(int) ); 340 counter = (int*)icvAlloc( total * sizeof(int) ); 342 samples = (CvVect32f**)icvAlloc( total * sizeof(CvVect32f*) ); 343 samples_mix = (int***)icvAlloc( total * sizeof(int**) ); 346 memset( num_samples, 0 , total*sizeof(int) ); 347 memset( counter, 0 , total*sizeof(int) ); 363 a_class = (int**)icvAlloc( total*sizeof(int*) ); 365 for (i = 0; i < total; i++) 390 memset( counter, 0, total*sizeof(int) ); [all …]
|