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

1 2 3 4 5 6 7 8 91011

  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
IntDiffer.java 128 int newCount = aCount-aTop;
129 System.arraycopy(a, aTop, a, 0, newCount);
130 aCount = newCount;
135 int newCount = bCount-bTop;
136 System.arraycopy(b, bTop, b, 0, newCount);
137 bCount = 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 168 ULONG newCount = InterlockedDecrement(&fRefCount);
169 if (0 == newCount) {
172 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!");
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
MergedAdapter.java 113 int newCount = count + a.getCount();
114 if (position < newCount) {
117 count = newCount;
  /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/deqp/framework/delibs/decpp/
deSharedPtr.hpp 485 deInt32 oldCount, newCount;
493 newCount = oldCount+1;
494 } while (deAtomicCompareExchange32((deUint32 volatile*)&state->strongRefCount, (deUint32)oldCount, (deUint32)newCount) != (deUint32)oldCount);
  /external/guava/guava/src/com/google/common/collect/
ComputingConcurrentHashMap.java 99 int newCount = this.count - 1;
127 this.count = newCount; // write-volatile
MapMakerInternalMap.java     [all...]
  /external/skia/include/private/
SkTArray.h 155 int newCount = fCount - 1;
156 fCount = newCount;
158 if (n != newCount) {
159 this->move(n, newCount);
288 void resize_back(int newCount) {
289 SkASSERT(newCount >= 0);
291 if (newCount > fCount) {
292 this->push_back_n(newCount - fCount);
293 } else if (newCount < fCount) {
294 this->pop_back_n(fCount - newCount);
    [all...]
  /external/skia/src/core/
SkLinearBitmapPipeline_core.h 131 int newCount = dxSteps + 1;
132 SkASSERT(newCount > 0);
137 fCount -= newCount;
140 return Span{newStart, newLength, newCount};
  /external/skia/src/ports/
SkRemotableFontMgr_win_dw.cpp 321 ULONG newCount = InterlockedDecrement(&fRefCount);
322 if (0 == newCount) {
325 return newCount;
SkFontMgr_win_dw.cpp 76 ULONG newCount = InterlockedDecrement(&fRefCount);
77 if (0 == newCount) {
80 return newCount;
152 ULONG newCount = InterlockedDecrement(&fRefCount);
153 if (0 == newCount) {
156 return newCount;
239 ULONG newCount = InterlockedDecrement(&fRefCount);
240 if (0 == newCount) {
243 return newCount;
608 ULONG newCount = InterlockedDecrement(&fRefCount)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SmsBroadcastUndelivered.java 185 int newCount = receivedCount + 1;
186 if (newCount == tracker.getMessageCount()) {
194 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/pdfium/core/fxge/win32/
fx_win32_dwrite.cpp 301 ULONG newCount = InterlockedDecrement((long*)(&refCount_));
302 if (newCount == 0) {
305 return newCount;
356 ULONG newCount = InterlockedDecrement((long*)(&refCount_));
357 if (newCount == 0) {
361 return newCount;
  /libcore/ojluni/src/main/java/java/lang/
AbstractStringBuilder.java     [all...]
  /frameworks/base/core/jni/
android_util_Process.cpp 821 jsize newCount = (curCount == 0) ? 10 : (curCount*2);
822 jintArray newArray = env->NewIntArray(newCount);
834 curCount = newCount;
    [all...]
  /packages/apps/Car/libs/car-stream-ui-lib/src/com/android/car/view/
PagedListView.java 334 int newCount = mAdapter.getItemCount();
335 if (newCount < originalCount) {
336 mAdapter.notifyItemRangeChanged(newCount, originalCount);
337 } else if (newCount > originalCount) {
  /packages/apps/Email/provider_src/com/android/email/provider/
ContentCache.java 132 int newCount;
137 newCount = refCount - 1;
138 mMap.put(object, newCount);
140 newCount = 0;
143 return newCount;
  /tools/tradefederation/core/src/com/android/tradefed/testtype/
HostTest.java     [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SlotView.java 287 int newCount = 0;
292 if ((r & RENDER_MORE_PASS) != 0) requestedSlot[newCount++] = i;
294 requestCount = newCount;
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java     [all...]
  /external/skia/samplecode/
SampleApp.cpp 726 int newCount = 0;
730 SkTSwap(factories.begin()[newCount], factories.begin()[index]);
731 newCount += 1;
734 if (newCount) {
735 factories.setCount(newCount);
    [all...]
  /frameworks/base/core/java/android/widget/
RemoteViewsAdapter.java     [all...]

Completed in 604 milliseconds

1 2 3 4 5 6 7 8 91011