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

/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsValueArray.cpp151 PRUint8* reallocRes = nsnull; local
163 reallocRes = (PRUint8*)PR_Malloc((count + growBy) * mBytesPerValue);
166 reallocRes = (PRUint8*)PR_Realloc(mValueArray, (count + growBy) * mBytesPerValue);
168 if (nsnull != reallocRes) {
169 mValueArray = reallocRes;
254 PRUint8* reallocRes = (PRUint8*)PR_Realloc(mValueArray, count * mBytesPerValue); local
255 if (nsnull != reallocRes) {
256 mValueArray = reallocRes;

Completed in 41 milliseconds