/external/javassist/src/main/javassist/bytecode/ |
D | ByteStream.java | 52 int oldCount = count; in write() local 53 buf[oldCount] = (byte)b; in write() 54 count = oldCount + 1; in write() 59 int oldCount = count; in writeShort() local 60 buf[oldCount] = (byte)(s >>> 8); in writeShort() 61 buf[oldCount + 1] = (byte)s; in writeShort() 62 count = oldCount + 2; in writeShort() 67 int oldCount = count; in writeInt() local 68 buf[oldCount] = (byte)(i >>> 24); in writeInt() 69 buf[oldCount + 1] = (byte)(i >>> 16); in writeInt() [all …]
|
/external/skia/src/animator/ |
D | SkAnimateActive.cpp | 58 int oldCount = fAnimators.count(); in append() local 62 int total = oldCount + newCount; in append() 66 memset(&fInterpolators.begin()[oldCount], 0, newCount * sizeof(SkOperandInterpolator*)); in append() 67 for (index = oldCount; index < total; index++) in append() 70 memcpy(&fAnimators[oldCount], animates.begin(), sizeof(fAnimators[0]) * in append() 73 initState(apply, oldCount); in append() 78 SkActive::SkState& testState = fState[oldCount + index]; in append() 79 for (int inner = 0; inner < oldCount; inner++) { in append() 98 saveIndex -= oldCount; in append() 105 oldCount--; in append() [all …]
|
D | SkTypedArray.cpp | 105 unsigned oldCount = fCount; in append() local 113 memcpy(fArray + oldCount, src, sizeof(int32_t) * count); in append() 115 return fArray + oldCount; in append() 156 int oldCount = fCount; in insert() local 159 memmove(dst + count, dst, sizeof(int32_t) * (oldCount - index)); in insert()
|
D | SkAnimateActive.h | 39 void appendSave(int oldCount);
|
D | SkDisplayApply.cpp | 97 int oldCount = fActive->fAnimators.count(); in append() local 100 fActive->appendSave(oldCount); in append() 102 for (int index = oldCount; index < newCount; index++) in append()
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
D | AbstractMapBasedMultiset.java | 231 int oldCount; 233 oldCount = 0; 236 oldCount = frequency.get(); 237 long newCount = (long) oldCount + (long) occurrences; 243 return oldCount; 257 int oldCount = frequency.get(); 260 if (oldCount > occurrences) { 263 numberRemoved = oldCount; 269 return oldCount; 277 int oldCount; [all …]
|
D | TreeMultiset.java | 231 public boolean setCount(E element, int oldCount, int newCount) { in setCount() argument 234 return mutate(element, new ConditionalSetCountModifier(oldCount, newCount)) in setCount() 235 == oldCount; in setCount() 454 abstract int newCount(int oldCount); in newCount() argument 459 int oldCount = countOrZero(originalEntry); in modify() local 460 int newCount = newCount(oldCount); in modify() 461 if (oldCount == newCount) { in modify() 465 } else if (oldCount == 0) { in modify() 483 int newCount(int oldCount) { in newCount() argument 484 checkArgument(countToAdd <= Integer.MAX_VALUE - oldCount, "Cannot add this many elements"); in newCount() [all …]
|
D | LinkedListMultimap.java | 744 int oldCount = count(key); 750 return oldCount; 759 public boolean setCount(K element, int oldCount, int newCount) { 760 return setCountImpl(this, element, oldCount, newCount);
|
D | Synchronized.java | 443 public boolean setCount(E element, int oldCount, int newCount) { in setCount() argument 445 return delegate().setCount(element, oldCount, newCount); in setCount()
|
/external/guava/guava/src/com/google/common/collect/ |
D | AbstractMapBasedMultiset.java | 234 int oldCount; 236 oldCount = 0; 239 oldCount = frequency.get(); 240 long newCount = (long) oldCount + (long) occurrences; 246 return oldCount; 260 int oldCount = frequency.get(); 263 if (oldCount > occurrences) { 266 numberRemoved = oldCount; 272 return oldCount; 280 int oldCount; [all …]
|
D | TreeMultiset.java | 235 public boolean setCount(E element, int oldCount, int newCount) { in setCount() argument 238 return mutate(element, new ConditionalSetCountModifier(oldCount, newCount)) in setCount() 239 == oldCount; in setCount() 458 abstract int newCount(int oldCount); in newCount() argument 463 int oldCount = countOrZero(originalEntry); in modify() local 464 int newCount = newCount(oldCount); in modify() 465 if (oldCount == newCount) { in modify() 469 } else if (oldCount == 0) { in modify() 487 int newCount(int oldCount) { in newCount() argument 488 checkArgument(countToAdd <= Integer.MAX_VALUE - oldCount, "Cannot add this many elements"); in newCount() [all …]
|
D | ForwardingMultiset.java | 99 public boolean setCount(E element, int oldCount, int newCount) { in setCount() argument 100 return delegate().setCount(element, oldCount, newCount); in setCount() 230 E element, int oldCount, int newCount) { in standardSetCount() argument 231 return Multisets.setCountImpl(this, element, oldCount, newCount); in standardSetCount()
|
D | Multisets.java | 172 @Override public boolean setCount(E element, int oldCount, int newCount) { in setCount() argument 429 public boolean setCount(E element, int oldCount, int newCount) { in setCount() argument 430 return setCountImpl(this, element, oldCount, newCount); in setCount() 775 int oldCount = self.count(element); 777 int delta = count - oldCount; 784 return oldCount; 791 Multiset<E> self, E element, int oldCount, int newCount) { 792 checkNonnegative(oldCount, "oldCount"); 795 if (self.count(element) == oldCount) {
|
D | AbstractMultiset.java | 104 public boolean setCount(E element, int oldCount, int newCount) { in setCount() argument 105 return setCountImpl(this, element, oldCount, newCount); in setCount()
|
D | Multiset.java | 177 boolean setCount(E element, int oldCount, int newCount); in setCount() argument
|
D | Constraints.java | 363 @Override public boolean setCount(E element, int oldCount, int newCount) { in setCount() argument 365 return delegate.setCount(element, oldCount, newCount); in setCount()
|
D | LinkedListMultimap.java | 748 int oldCount = count(key); 754 return oldCount; 763 public boolean setCount(K element, int oldCount, int newCount) { 764 return setCountImpl(this, element, oldCount, newCount);
|
D | ImmutableMultiset.java | 317 public final boolean setCount(E element, int oldCount, int newCount) { in setCount() argument
|
D | Synchronized.java | 456 public boolean setCount(E element, int oldCount, int newCount) { in setCount() argument 458 return delegate().setCount(element, oldCount, newCount); in setCount()
|
/external/skia/include/core/ |
D | SkTDArray.h | 157 unsigned oldCount = fCount; variable 160 src + count <= fArray || fArray + oldCount <= src); 164 memcpy(fArray + oldCount, src, sizeof(T) * count); 167 return fArray + oldCount; 182 int oldCount = fCount; variable 185 memmove(dst + count, dst, sizeof(T) * (oldCount - index));
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
D | MultisetWritesTester.java | 58 int oldCount = getMultiset().count(samples.e0); in testAddOccurrences() local 60 oldCount, getMultiset().add(samples.e0, 2)); in testAddOccurrences() 62 oldCount + 2, getMultiset().count(samples.e0)); in testAddOccurrences() 100 int oldCount = getMultiset().count(samples.e0); in testRemove_occurrences_0() local 102 oldCount, getMultiset().remove(samples.e0, 0)); in testRemove_occurrences_0()
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | objc_zombie.mm | 324 const size_t oldCount = g_zombieCount; 344 g_zombieCount = oldCount; 353 const size_t sharedCount = std::min(oldCount, zombieCount); 356 oldIndex = (oldIndex + oldCount - sharedCount) % oldCount; 360 DCHECK_LT(oldIndex, oldCount); 362 oldIndex = (oldIndex + 1) % oldCount; 370 for (size_t i = 0; i < oldCount; ++i) { 395 const size_t oldCount = g_zombieCount; 406 for (size_t i = 0; i < oldCount; ++i) {
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | ForwardingMultisetTest.java | 111 @Override public boolean setCount(T element, int oldCount, int newCount) { in setCount() argument 112 return standardSetCount(element, oldCount, newCount); in setCount() 233 String element, int oldCount, int newCount) { in suite()
|
/external/webkit/Source/WebCore/rendering/ |
D | CounterNode.cpp | 183 int oldCount = node->m_countInParent; in recount() local 185 if (oldCount == newCount) in recount()
|
/external/webkit/Source/WebCore/platform/ |
D | ScrollView.cpp | 782 int oldCount = m_scrollbarsAvoidingResizer; in adjustScrollbarsAvoidingResizerCount() local 790 if ((oldCount > 0 && m_scrollbarsAvoidingResizer == 0) || in adjustScrollbarsAvoidingResizerCount() 791 (oldCount == 0 && m_scrollbarsAvoidingResizer > 0)) in adjustScrollbarsAvoidingResizerCount()
|