| /external/skqp/src/ports/ |
| SkFontMgr_win_dw.cpp | 83 ULONG newCount = InterlockedDecrement(&fRefCount); 84 if (0 == newCount) { 87 return newCount; 159 ULONG newCount = InterlockedDecrement(&fRefCount); 160 if (0 == newCount) { 163 return newCount; 246 ULONG newCount = InterlockedDecrement(&fRefCount); 247 if (0 == newCount) { 250 return newCount; 616 ULONG newCount = InterlockedDecrement(&fRefCount) [all...] |
| SkRemotableFontMgr_win_dw.cpp | 323 ULONG newCount = InterlockedDecrement(&fRefCount); 324 if (0 == newCount) { 327 return newCount;
|
| /external/guava/guava-tests/benchmark/com/google/common/collect/ |
| ConcurrentHashMultisetBenchmark.java | 382 * Sets the number of occurrences of {@code element} to {@code newCount}, but 389 * {@code oldCount == newCount}, the method will return {@code true} if 391 * @throws IllegalArgumentException if {@code oldCount} or {@code newCount} is 394 @Override public boolean setCount(E element, int oldCount, int newCount) { 396 checkNonnegative(newCount, "newCount"); 397 if (newCount == 0) { 406 return countMap.putIfAbsent(element, newCount) == null; 408 return countMap.replace(element, oldCount, newCount);
|
| /external/guava/guava/src/com/google/common/cache/ |
| LocalCache.java | [all...] |
| /external/deqp/framework/delibs/decpp/ |
| deSharedPtr.hpp | 485 deInt32 oldCount, newCount; 493 newCount = oldCount+1; 494 } while (deAtomicCompareExchange32((deUint32 volatile*)&state->strongRefCount, (deUint32)oldCount, (deUint32)newCount) != (deUint32)oldCount);
|
| /external/guava/guava-tests/test/com/google/common/collect/ |
| ForwardingMultisetTest.java | 111 @Override public boolean setCount(T element, int oldCount, int newCount) { 112 return standardSetCount(element, oldCount, newCount); 233 String element, int oldCount, int newCount) {
|
| /external/guava/guava/src/com/google/common/collect/ |
| MapMakerInternalMap.java | [all...] |
| ComputingConcurrentHashMap.java | 99 int newCount = this.count - 1; 127 this.count = newCount; // write-volatile
|
| Multisets.java | 175 @Override public boolean setCount(E element, int oldCount, int newCount) { 909 Multiset<E> self, E element, int oldCount, int newCount) { 911 checkNonnegative(newCount, "newCount"); 914 self.setCount(element, newCount); [all...] |
| ImmutableMultiset.java | 316 public final boolean setCount(E element, int oldCount, int newCount) {
|
| /external/compiler-rt/lib/BlocksRuntime/ |
| runtime.c | 461 int32_t newCount; 463 newCount = latching_decr_int(&aBlock->flags) & BLOCK_REFCOUNT_MASK; 464 if (newCount > 0) return;
|
| /external/honggfuzz/third_party/android/libBlocksRuntime/ |
| runtime.c | 461 int32_t newCount; 463 newCount = latching_decr_int(&aBlock->flags) & BLOCK_REFCOUNT_MASK; 464 if (newCount > 0) return;
|
| /external/skia/src/ports/ |
| SkRemotableFontMgr_win_dw.cpp | 323 ULONG newCount = InterlockedDecrement(&fRefCount); 324 if (0 == newCount) { 327 return newCount;
|
| /external/harfbuzz_ng/src/ |
| hb-set.hh | 436 unsigned int count = 0, newCount = 0; 467 newCount = count; 520 if (pages.len > newCount) 521 resize (newCount);
|
| /external/skia/src/core/ |
| SkStrikeCache.cpp | 495 int SkStrikeCache::setCacheCountLimit(int newCount) { 496 if (newCount < 0) { 497 newCount = 0; 503 fCacheCountLimit = newCount;
|
| /external/skqp/src/core/ |
| SkStrikeCache.cpp | 470 int SkStrikeCache::setCacheCountLimit(int newCount) { 471 if (newCount < 0) { 472 newCount = 0; 478 fCacheCountLimit = newCount;
|
| /external/skia/src/android/ |
| SkAnimatedImage.cpp | 345 void SkAnimatedImage::setRepetitionCount(int newCount) { 346 fRepetitionCount = newCount;
|
| /external/skqp/src/android/ |
| SkAnimatedImage.cpp | 335 void SkAnimatedImage::setRepetitionCount(int newCount) { 336 fRepetitionCount = newCount;
|
| /cts/tests/tests/app.usage/src/android/app/usage/cts/ |
| UsageStatsTest.java | 746 private void verifyCount(int oldCount, int newCount, boolean larger, String label, 749 if (newCount <= oldCount) { 750 fail(label + " count newer " + newCount 755 if (newCount != oldCount) { 756 fail(label + " count newer " + newCount [all...] |
| /external/cldr/tools/java/org/unicode/cldr/tool/ |
| GenerateItemCounts.java | 335 Counter<String> newCount = new Counter<String>(); 345 + "\t" + newCount.getTotal()); 352 + "\t" + newCount.get(prefix)); 385 itemCount.newCount.add(prefix, set2.size()); 386 charCount.newCount.add(prefix, totalLength(set2)); 412 // .addAll(newCount.keySet()) [all...] |
| /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
| ImmutableMultiset.java | 315 public final boolean setCount(E element, int oldCount, int newCount) {
|
| Synchronized.java | 445 public boolean setCount(E element, int oldCount, int newCount) { 447 return delegate().setCount(element, oldCount, newCount);
|
| /external/owasp/sanitizer/distrib/lib/ |
| guava.jar | |
| /external/owasp/sanitizer/lib/guava-libraries/ |
| guava.jar | |
| /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/ |
| ItsService.java | [all...] |