Home
last modified time | relevance | path

Searched refs:incrementBy (Results 1 – 4 of 4) sorted by relevance

/external/skia/src/core/
DSkRTree.cpp84 int incrementBy = kMaxChildren; in CountNodes() local
87 incrementBy -= remainder; in CountNodes()
90 incrementBy = kMinChildren; in CountNodes()
96 for (int k = 1; k < incrementBy && currentBranch < branches; ++k) { in CountNodes()
133 int incrementBy = kMaxChildren; in bulkLoad() local
137 incrementBy -= remainder; in bulkLoad()
140 incrementBy = kMinChildren; in bulkLoad()
151 for (int k = 1; k < incrementBy && currentBranch < branches->count(); ++k) { in bulkLoad()
/external/guava/guava/src/com/google/common/cache/
DAbstractCache.java268 public void incrementBy(StatsCounter other) { in incrementBy() method in AbstractCache.SimpleStatsCounter
DLocalCache.java4791 aggregator.incrementBy(localCache.globalStatsCounter);
4793 aggregator.incrementBy(segment.statsCounter);
/external/guava/guava-tests/test/com/google/common/cache/
DAbstractCacheTest.java190 counter1.incrementBy(counter2); in testSimpleStatsIncrementBy()