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

1 2

  /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/include/core/
SkTArray.h 216 void resize_back(int newCount) {
217 SkASSERT(newCount >= 0);
219 if (newCount > fCount) {
220 push_back_n(newCount - fCount);
221 } else if (newCount < fCount) {
222 pop_back_n(fCount - newCount);
331 int newCount = fCount + delta;
334 if (newCount > fAllocCount) {
335 newAllocCount = SkMax32(newCount + ((newCount + 1) >> 1)
    [all...]
  /external/webkit/Source/WebCore/rendering/
CounterNode.cpp 184 int newCount = node->computeCountInParent();
185 if (oldCount == newCount)
187 node->m_countInParent = newCount;
  /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...]
  /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;
  /frameworks/compile/libbcc/runtime/BlocksRuntime/
runtime.c 462 int32_t newCount;
464 newCount = latching_decr_int(&aBlock->flags) & BLOCK_REFCOUNT_MASK;
465 if (newCount > 0) return;
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
ArraySizeDetector.java 193 int newCount = LintUtils.getChildCount(node);
194 if (newCount != count) {
196 count = newCount; // first number encountered
  /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...]
MapMakerInternalMap.java     [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/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++)
  /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...]
  /external/skia/src/gpu/
GrTesselatedPathRenderer.cpp 529 int newCount = computeEdgesAndIntersect(matrix, inverse, &btess.contourPoints()[i], count, &edges, 1.0f);
531 for (int j = 0; j < newCount; j++) {
  /libcore/luni/src/main/java/java/io/
RandomAccessFile.java 660 int newCount = (int) ((currentPos + count > eof) ? eof - currentPos : count);
661 seek(currentPos + newCount);
662 return newCount;
  /external/webkit/Source/WebKit/win/
WebHistory.cpp 507 int newCount = CFArrayGetCount(entries);
510 *count = newCount;
514 if (*count < newCount) {
515 *count = newCount;
519 *count = newCount;
520 for (int i = 0; i < newCount; i++) {
    [all...]
  /frameworks/base/core/jni/
android_server_BluetoothEventLoop.cpp 622 int newCount = --nat->pollMemberCount;
624 nat->pollData[y].fd = nat->pollData[newCount].fd;
625 nat->pollData[y].events = nat->pollData[newCount].events;
626 nat->pollData[y].revents = nat->pollData[newCount].revents;
627 nat->watchData[y] = nat->watchData[newCount];
    [all...]
android_util_Process.cpp 622 jsize newCount = (curCount == 0) ? 10 : (curCount*2);
623 jintArray newArray = env->NewIntArray(newCount);
635 curCount = newCount;
  /packages/apps/Email/src/com/android/email/provider/
ContentCache.java 131 int newCount;
136 newCount = refCount - 1;
137 mMap.put(object, newCount);
139 newCount = 0;
142 return newCount;
  /frameworks/base/core/java/android/widget/
RemoteViewsAdapter.java     [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SlotView.java 288 int newCount = 0;
293 if ((r & RENDER_MORE_PASS) != 0) requestedSlot[newCount++] = i;
295 requestCount = newCount;
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java     [all...]

Completed in 494 milliseconds

1 2