/external/skia/src/animator/ |
H A D | SkTypedArray.cpp | 105 unsigned oldCount = fCount; local 113 memcpy(fArray + oldCount, src, sizeof(int32_t) * count); 115 return fArray + oldCount; 156 int oldCount = fCount; local 159 memmove(dst + count, dst, sizeof(int32_t) * (oldCount - index));
|
H A D | SkAnimateActive.cpp | 58 int oldCount = fAnimators.count(); local 62 int total = oldCount + newCount; 66 memset(&fInterpolators.begin()[oldCount], 0, newCount * sizeof(SkOperandInterpolator*)); 67 for (index = oldCount; index < total; index++) 70 memcpy(&fAnimators[oldCount], animates.begin(), sizeof(fAnimators[0]) * 73 initState(apply, oldCount); 78 SkActive::SkState& testState = fState[oldCount + index]; 79 for (int inner = 0; inner < oldCount; inner++) { 98 saveIndex -= oldCount; 105 oldCount 116 appendSave(int oldCount) argument 256 int oldCount = fSaveRestore.count(); local [all...] |
H A D | SkDisplayApply.cpp | 97 int oldCount = fActive->fAnimators.count(); local 100 fActive->appendSave(oldCount); 102 for (int index = oldCount; index < newCount; index++)
|
/external/skia/src/core/ |
H A D | SkCachedData.cpp | 17 int32_t oldCount = sk_atomic_inc(&gCachedDataCounter); local 18 SkDebugf("SkCachedData inc %d\n", oldCount + 1); 22 int32_t oldCount = sk_atomic_dec(&gCachedDataCounter); local 23 SkDebugf("SkCachedData dec %d\n", oldCount - 1);
|
H A D | SkPictureFlat.h | 433 const int oldCount = this->count(); local 435 *added = this->count() > oldCount; 460 SkASSERT(this->count() == oldCount);
|
H A D | SkPath.cpp | 3187 int oldCount = tangents.count(); local 3208 if (tangents.count() > oldCount) {
|
/external/guava/guava/src/com/google/common/collect/ |
H A D | AbstractMultiset.java | 104 public boolean setCount(@Nullable E element, int oldCount, int newCount) { argument 105 return setCountImpl(this, element, oldCount, newCount);
|
H A D | ForwardingMultiset.java | 99 public boolean setCount(E element, int oldCount, int newCount) { argument 100 return delegate().setCount(element, oldCount, newCount); 225 protected boolean standardSetCount(E element, int oldCount, int newCount) { argument 226 return Multisets.setCountImpl(this, element, oldCount, newCount);
|
H A D | Multiset.java | 164 * current count. If the current count is not {@code oldCount}, no change is 169 * @param oldCount the expected present count of the element in this multiset 173 * {@code oldCount == newCount}. 174 * @throws IllegalArgumentException if {@code oldCount} or {@code newCount} is 178 * oldCount} and {@code newCount} are both zero, the implementor may 181 boolean setCount(E element, int oldCount, int newCount); argument
|
H A D | ImmutableMultiset.java | 316 public final boolean setCount(E element, int oldCount, int newCount) { argument
|
H A D | Multisets.java | 175 @Override public boolean setCount(E element, int oldCount, int newCount) { argument 893 int oldCount = self.count(element); 895 int delta = count - oldCount; 902 return oldCount; 909 Multiset<E> self, E element, int oldCount, int newCount) { 910 checkNonnegative(oldCount, "oldCount"); 913 if (self.count(element) == oldCount) { 908 setCountImpl( Multiset<E> self, E element, int oldCount, int newCount) argument
|
H A D | TreeMultiset.java | 312 public boolean setCount(@Nullable E element, int oldCount, int newCount) { argument 314 checkNonnegative(oldCount, "oldCount"); 319 if (oldCount == 0) { 329 AvlNode<E> newRoot = root.setCount(comparator(), element, oldCount, newCount, result); 331 return result[0] == oldCount;
|
H A D | Synchronized.java | 461 public boolean setCount(E element, int oldCount, int newCount) { argument 463 return delegate().setCount(element, oldCount, newCount);
|
/external/deqp/framework/delibs/decpp/ |
H A D | deSharedPtr.hpp | 485 deInt32 oldCount, newCount; local 490 oldCount = state->strongRefCount; 491 if (oldCount == 0) 493 newCount = oldCount+1; 494 } while (deAtomicCompareExchange32((deUint32 volatile*)&state->strongRefCount, (deUint32)oldCount, (deUint32)newCount) != (deUint32)oldCount);
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
H A D | ImmutableMultiset.java | 315 public final boolean setCount(E element, int oldCount, int newCount) { argument
|
H A D | TreeMultiset.java | 308 public boolean setCount(@Nullable E element, int oldCount, int newCount) { argument 310 checkNonnegative(oldCount, "oldCount"); 315 if (oldCount == 0) { 325 AvlNode<E> newRoot = root.setCount(comparator(), element, oldCount, newCount, result); 327 return result[0] == oldCount;
|
H A D | Synchronized.java | 445 public boolean setCount(E element, int oldCount, int newCount) { argument 447 return delegate().setCount(element, oldCount, newCount);
|
/external/guava/guava-tests/benchmark/com/google/common/collect/ |
H A D | ConcurrentHashMultisetBenchmark.java | 383 * only if the count is currently {@code oldCount}. If {@code element} does 384 * not appear in the multiset exactly {@code oldCount} times, no changes will 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) { argument 395 checkNonnegative(oldCount, "oldCount"); 398 if (oldCount == 0) { 402 return countMap.remove(element, oldCount); 405 if (oldCount [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
H A D | ForwardingMultisetTest.java | 111 @Override public boolean setCount(T element, int oldCount, int newCount) { argument 112 return standardSetCount(element, oldCount, newCount); 233 String element, int oldCount, int newCount) {
|
/external/skia/include/private/ |
H A D | SkTDArray.h | 165 int oldCount = fCount; local 168 src + count <= fArray || fArray + oldCount <= src); 172 memcpy(fArray + oldCount, src, sizeof(T) * count); 175 return fArray + oldCount; 190 size_t oldCount = fCount; local 193 memmove(dst + count, dst, sizeof(T) * (oldCount - index));
|
/external/tpm2/ |
H A D | CryptUtil.c | 1631 UINT16 oldCount = (UINT16)gr.commitCounter; 1633 BitSet(oldCount & COMMIT_INDEX_MASK, gr.commitArray, sizeof(gr.commitArray)); 1634 return oldCount; 1630 UINT16 oldCount = (UINT16)gr.commitCounter; local
|
/external/owasp/sanitizer/distrib/lib/ |
H A D | guava.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ... |
/external/owasp/sanitizer/lib/guava-libraries/ |
H A D | guava.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ... |
/external/testng/ant/3rdparty/ |
H A D | doclava-1.0.3.jar | META-INF/MANIFEST.MF assets/html/index.html assets/templates/data.hdf assets/templates/assets/ ... |
/external/guice/lib/ |
H A D | guava-16.0.1.jar | META-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ... |