Lines Matching defs:pool
23 * \brief Memory pool array class.
40 deMemPool* pool; /*!< Pool from which all memory is allocated from. */
52 dePoolArray* dePoolArray_create (deMemPool* pool, int elementSize);
61 * \brief Declare a template pool array class.
65 * This macro declares a pool array with all the necessary functions for
66 * operating with it. All allocated memory is taken from the memory pool
80 * Array* Array_create (deMemPool* pool);
96 deMemPool* pool; \
106 DE_INLINE TYPENAME* TYPENAME##_create (deMemPool* pool); \
118 DE_INLINE TYPENAME* TYPENAME##_create (deMemPool* pool) \
120 return (TYPENAME*)dePoolArray_create(pool, sizeof(VALUETYPE)); \