Home
last modified time | relevance | path

Searched refs:totalCount (Results 1 – 25 of 38) sorted by relevance

12

/external/guava/guava/src/com/google/common/collect/
DTreeMultiset.java140 return (root == null) ? 0 : root.totalCount; in treeAggregate()
573 private long totalCount;
584 this.totalCount = elemCount;
607 totalCount += count;
616 totalCount += count;
638 this.totalCount += count;
652 this.totalCount += count;
661 this.totalCount += count;
679 this.totalCount -= result[0];
681 this.totalCount -= count;
[all …]
/external/guava/android/guava/src/com/google/common/collect/
DTreeMultiset.java138 return (root == null) ? 0 : root.totalCount; in treeAggregate()
564 private long totalCount;
575 this.totalCount = elemCount;
598 totalCount += count;
607 totalCount += count;
629 this.totalCount += count;
643 this.totalCount += count;
652 this.totalCount += count;
671 this.totalCount -= result[0];
673 this.totalCount -= count;
[all …]
DMultisets.java1053 private int totalCount;
1074 totalCount = laterCount = currentEntry.getCount();
1084 if (totalCount == 1) {
1089 totalCount--;
/external/angle/src/libANGLE/renderer/d3d/
DDynamicImage2DHLSL.cpp388 unsigned int totalCount, in OutputImage2DSizeFunction() argument
405 if (texture2DCount == totalCount) in OutputImage2DSizeFunction()
433 if (texture3DCount == totalCount) in OutputImage2DSizeFunction()
469 if (texture2DArrayCount == totalCount) in OutputImage2DSizeFunction()
494 unsigned int totalCount, in OutputImage2DLoadFunction() argument
511 if (texture2DCount == totalCount) in OutputImage2DLoadFunction()
529 if (texture3DCount == totalCount) in OutputImage2DLoadFunction()
564 if (texture2DArrayCount == totalCount) in OutputImage2DLoadFunction()
587 unsigned int totalCount, in OutputImage2DStoreFunction() argument
602 if (texture2DCount == totalCount) in OutputImage2DStoreFunction()
[all …]
DVertexDataManager.cpp383 int totalCount = in StoreStaticAttrib() local
387 if (totalCount > 0) in StoreStaticAttrib()
390 totalCount, 0, sourceData)); in StoreStaticAttrib()
502 size_t totalCount = gl::ComputeVertexBindingElementCount(binding.getDivisor(), count, in reserveSpaceForAttrib() local
514 static_cast<int64_t>(firstVertexIndex) + static_cast<int64_t>(totalCount); in reserveSpaceForAttrib()
523 return mStreamingBuffer.reserveVertexSpace(context, attrib, binding, totalCount, instances, in reserveSpaceForAttrib()
569 size_t totalCount = gl::ComputeVertexBindingElementCount(binding.getDivisor(), count, in storeDynamicAttrib() local
574 static_cast<GLsizei>(totalCount), instances, baseInstance, &streamOffset, sourceData)); in storeDynamicAttrib()
/external/skqp/tools/lua/
Dglyph-usage.lua116 local totalCount = 0
131 totalCount = totalCount + count
136 local ave = round(totalCount / strikeCount)
/external/jackson-core/src/test/java/perf/
DConcurrencyReadTest.java43 double totalCount = 0.0; in test() local
55 totalCount += done; in test()
58 System.out.printf("Rate: %.1f (avg: %.1f)\n", rate, totalCount/totalTime); in test()
/external/doclava/res/assets/templates/
Dtodo.cs37 <tr><th>Total Comments</th><td><?cs var:all.totalCount ?></td></tr>
54 <td><?cs var:pkg.totalCount ?></td>
74 <td><?cs var:cl.totalCount ?></td>
84 Total: <?cs var:cl.totalCount ?><br/>
/external/skia/src/core/
DSkBlitter_A8.cpp23 SkDEBUGCODE(int totalCount = 0;) in blitAntiH()
38 SkDEBUGCODE(totalCount += count;) in blitAntiH()
40 SkASSERT(fDevice.width() == totalCount); in blitAntiH()
/external/skqp/src/core/
DSkBlitter_A8.cpp23 SkDEBUGCODE(int totalCount = 0;) in blitAntiH()
38 SkDEBUGCODE(totalCount += count;) in blitAntiH()
40 SkASSERT(fDevice.width() == totalCount); in blitAntiH()
/external/angle/third_party/vulkan_memory_allocator/src/VmaReplay/
DVmaReplay.cpp49 void Print(uint32_t totalCount) const in Print()
53 printf(" %u (%.2f%%)\n", setCount, (double)setCount * 100.0 / (double)totalCount); in Print()
91 void Print(uint32_t totalCount) const in Print()
93 if(totalCount && in Print()
103 PrintItem((uint32_t)i, currCount, totalCount); in Print()
109 PrintItem(it.first, it.second, totalCount); in Print()
126 void PrintItem(uint32_t value, uint32_t count, uint32_t totalCount) const in PrintItem()
156 printf("%u (%.2f%%)\n", count, (double)count * 100.0 / (double)totalCount); in PrintItem()
182 void Print(uint32_t totalCount) const in Print()
184 if(totalCount && in Print()
[all …]
/external/skia/platform_tools/android/apps/skqp/src/main/java/org/skia/skqp/
DSkQPRunner.java56 int totalCount = mImpl.mUnitTests.length + mImpl.mGMs.length * mImpl.mBackends.length; in SkQPRunner() local
57 mTests = new Description[totalCount]; in SkQPRunner()
58 mShouldSkipTest = new boolean[totalCount]; // = {false, false, ....}; in SkQPRunner()
70 assert(index == totalCount); in SkQPRunner()
/external/skqp/platform_tools/android/apps/skqp/src/main/java/org/skia/skqp/
DSkQPRunner.java56 int totalCount = mImpl.mUnitTests.length + mImpl.mGMs.length * mImpl.mBackends.length; in SkQPRunner() local
57 mTests = new Description[totalCount]; in SkQPRunner()
58 mShouldSkipTest = new boolean[totalCount]; // = {false, false, ....}; in SkQPRunner()
70 assert(index == totalCount); in SkQPRunner()
/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
DPerformanceMeasurement.java176 int totalCount = 0; in computeDataAfterDiscard() local
179 totalCount += data[i]; in computeDataAfterDiscard()
184 int bar = (int) (totalCount * percent); in computeDataAfterDiscard()
/external/autotest/frontend/client/src/autotest/common/table/
DDataSource.java103 public void handleTotalResultCount(int totalCount); in handleTotalResultCount() argument
109 public void handleTotalResultCount(int totalCount) {} in handleTotalResultCount() argument
DDynamicTable.java267 public void handleTotalResultCount(int totalCount) { in handleTotalResultCount() argument
268 updatePaginatorTotalResults(totalCount); in handleTotalResultCount()
/external/skia/tools/viewer/
DStatsLayer.cpp126 int totalCount = 0; in onPaint() local
149 ++totalCount; in onPaint()
163 double time = totalTime / std::max(1, totalCount); in onPaint()
/external/google-breakpad/src/common/
Dlong_string_dictionary_unittest.cc127 int totalCount = 0; in TEST() local
131 totalCount++; in TEST()
167 EXPECT_EQ(totalCount, expectedDictionarySize); in TEST()
Dsimple_string_dictionary_unittest.cc183 int totalCount = 0; in TEST() local
187 totalCount++; in TEST()
224 EXPECT_EQ(totalCount, expectedDictionarySize); in TEST()
/external/glide/library/src/main/java/com/bumptech/glide/
DListPreloader.java52 …public void onScroll(AbsListView absListView, int firstVisible, int visibleCount, int totalCount) { in onScroll() argument
53 totalItemCount = totalCount; in onScroll()
/external/cldr/tools/java/org/unicode/cldr/tool/
DGetChanges.java220 int totalCount = 0; in old() local
322 totalCount += itemCount; in old()
324 System.out.println("##Total:\t" + totalCount); in old()
DSearchCLDR.java198 int totalCount = 0; in main() local
343 totalCount++; in main()
359 .println("# All Total " + totalCount + " found\n" in main()
DExtractMessages.java48 int totalCount = 0; in main() local
141 totalCount += itemCount; in main()
149 System.out.println("\ttotal items: " + totalCount); in main()
/external/cldr/tools/java/org/unicode/cldr/json/
DLdml2JsonConverter.java315 …rivate Map<JSONSection, List<CldrItem>> mapPathsToSections(AtomicInteger readCount, int totalCount, in mapPathsToSections() argument
451 private void convertCldrItems(AtomicInteger readCount, int totalCount, in convertCldrItems() argument
530 System.out.println(">"+progressPrefix(readCount, totalCount) + in convertCldrItems()
534 …System.out.println("?"+progressPrefix(readCount, totalCount) + outputDir + " - " + theItems.size()… in convertCldrItems()
668 …System.out.println(">"+progressPrefix(readCount, totalCount) + String.format(".../%s/%s\t= %d valu… in convertCldrItems()
1236 private final String progressPrefix(AtomicInteger readCount, int totalCount) { in progressPrefix() argument
1237 return progressPrefix(readCount.get(), totalCount); in progressPrefix()
1240 private final String progressPrefix(int readCount, int totalCount) { in progressPrefix() argument
1241 return String.format("[%d/%d]:\t", readCount, totalCount); in progressPrefix()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiMaintenance3Check.cpp406 deUint32 totalCount = 0u; in getBindingsDescription() local
415 totalCount += count; in getBindingsDescription()
421 combStr << "{ Descriptors: " << totalCount << ", ["; in getBindingsDescription()

12