HomeSort by relevance Sort by last modified time
    Searched full:mcount (Results 1 - 25 of 244) sorted by null

1 2 3 4 5 6 7 8 910

  /system/core/libutils/
CallStack.cpp 28 mCount(0) {
37 mCount(rhs.mCount) {
38 if (mCount) {
39 memcpy(mStack, rhs.mStack, mCount * sizeof(backtrace_frame_t));
47 mCount = rhs.mCount;
48 if (mCount) {
49 memcpy(mStack, rhs.mStack, mCount * sizeof(backtrace_frame_t));
55 if (mCount != rhs.mCount
    [all...]
VectorImpl.cpp 45 : mStorage(0), mCount(0), mFlags(flags), mItemSize(itemSize)
50 : mStorage(rhs.mStorage), mCount(rhs.mCount),
60 ALOGW_IF(mCount,
63 this, (int)(mCount*mItemSize));
73 if (rhs.mCount) {
75 mCount = rhs.mCount;
79 mCount = 0;
92 _do_copy(sb->data(), mStorage, mCount);
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/
IdleHandlerTest.java 61 int mCount;
65 mCount = 0;
74 if (mCount == 1) {
78 "Idle handler called " + mCount + " times"));
84 mCount++;
95 int mCount;
99 mCount = 0;
110 if (mCount == 1) {
114 "Idle handler called " + mCount + " times"));
120 mCount++
    [all...]
MessageQueueTest.java 30 int mCount;
48 if (mCount <= mLastMessage) {
49 if (msg.what != mCount) {
51 "Expected message #" + mCount
53 } else if (mCount == mLastMessage) {
56 mCount++;
71 mCount = 0;
90 mCount = 0;
110 int mCount;
128 if (mCount <= mLastMessage)
    [all...]
  /external/clang/test/CodeGen/
mcount.c 3 // CHECK: call void @mcount()
  /packages/apps/Email/src/com/android/email/
FixedLengthInputStream.java 30 private int mCount;
39 return mLength - mCount;
44 if (mCount < mLength) {
45 mCount++;
54 if (mCount < mLength) {
55 int d = mIn.read(b, offset, Math.min(mLength - mCount, length));
59 mCount += d;
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
Input.cpp 16 Input::Input() : mCount(0), mString(0)
21 mCount(count),
24 mLength.reserve(mCount);
25 for (size_t i = 0; i < mCount; ++i)
35 while ((nRead < maxSize) && (mReadLoc.sIndex < mCount))
Input.h 23 size_t count() const { return mCount; }
40 size_t mCount;
  /frameworks/opt/vcard/java/com/android/vcard/
VCardEntryCounter.java 22 private int mCount;
25 return mCount;
42 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...]
  /external/replicaisland/src/com/replica/replicaisland/
FixedSizeArray.java 35 private int mCount;
45 mCount = 0;
55 mCount = 0;
67 assert mCount < mContents.length : "Array exhausted!";
68 if (mCount < mContents.length) {
69 mContents[mCount] = object;
71 mCount++;
93 assert index < mCount;
95 if (index < mCount) {
96 for (int x = index; x < mCount; x++)
    [all...]
  /frameworks/native/opengl/tests/testPauseResume/src/com/android/test/
TestActivity.java 27 int mCount;
32 Log.w(TAG, "****** step " + mCount + " resume");
33 mCount++;
36 Log.w(TAG, "step " + mCount + " pause");
  /packages/apps/Email/src/com/android/email/mail/transport/
StatusOutputStream.java 27 private long mCount = 0;
36 mCount++;
38 if (mCount % 1024 == 0) {
39 LogUtils.v(Logging.LOG_TAG, "# " + mCount);
  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
CompositeDrawable.java 25 protected int mCount;
35 mCount = 0;
44 mCount = count;
48 return mCount;
52 if (i >= mCount) {
76 switch (mCount) {
112 for (int i = 0; i < mCount; i++) {
119 for (int i = 0; i < mCount; i++) {
126 for (int i = 0; i < mCount; i++) {
134 for (int i = 0; i < mCount; i++)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
UiHandler.java 42 private AtomicInteger mCount = new AtomicInteger(0);
46 mCount.incrementAndGet();
50 mCount.decrementAndGet();
61 mCount.incrementAndGet();
65 mCount.decrementAndGet();
81 int count = mCount.getAndSet(0);
  /frameworks/base/libs/hwui/
SkiaShader.cpp 189 mBounds(bounds), mColors(colors), mPositions(positions), mCount(count) {
214 copy->mColors = new uint32_t[mCount];
215 memcpy(copy->mColors, mColors, sizeof(uint32_t) * mCount);
216 copy->mPositions = new float[mCount];
217 memcpy(copy->mPositions, mPositions, sizeof(float) * mCount);
218 copy->mCount = mCount;
236 Texture* texture = mCaches->gradientCache.get(mColors, mPositions, mCount);
279 copy->mColors = new uint32_t[mCount];
280 memcpy(copy->mColors, mColors, sizeof(uint32_t) * mCount);
    [all...]
  /system/core/libpixelflinger/codeflinger/tinyutils/
VectorImpl.cpp 47 : mStorage(0), mCount(0), mFlags(flags), mItemSize(itemSize)
52 : mStorage(rhs.mStorage), mCount(rhs.mCount),
62 ALOG_ASSERT(!mCount,
66 this, (int)(mCount*mItemSize));
76 if (rhs.mCount) {
78 mCount = rhs.mCount;
82 mCount = 0;
95 _do_copy(sb->data(), mStorage, mCount);
    [all...]
  /external/icu4c/layout/
MarkArrays.cpp 22 le_uint16 mCount = SWAPW(markCount);
24 if (coverageIndex < mCount) {
  /hardware/qcom/display/msm8960/libcopybit/
copybit_priv.h 34 mCount = 1;
44 if (me->mCount) {
49 me->mCount--;
55 mutable int mCount;
  /hardware/qcom/display/msm8974/libcopybit/
copybit_priv.h 34 mCount = 1;
44 if (me->mCount) {
49 me->mCount--;
55 mutable int mCount;
  /hardware/qcom/display/msm8x26/libcopybit/
copybit_priv.h 34 mCount = 1;
44 if (me->mCount) {
49 me->mCount--;
55 mutable int mCount;
  /cts/tests/tests/animation/src/android/animation/cts/
LayoutAnimationActivity.java 27 private int mCount = 1;
39 newButton.setText("Button:" + LayoutAnimationActivity.this.mCount);
42 LayoutAnimationActivity.this.mCount++;
  /development/samples/ApiDemos/src/com/example/android/apis/nfc/
TechFilter.java 29 private int mCount = 0;
41 mText.setText("Discovered tag " + ++mCount + " with intent: " + intent);
49 mText.setText("Discovered tag " + ++mCount + " with intent: " + intent);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
CountingOutputStream.java 27 private long mCount;
33 return mCount;
38 mCount++;
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
CountedDataInputStream.java 29 private int mCount = 0;
40 return mCount;
46 mCount += (r >= 0) ? r : 0;
53 mCount += (r >= 0) ? r : 0;
60 mCount += (r >= 0) ? 1 : 0;
67 mCount += skip;
76 long cur = mCount;

Completed in 606 milliseconds

1 2 3 4 5 6 7 8 910