зеркало из https://github.com/mozilla/gecko-dev.git
test growing the array by a minimum amount (taken from nsVoidArray).
This commit is contained in:
Родитель
1b77c59691
Коммит
7ca9551428
|
@ -84,10 +84,15 @@ nsTArray_base::EnsureCapacity(size_type capacity, size_type elemSize) {
|
|||
|
||||
// Use doubling algorithm when forced to increase available capacity.
|
||||
NS_ASSERTION(mHdr->mCapacity > 0, "should not have buffer of zero size");
|
||||
size_type temp = mHdr->mCapacity;
|
||||
while (temp < capacity)
|
||||
temp <<= 1;
|
||||
capacity = temp;
|
||||
if (capacity < 8) {
|
||||
// grow to 8 elements
|
||||
capacity = 8;
|
||||
} else {
|
||||
size_type temp = mHdr->mCapacity;
|
||||
while (temp < capacity)
|
||||
temp <<= 1;
|
||||
capacity = temp;
|
||||
}
|
||||
|
||||
Header *header;
|
||||
if (UsesAutoArrayBuffer()) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче