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

  /external/skia/gpu/include/
GrTArray.h 231 void resize_back(int newCount) {
232 GrAssert(newCount >= 0);
234 if (newCount > fCount) {
235 push_back_n(newCount - fCount);
236 } else if (newCount < fCount) {
237 pop_back_n(fCount - newCount);
283 int newCount = fCount + delta;
286 if (newCount > fAllocCount) {
287 fNewAllocCount = GrMax(newCount + ((newCount + 1) >> 1)
    [all...]
  /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/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...]
  /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;
  /external/skia/src/animator/
SkAnimateActive.cpp 68 int newCount = animates.count();
70 int total = oldCount + newCount;
74 memset(&fInterpolators.begin()[oldCount], 0, newCount * sizeof(SkOperandInterpolator*));
79 newCount);
83 for (index = 0; index < newCount; index++) {
118 // total = oldCount + newCount;
126 int newCount = fAnimators.count();
130 int newTotal = records * newCount;
134 newTotal -= newCount;
139 sizeof(fSaveRestore[0]) * (newCount - oldCount))
    [all...]
SkDisplayApply.cpp 109 int newCount = fActive->fAnimators.count();
110 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...]
  /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 623 int newCount = --nat->pollMemberCount;
625 nat->pollData[y].fd = nat->pollData[newCount].fd;
626 nat->pollData[y].events = nat->pollData[newCount].events;
627 nat->pollData[y].revents = nat->pollData[newCount].revents;
628 nat->watchData[y] = nat->watchData[newCount];
    [all...]
android_util_Process.cpp 575 jsize newCount = (curCount == 0) ? 10 : (curCount*2);
576 jintArray newArray = env->NewIntArray(newCount);
588 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;
  /external/webkit/Source/JavaScriptCore/parser/
JSParser.cpp     [all...]
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 

Completed in 461 milliseconds