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

1 23 4 5 6 7

  /frameworks/rs/driver/
rsdVertexArray.h 59 uint32_t mCount;
rsdVertexArray.cpp 33 mCount = numAttribs;
99 for (uint32_t ct=0; ct < mCount; ct++) {
  /development/samples/ApiDemos/src/com/example/android/apis/nfc/
ForegroundDispatch.java 42 private int mCount = 0;
85 mText.setText("Discovered tag " + ++mCount + " with intent: " + intent);
  /frameworks/wilhelm/src/itf/
IMetadataTraversal.c 55 SLuint32 count = thiz->mCount;
126 thiz->mCount = 0;
  /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/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++;
BinderTest.java 138 private int mCount;
166 mCount++;
169 if (mCount == 1) {
176 if (mCount == 2) {
  /frameworks/native/services/sensorservice/
Fusion.cpp 181 mCount[0] = 0;
182 mCount[1] = 0;
183 mCount[2] = 0;
235 mCount[0]++;
239 mCount[1]++;
244 mCount[2]++;
245 if (mCount[2] == 64) {
254 mData[0] *= 1.0f/mCount[0];
255 mData[1] *= 1.0f/mCount[1];
256 mData[2] *= 1.0f/mCount[2]
    [all...]
Fusion.h 73 size_t mCount[3];
  /frameworks/base/core/java/android/os/
PowerManager.java 629 private int mCount;
710 if (!mRefCounted || mCount++ == 0) {
753 if (!mRefCounted || --mCount == 0) {
763 if (mCount < 0) {
825 + " held=" + mHeld + ", refCount=" + mCount + "}";
  /frameworks/base/graphics/java/android/renderscript/
Element.java     [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Element.java 923 int mCount;
937 mCount = 0;
974 if(mCount == mElements.length) {
975 Element[] e = new Element[mCount + 8];
976 String[] s = new String[mCount + 8];
977 int[] as = new int[mCount + 8];
978 System.arraycopy(mElements, 0, e, 0, mCount);
979 System.arraycopy(mElementNames, 0, s, 0, mCount);
980 System.arraycopy(mArraySizes, 0, as, 0, mCount);
985 mElements[mCount] = element
    [all...]
  /system/core/include/utils/
VectorImpl.h 35 * For performance reasons, we expose mStorage and mCount
63 inline size_t size() const { return mCount; }
64 inline bool isEmpty() const { return mCount == 0; }
123 size_t mCount; // number of items
  /system/core/libpixelflinger/codeflinger/
CodeCache.cpp 104 : mCount(1), mSize(0)
120 android_atomic_inc(&mCount);
125 if (android_atomic_dec(&mCount) == 1) {
  /system/core/libpixelflinger/codeflinger/tinyutils/
VectorImpl.h 35 * For performance reasons, we expose mStorage and mCount
64 inline size_t size() const { return mCount; }
65 inline bool isEmpty() const { return mCount == 0; }
126 size_t mCount; // number of items
  /frameworks/ex/common/java/com/android/common/widget/
GroupingListAdapter.java 65 private int mCount;
141 mCount = -1;
236 if (mCount != -1) {
237 return mCount;
259 mCount = count + mCursor.getCount() - cursorPosition;
260 return mCount;
  /frameworks/rs/cpu_ref/
rsCpuCore.h 94 return mWorkers.mCount + 1;
150 uint32_t mCount;
  /packages/apps/Mms/src/com/android/mms/util/
BackgroundLoaderManager.java 148 private final AtomicInteger mCount = new AtomicInteger(1);
156 Thread t = new Thread(r, mTag + "-" + mCount.getAndIncrement());
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/database/
SQLiteCursor.java 25 private int mCount = -1;
48 if (mCount == -1)
49 mCount = nativeGetCount(mNativeSQLiteCursor);
51 return mCount;
  /frameworks/opt/mailcommon/tests/src/com/android/mailcommon/
MergedAdapterTest.java 39 private int mCount;
43 mCount = count;
48 return mCount;
52 mCount = count;
  /hardware/libhardware/modules/camera/
Metadata.h 59 const int mCount;
  /frameworks/base/libs/hwui/
DisplayListOp.h 298 : mCount(count) {}
303 this, saveCount + mCount);
304 deferStruct.mRenderer.restoreToCount(saveCount + mCount);
308 renderer.restoreToCount(saveCount + mCount);
312 OP_LOG("Restore to count %d", mCount);
320 mCount = count;
324 int mCount;
    [all...]
  /frameworks/base/obex/javax/obex/
HeaderSet.java 180 private Long mCount; // 4 byte unsigned integer
257 mCount = null;
266 mCount = (Long)headerValue;
448 return mCount;
508 if (mCount != null) {
  /packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java 136 private int mCount; // Cache mImageList.getCount();
137 private int mRows; // Cache (mCount + mColumns - 1) / mColumns
182 mCount = mAllImages.getCount();
222 mRows = (mCount + mColumns - 1) / mColumns;
316 if (index >= 0 && index < mCount) {
363 if (index >= 0 && index < mCount) {
405 mCurrentSelection = Math.min(index, mCount - 1);
585 if (sel != mCount - 1 && (sel % mColumns < mColumns - 1)) {
600 sel = Math.min(mCount - 1, sel + mColumns);
625 topPos = Math.min(mCount - 1, topPos)
    [all...]
  /hardware/libhardware/tests/camera2/
camera2_utils.cpp 37 mCount(0),
72 mCount++;
92 return mCount;
98 if (mCount == 0) {
118 mCount = mStreamSlotCount;
120 ALOGV("MetadataQueue: deque (%d buffers)", mCount);
132 mCount--;
140 while (mCount == 0) {

Completed in 1280 milliseconds

1 23 4 5 6 7