HomeSort by relevance Sort by last modified time
    Searched defs:oldCount (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/chromium_org/third_party/skia/src/animator/
SkTypedArray.cpp 105 unsigned oldCount = fCount;
113 memcpy(fArray + oldCount, src, sizeof(int32_t) * count);
115 return fArray + oldCount;
156 int oldCount = fCount;
159 memmove(dst + count, dst, sizeof(int32_t) * (oldCount - index));
SkAnimateActive.cpp 58 int oldCount = fAnimators.count();
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--
    [all...]
SkDisplayApply.cpp 97 int oldCount = fActive->fAnimators.count();
100 fActive->appendSave(oldCount);
102 for (int index = oldCount; index < newCount; index++)
  /external/skia/src/animator/
SkTypedArray.cpp 105 unsigned oldCount = fCount;
113 memcpy(fArray + oldCount, src, sizeof(int32_t) * count);
115 return fArray + oldCount;
156 int oldCount = fCount;
159 memmove(dst + count, dst, sizeof(int32_t) * (oldCount - index));
SkAnimateActive.cpp 58 int oldCount = fAnimators.count();
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--
    [all...]
SkDisplayApply.cpp 97 int oldCount = fActive->fAnimators.count();
100 fActive->appendSave(oldCount);
102 for (int index = oldCount; index < newCount; index++)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
CounterNode.cpp 228 int oldCount = node->m_countInParent;
230 if (oldCount == newCount)
  /external/deqp/framework/delibs/decpp/
deSharedPtr.hpp 438 int oldCount, newCount;
443 oldCount = state->strongRefCount;
444 if (oldCount == 0)
446 newCount = oldCount+1;
447 } while (deAtomicCompareExchange32((deUint32 volatile*)&state->strongRefCount, (deUint32)oldCount, (deUint32)newCount) != (deUint32)oldCount);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultisetWritesTester.java 58 int oldCount = getMultiset().count(samples.e0);
60 oldCount, getMultiset().add(samples.e0, 2));
62 oldCount + 2, getMultiset().count(samples.e0));
100 int oldCount = getMultiset().count(samples.e0);
102 oldCount, getMultiset().remove(samples.e0, 0));
  /external/javassist/src/main/javassist/bytecode/
ByteStream.java 52 int oldCount = count;
53 buf[oldCount] = (byte)b;
54 count = oldCount + 1;
59 int oldCount = count;
60 buf[oldCount] = (byte)(s >>> 8);
61 buf[oldCount + 1] = (byte)s;
62 count = oldCount + 2;
67 int oldCount = count;
68 buf[oldCount] = (byte)(i >>> 24);
69 buf[oldCount + 1] = (byte)(i >>> 16)
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
Frame.java 187 int oldCount = oldDims == null ? 0 : oldDims.length;
189 if (oldCount != newCount) {
190 throw new IllegalArgumentException("Cannot resize " + oldCount + "-dimensional "
  /development/samples/Support7Demos/src/com/example/android/supportv7/widget/
RecyclerViewActivity.java 201 final int oldCount = getChildCount();
203 if (oldCount == 0) {
AnimatedRecyclerView.java 338 final int oldCount = getChildCount();
340 if (oldCount == 0) {
  /external/chromium_org/third_party/skia/include/core/
SkTDArray.h 184 int oldCount = fCount;
187 src + count <= fArray || fArray + oldCount <= src);
191 memcpy(fArray + oldCount, src, sizeof(T) * count);
194 return fArray + oldCount;
209 size_t oldCount = fCount;
212 memmove(dst + count, dst, sizeof(T) * (oldCount - index));
  /external/skia/include/core/
SkTDArray.h 184 int oldCount = fCount;
187 src + count <= fArray || fArray + oldCount <= src);
191 memcpy(fArray + oldCount, src, sizeof(T) * count);
194 return fArray + oldCount;
209 size_t oldCount = fCount;
212 memmove(dst + count, dst, sizeof(T) * (oldCount - index));
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
TreeMultiset.java 231 public boolean setCount(E element, int oldCount, int newCount) {
234 return mutate(element, new ConditionalSetCountModifier(oldCount, newCount))
235 == oldCount;
454 abstract int newCount(int oldCount);
459 int oldCount = countOrZero(originalEntry);
460 int newCount = newCount(oldCount);
461 if (oldCount == newCount) {
465 } else if (oldCount == 0) {
483 int newCount(int oldCount) {
484 checkArgument(countToAdd <= Integer.MAX_VALUE - oldCount, "Cannot add this many elements")
    [all...]
  /external/chromium_org/third_party/codesighs/
msdump2symdb.c 505 unsigned oldCount = inContainer->mReadState.mCurrentObject->mSectionCount;
509 memset(&inContainer->mReadState.mCurrentObject->mSections[oldCount], 0, sizeof(MSDump_Section) * (sectionIndex1 - oldCount));
    [all...]
  /external/guava/guava/src/com/google/common/collect/
TreeMultiset.java 235 public boolean setCount(E element, int oldCount, int newCount) {
238 return mutate(element, new ConditionalSetCountModifier(oldCount, newCount))
239 == oldCount;
458 abstract int newCount(int oldCount);
463 int oldCount = countOrZero(originalEntry);
464 int newCount = newCount(oldCount);
465 if (oldCount == newCount) {
469 } else if (oldCount == 0) {
487 int newCount(int oldCount) {
488 checkArgument(countToAdd <= Integer.MAX_VALUE - oldCount, "Cannot add this many elements")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
ThreadState.cpp 447 int oldCount = -1;
450 while (currentCount != oldCount) {
452 oldCount = currentCount;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollView.cpp 645 int oldCount = m_scrollbarsAvoidingResizer;
653 if ((oldCount > 0 && m_scrollbarsAvoidingResizer == 0) ||
654 (oldCount == 0 && m_scrollbarsAvoidingResizer > 0))
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkPictureFlat.h 418 const int oldCount = this->count();
420 *added = this->count() > oldCount;
445 SkASSERT(this->count() == oldCount);
  /external/skia/src/core/
SkPictureFlat.h 415 const int oldCount = this->count();
417 *added = this->count() > oldCount;
442 SkASSERT(this->count() == oldCount);
  /libcore/benchmarks/libs/
caliper.jar 
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 

Completed in 1286 milliseconds

1 2 3