#ifdef __APPLE__
nb = PL_ARENA_ALIGN(pool, nb); /* force alignment, cast is useless/causes warning. */
#else
nb = (PRUword)PL_ARENA_ALIGN(pool, nb); /* force alignment */
#endif
#ifdef __APPLE__
nb = PL_ARENA_ALIGN(pool, nb); /* force alignment, cast is useless/causes warning. */
#else
nb = (PRUword)PL_ARENA_ALIGN(pool, nb); /* force alignment */
#endif
PLArena *lastArena;
PRUint32 origAlignSize; // bytes currently reserved for caller
PRUint32 newSize; // bytes actually mallocd here
PLArena *lastArena;
PRUint32 origAlignSize; // bytes currently reserved for caller
PRUint32 newSize; // bytes actually mallocd here
newSize = PR_MAX(origAlignSize+incr, 2*origAlignSize);
newSize = PL_ARENA_ALIGN(pool, newSize);
newSize = PR_MAX(origAlignSize+incr, 2*origAlignSize);
newSize = PL_ARENA_ALIGN(pool, newSize);