HomeSort by relevance Sort by last modified time
    Searched defs:mCount (Results 51 - 75 of 212) sorted by null

1 23 4 5 6 7 8 9

  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/cpp/util/
RefBase.h 167 inline LightRefBase() : mCount(0) { }
169 __sync_fetch_and_add(&mCount, 1);
172 if (__sync_fetch_and_sub(&mCount, 1) == 1) {
178 return mCount;
192 mutable volatile int32_t mCount;
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/server/
RefBase.h 166 inline LightRefBase() : mCount(0) { }
168 __sync_fetch_and_add(&mCount, 1);
171 if (__sync_fetch_and_sub(&mCount, 1) == 1) {
177 return mCount;
191 mutable volatile int32_t mCount;
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/cpp/util/
RefBase.h 167 inline LightRefBase() : mCount(0) { }
169 __sync_fetch_and_add(&mCount, 1);
172 if (__sync_fetch_and_sub(&mCount, 1) == 1) {
178 return mCount;
192 mutable volatile int32_t mCount;
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/server/
RefBase.h 166 inline LightRefBase() : mCount(0) { }
168 __sync_fetch_and_add(&mCount, 1);
171 if (__sync_fetch_and_sub(&mCount, 1) == 1) {
177 return mCount;
191 mutable volatile int32_t mCount;
  /sdk/emulator/opengl/shared/emugl/common/
id_to_object_map.h 46 inline size_t size() const { return mCount; }
69 size_t mCount;
151 mCount = 0;
lazy_instance_unittest.cpp 92 mMutex(), mStaticCounter(staticCounter), mCount(0) {}
100 size_t mCount;
109 if (state->mCount < MultiState::kMaxThreads) {
110 state->mValues[state->mCount++] = state->mStaticCounter->ptr();
  /system/core/libpixelflinger/codeflinger/
CodeCache.h 72 mutable int32_t mCount;
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertFullScreen.java 90 private final AtomicInteger mCount = new AtomicInteger();
118 mCount.incrementAndGet();
132 int msgWhat = mCount.incrementAndGet();
140 if (msg.what == mCount.get()) {
179 private final AtomicInteger mCount = new AtomicInteger();
187 int msgWhat = mCount.incrementAndGet();
195 removeMessages(mCount.get());
214 if (msgWhat == mCount.get()) {
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/
FrequencyVerification.java 48 private int mCount = 0;
118 if (mCount < 2) {
124 ((double) (mMaxTimestamp - mMinTimestamp)) / (mCount - 1), TimeUnit.NANOSECONDS);
159 if (mCount == 0) {
170 mCount++;
  /development/samples/StackWidget/src/com/example/android/stackwidget/
StackWidgetService.java 37 private static final int mCount = 10;
52 for (int i = 0; i < mCount; i++) {
73 return mCount;
  /frameworks/base/core/java/android/database/
BulkCursorToCursorAdaptor.java 35 private int mCount;
46 mCount = d.count;
71 return mCount;
136 mCount = mBulkCursor.requery(getObserver());
137 if (mCount != -1) {
142 // observer from the far side so that observers can see a correct value for mCount
  /frameworks/base/core/java/android/net/http/
IdleCache.java 48 private int mCount = 0;
72 HttpLog.v("IdleCache size " + mCount + " host " + host);
75 if (mCount < IDLE_CACHE_MAX) {
83 mCount++;
100 if (mCount > 0) {
108 mCount--;
118 for (int i = 0; mCount > 0 && i < IDLE_CACHE_MAX; i++) {
124 mCount--;
130 if (mCount > 0) {
138 mCount--
    [all...]
  /frameworks/base/core/java/android/os/
UpdateLock.java 42 int mCount = 0;
113 if (!mRefCounted || mCount++ == 0) {
137 if (!mRefCounted || --mCount == 0) {
147 if (mCount < 0) {
  /frameworks/base/core/java/android/view/inputmethod/
SparseRectFArray.java 149 if (mCount == 0) {
152 if (mKeys[mCount - 1] >= key) {
170 final int requiredIndexArraySize = mCount + 1;
173 System.arraycopy(mKeys, 0, newArray, 0, mCount);
176 final int requiredCoordinatesArraySize = (mCount + 1) * 4;
179 System.arraycopy(mCoordinates, 0, newArray, 0, mCount * 4);
185 System.arraycopy(mFlagsArray, 0, newArray, 0, mCount);
207 final int baseCoordinatesIndex = mCount * 4;
212 final int flagsIndex = mCount;
214 mKeys[mCount] = key
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
FilteringCursorWrapper.java 36 private int mCount;
54 while (cursor.moveToNext() && mCount < count) {
64 mPosition[mCount++] = cursor.getPosition();
68 Log.d(TAG, "Before filtering " + cursor.getCount() + ", after " + mCount);
94 return mCount;
RootCursorWrapper.java 31 private final int mCount;
48 mCount = maxCount;
50 mCount = count;
89 return mCount;
  /packages/apps/Contacts/src/com/android/contacts/widget/
CompositeListAdapter.java 44 private int mCount = 0;
98 mCount += count;
124 mCount = 0;
131 mCount += count;
141 return mCount;
  /packages/apps/Mms/src/com/android/mms/util/
BackgroundLoaderManager.java 150 private final AtomicInteger mCount = new AtomicInteger(1);
158 Thread t = new Thread(r, mTag + "-" + mCount.getAndIncrement());
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ToastBarOperation.java 34 private final int mCount;
51 mCount = count;
67 mCount = in.readInt();
80 sb.append(" mCount=");
81 sb.append(mCount);
94 dest.writeInt(mCount);
151 String.format(context.getResources().getQuantityString(resId, mCount), mCount);
  /system/core/include/utils/
RefBase.h 177 inline LightRefBase() : mCount(0) { }
179 android_atomic_inc(&mCount);
182 if (android_atomic_dec(&mCount) == 1) {
188 return mCount;
203 mutable volatile int32_t mCount;
  /system/core/logd/
LogTimes.h 42 unsigned long mCount;
  /art/test/050-sync-test/src/
Main.java 92 static int mCount = 0;
113 System.out.println(mCount);
118 int count = mCount;
129 mCount = count;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleScannerPowerLevelActivity.java 46 private Map<Integer, Integer> mCount;
81 mCount = null;
165 if (mCount == null) {
166 mCount = new HashMap<Integer, Integer>();
168 mCount.put(i, 0);
172 Integer t = mCount.get(powerLevelBit) + 1;
173 mCount.put(powerLevelBit, t);
  /cts/tests/tests/os/src/android/os/cts/
MessageQueueTest.java 234 int mCount;
249 if (mCount <= mLastMessage) {
250 if (msg.what != mCount) {
251 failure(new RuntimeException("Expected message #" + mCount + ", received #"
253 } else if (mCount == mLastMessage) {
257 mCount++;
  /cts/tests/tests/widget/src/android/widget/cts/
BaseAdapterTest.java 103 private int mCount = 0;
106 mCount = count;
110 return mCount;

Completed in 535 milliseconds

1 23 4 5 6 7 8 9