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

/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsAutoBuffer.h89 PRBool EnsureElemCapacity(PRInt32 inElemCapacity) argument
91 if (inElemCapacity <= mCurElemCapacity)
97 newBuffer = (T*)nsMemory::Realloc((void *)mBufferPtr, inElemCapacity * sizeof(T));
99 newBuffer = (T*)nsMemory::Alloc(inElemCapacity * sizeof(T));
108 mCurElemCapacity = inElemCapacity;
112 PRBool AddElemCapacity(PRInt32 inElemCapacity) argument
114 return EnsureElemCapacity(mCurElemCapacity + inElemCapacity);

Completed in 465 milliseconds