Home
last modified time | relevance | path

Searched defs:PoolArrayElement (Results 1 – 1 of 1) sorted by relevance

/external/deqp/framework/delibs/decpp/
DdePoolArray.hpp199 struct PoolArrayElement struct
201 …ic void constructDefault (void* ptr) { new (ptr) T(); } //!< Called for non-initialized memory. in constructDefault()
202 …& val) { new (ptr) T(val); } //!< Called for non-initialized memory when initial value is provided. in constructCopy()
203 static void destruct (T* ptr) { ptr->~T(); } //!< Called when element is destructed. in destruct()