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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
CounterNode.cpp 226 int newCount = node->computeCountInParent();
227 if (oldCount == newCount)
229 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/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!");
  /frameworks/opt/mailcommon/java/com/android/mailcommon/
MergedAdapter.java 114 int newCount = count + a.getCount();
115 if (position < newCount) {
118 count = newCount;
  /libcore/luni/src/main/java/java/lang/
CaseMapper.java 54 int newCount = 0;
68 newCount = i - offset;
69 System.arraycopy(value, offset, newValue, 0, newCount);
72 newValue[newCount++] = newCh;
75 return newValue != null ? new String(0, newCount, newValue) : s;
AbstractStringBuilder.java 93 int newCount = ((value.length >> 1) + value.length) + 2;
94 char[] newData = new char[min > newCount ? min : newCount];
101 int newCount = count + 4;
102 if (newCount > value.length) {
103 enlargeBuffer(newCount);
112 int newCount = count + chars.length;
113 if (newCount > value.length) {
114 enlargeBuffer(newCount);
117 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 246 void resize_back(int newCount) {
247 SkASSERT(newCount >= 0);
249 if (newCount > fCount) {
250 this->push_back_n(newCount - fCount);
251 } else if (newCount < fCount) {
252 this->pop_back_n(fCount - newCount);
400 int newCount = fCount + delta;
403 if (newCount > fAllocCount || newCount < (fAllocCount / 3)) {
406 newAllocCount = SkMax32(newCount + ((newCount + 1) >> 1), fReserveCount)
    [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/BlocksRuntime/
runtime.c 461 int32_t newCount;
463 newCount = latching_decr_int(&aBlock->flags) & BLOCK_REFCOUNT_MASK;
464 if (newCount > 0) return;
  /external/skia/include/core/
SkTArray.h 246 void resize_back(int newCount) {
247 SkASSERT(newCount >= 0);
249 if (newCount > fCount) {
250 this->push_back_n(newCount - fCount);
251 } else if (newCount < fCount) {
252 this->pop_back_n(fCount - newCount);
400 int newCount = fCount + delta;
403 if (newCount > fAllocCount || newCount < (fAllocCount / 3)) {
406 newAllocCount = SkMax32(newCount + ((newCount + 1) >> 1), fReserveCount)
    [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...]
SkDisplayApply.cpp 101 int newCount = fActive->fAnimators.count();
102 for (int index = oldCount; index < newCount; index++)
  /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/
SkFontHost_win_dw.cpp 254 ULONG newCount = InterlockedDecrement(&fRefCount);
255 if (0 == newCount) {
258 return newCount;
326 ULONG newCount = InterlockedDecrement(&fRefCount);
327 if (0 == newCount) {
330 return newCount;
410 ULONG newCount = InterlockedDecrement(&fRefCount);
411 if (0 == newCount) {
414 return newCount;
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ComputingConcurrentHashMap.java 101 int newCount = this.count - 1;
129 this.count = newCount; // write-volatile
TreeMultiset.java 235 public boolean setCount(E element, int oldCount, int newCount) {
238 return mutate(element, new ConditionalSetCountModifier(oldCount, newCount))
458 abstract int newCount(int oldCount);
464 int newCount = newCount(oldCount);
465 if (oldCount == newCount) {
467 } else if (newCount == 0) {
470 return BstModificationResult.rebalancingChange(null, new Node<E>(key, newCount));
473 new Node<E>(originalEntry.getKey(), newCount));
487 int newCount(int oldCount)
    [all...]
  /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/
SkFontHost_win_dw.cpp 254 ULONG newCount = InterlockedDecrement(&fRefCount);
255 if (0 == newCount) {
258 return newCount;
326 ULONG newCount = InterlockedDecrement(&fRefCount);
327 if (0 == newCount) {
330 return newCount;
410 ULONG newCount = InterlockedDecrement(&fRefCount);
411 if (0 == newCount) {
414 return newCount;
    [all...]