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

1 2 3 4

  /external/chromium_org/third_party/skia/tests/
TDStackNesterTest.cpp 38 const int newCount = nester->count();
39 REPORTER_ASSERT(reporter, newCount == count - 1);
42 REPORTER_ASSERT(reporter, newCount == value);
  /external/skia/tests/
TDStackNesterTest.cpp 38 const int newCount = nester->count();
39 REPORTER_ASSERT(reporter, newCount == count - 1);
42 REPORTER_ASSERT(reporter, newCount == value);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
CounterNode.cpp 229 int newCount = node->computeCountInParent();
230 if (oldCount == newCount)
232 node->m_countInParent = newCount;
  /external/chromium_org/third_party/skia/src/utils/win/
SkDWriteFontFileStream.cpp 164 ULONG newCount = InterlockedDecrement(&fRefCount);
165 if (0 == newCount) {
168 return newCount;
  /external/deqp/framework/delibs/decpp/
deSharedPtr.hpp 438 int oldCount, newCount;
446 newCount = oldCount+1;
447 } while (deAtomicCompareExchange32((deUint32 volatile*)&state->strongRefCount, (deUint32)oldCount, (deUint32)newCount) != (deUint32)oldCount);
  /external/javassist/src/main/javassist/bytecode/
ByteStream.java 185 int newCount = count + delta;
186 if (newCount > buf.length) {
188 byte[] newBuf = new byte[newLen > newCount ? newLen : newCount];
  /external/skia/src/utils/win/
SkDWriteFontFileStream.cpp 164 ULONG newCount = InterlockedDecrement(&fRefCount);
165 if (0 == newCount) {
168 return newCount;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
Frame.java 188 int newCount = newDims == null ? 0 : newDims.length;
189 if (oldCount != newCount) {
191 + "Frame to " + newCount + "-dimensional Frame!");
  /libcore/luni/src/main/java/java/lang/
CaseMapper.java 56 int newCount = 0;
70 newCount = i - offset;
71 System.arraycopy(value, offset, newValue, 0, newCount);
74 newValue[newCount++] = newCh;
77 return newValue != null ? new String(0, newCount, newValue) : s;
AbstractStringBuilder.java 94 int newCount = ((value.length >> 1) + value.length) + 2;
95 char[] newData = new char[min > newCount ? min : newCount];
102 int newCount = count + 4;
103 if (newCount > value.length) {
104 enlargeBuffer(newCount);
113 int newCount = count + chars.length;
114 if (newCount > value.length) {
115 enlargeBuffer(newCount);
118 count = newCount;
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
MergedAdapter.java 113 int newCount = count + a.getCount();
114 if (position < newCount) {
117 count = newCount;
  /external/chromium_org/third_party/skia/include/core/
SkTArray.h 156 int newCount = fCount - 1;
157 fCount = newCount;
159 if (n != newCount) {
160 SkTArrayExt::copy(this, n, newCount);
161 fItemArray[newCount].~T();
263 void resize_back(int newCount) {
264 SkASSERT(newCount >= 0);
266 if (newCount > fCount) {
267 this->push_back_n(newCount - fCount);
268 } else if (newCount < fCount)
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkAnimateActive.cpp 60 int newCount = animates.count();
62 int total = oldCount + newCount;
66 memset(&fInterpolators.begin()[oldCount], 0, newCount * sizeof(SkOperandInterpolator*));
71 newCount);
75 for (index = 0; index < newCount; index++) {
110 // total = oldCount + newCount;
118 int newCount = fAnimators.count();
122 int newTotal = records * newCount;
126 newTotal -= newCount;
131 sizeof(fSaveRestore[0]) * (newCount - oldCount))
    [all...]
SkDisplayApply.cpp 101 int newCount = fActive->fAnimators.count();
102 for (int index = oldCount; index < newCount; index++)
  /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/guava/guava/src/com/google/common/collect/
ComputingConcurrentHashMap.java 99 int newCount = this.count - 1;
127 this.count = newCount; // write-volatile
  /external/pdfium/core/src/fxge/win32/
fx_win32_dwrite.cpp 302 ULONG newCount = InterlockedDecrement((long*)(&refCount_));
303 if (newCount == 0) {
306 return newCount;
361 ULONG newCount = InterlockedDecrement((long*)(&refCount_));
362 if (newCount == 0) {
366 return newCount;
  /external/skia/include/core/
SkTArray.h 156 int newCount = fCount - 1;
157 fCount = newCount;
159 if (n != newCount) {
160 SkTArrayExt::copy(this, n, newCount);
161 fItemArray[newCount].~T();
263 void resize_back(int newCount) {
264 SkASSERT(newCount >= 0);
266 if (newCount > fCount) {
267 this->push_back_n(newCount - fCount);
268 } else if (newCount < fCount)
    [all...]
  /external/skia/src/animator/
SkAnimateActive.cpp 60 int newCount = animates.count();
62 int total = oldCount + newCount;
66 memset(&fInterpolators.begin()[oldCount], 0, newCount * sizeof(SkOperandInterpolator*));
71 newCount);
75 for (index = 0; index < newCount; index++) {
110 // total = oldCount + newCount;
118 int newCount = fAnimators.count();
122 int newTotal = records * newCount;
126 newTotal -= newCount;
131 sizeof(fSaveRestore[0]) * (newCount - oldCount))
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SmsBroadcastUndelivered.java 134 int newCount = receivedCount + 1;
135 if (newCount == tracker.getMessageCount()) {
143 multiPartReceivedCount.put(reference, newCount);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
AbstractDirectory.java 131 final long newCount = newSize / FatDirectoryEntry.SIZE;
132 if (newCount > Integer.MAX_VALUE)
135 this.capacity = (int) newCount;
  /external/chromium_org/third_party/skia/src/ports/
SkRemotableFontMgr_win_dw.cpp 380 ULONG newCount = InterlockedDecrement(&fRefCount);
381 if (0 == newCount) {
384 return newCount;
  /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))
454 abstract int newCount(int oldCount);
460 int newCount = newCount(oldCount);
461 if (oldCount == newCount) {
463 } else if (newCount == 0) {
466 return BstModificationResult.rebalancingChange(null, new Node<E>(key, newCount));
469 new Node<E>(originalEntry.getKey(), newCount));
483 int newCount(int oldCount)
    [all...]
  /external/skia/src/ports/
SkRemotableFontMgr_win_dw.cpp 380 ULONG newCount = InterlockedDecrement(&fRefCount);
381 if (0 == newCount) {
384 return newCount;
  /libcore/luni/src/main/java/java/util/
Vector.java 831 int newCount = elementCount - (end - start);
832 Arrays.fill(elementData, newCount, elementCount, null);
833 elementCount = newCount;
    [all...]

Completed in 575 milliseconds

1 2 3 4