HomeSort by relevance Sort by last modified time
    Searched refs:curCount (Results 1 - 2 of 2) sorted by null

  /frameworks/native/libs/utils/
RefBase.cpp 434 int32_t curCount = impl->mStrong;
436 ALOG_ASSERT(curCount >= 0,
439 while (curCount > 0 && curCount != INITIAL_STRONG_VALUE) {
442 if (android_atomic_cmpxchg(curCount, curCount+1, &impl->mStrong) == 0) {
447 curCount = impl->mStrong;
450 if (curCount <= 0 || curCount == INITIAL_STRONG_VALUE) {
457 if (curCount <= 0)
    [all...]
  /frameworks/base/core/jni/
android_util_Process.cpp 609 jsize curCount = 0;
612 curCount = env->GetArrayLength(lastArray);
630 if (curPos >= curCount) {
631 jsize newCount = (curCount == 0) ? 10 : (curCount*2);
640 memcpy(newData, curData, sizeof(jint)*curCount);
644 curCount = newCount;
658 while (curPos < curCount) {

Completed in 681 milliseconds