Lines Matching refs:child
91 int numChildren; /*!< Number of child pools. */
92 deMemPool* firstChild; /*!< Pointer to first child pool in linked list. */
295 * Frees all the memory allocated from the pool. Also destroyed any child
376 * \return The number of (immediate) child pools a memory pool has.
386 * \param recurse Is operation recursive to child pools?
387 * \return The number of bytes allocated by the pool (including child pools
400 deMemPool* child;
401 for (child = pool->firstChild; child; child = child->nextPool)
402 numAllocatedBytes += deMemPool_getNumAllocatedBytes(child, DE_TRUE);
418 deMemPool* child;
419 for (child = pool->firstChild; child; child = child->nextPool)
420 numCapacityBytes += deMemPool_getCapacity(child, DE_TRUE);