Searched defs:otherCount (Results 1 - 1 of 1) sorted by relevance

/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsVoidArray.cpp312 PRInt32 otherCount = other.Count(); local
314 if (otherCount)
316 if (otherCount > maxCount)
319 if (!GrowArrayBy(otherCount-maxCount))
322 memcpy(mImpl->mArray, other.mImpl->mArray, otherCount * sizeof(mImpl->mArray[0]));
323 mImpl->mCount = otherCount;
328 memcpy(mImpl->mArray, other.mImpl->mArray, otherCount * sizeof(mImpl->mArray[0]));
329 mImpl->mCount = otherCount;
331 if ((otherCount*2) < maxCount && maxCount > 100)
428 PRInt32 otherCount local
[all...]

Completed in 2643 milliseconds