Home | History | Annotate | Download | only in depool

Lines Matching refs:DE_INLINE

106 DE_INLINE TYPENAME*	TYPENAME##_create			(deMemPool* pool);												\
107 DE_INLINE int TYPENAME##_getNumElements (const TYPENAME* arr) DE_UNUSED_FUNCTION; \
108 DE_INLINE deBool TYPENAME##_reserve (TYPENAME* arr, int capacity) DE_UNUSED_FUNCTION; \
109 DE_INLINE deBool TYPENAME##_setSize (TYPENAME* arr, int size) DE_UNUSED_FUNCTION; \
110 DE_INLINE void TYPENAME##_reset (TYPENAME* arr) DE_UNUSED_FUNCTION; \
111 DE_INLINE VALUETYPE TYPENAME##_get (const TYPENAME* arr, int ndx) DE_UNUSED_FUNCTION; \
112 DE_INLINE void TYPENAME##_set (TYPENAME* arr, int ndx, VALUETYPE elem) DE_UNUSED_FUNCTION; \
113 DE_INLINE deBool TYPENAME##_pushBack (TYPENAME* arr, VALUETYPE elem) DE_UNUSED_FUNCTION; \
114 DE_INLINE VALUETYPE TYPENAME##_popBack (TYPENAME* arr) DE_UNUSED_FUNCTION; \
115 DE_INLINE deBool TYPENAME##_copy (TYPENAME* dst, const TYPENAME* src) DE_UNUSED_FUNCTION; \
116 DE_INLINE void TYPENAME##_swap (TYPENAME* arr, int aNdx, int bNdx) DE_UNUSED_FUNCTION; \
118 DE_INLINE TYPENAME* TYPENAME##_create (deMemPool* pool) \
123 DE_INLINE int TYPENAME##_getNumElements (const TYPENAME* arr) \
128 DE_INLINE deBool TYPENAME##_reserve (TYPENAME* arr, int capacity) \
135 DE_INLINE deBool TYPENAME##_setSize (TYPENAME* arr, int size) \
144 DE_INLINE void TYPENAME##_reset (TYPENAME* arr) \
149 DE_INLINE VALUETYPE TYPENAME##_get (const TYPENAME* arr, int ndx) \
159 DE_INLINE void TYPENAME##_set (TYPENAME* arr, int ndx, VALUETYPE elem) \
169 DE_INLINE deBool TYPENAME##_pushBack (TYPENAME* arr, VALUETYPE elem) \
178 DE_INLINE VALUETYPE TYPENAME##_popBack (TYPENAME* arr) \
189 DE_INLINE deBool TYPENAME##_copy (TYPENAME* dst, const TYPENAME* src) \
203 DE_INLINE void TYPENAME##_swap (TYPENAME* arr, int aNdx, int bNdx) \
241 DE_INLINE void TYPENAME##_##SORTNAME##ShiftDown (TYPENAME* arr, int startNdx, int endNdx) \
262 DE_INLINE void TYPENAME##_##SORTNAME##Heapify (TYPENAME* arr) \
273 DE_INLINE void TYPENAME##_##SORTNAME (TYPENAME* arr) \