Searched refs:a_cElements (Results 1 - 1 of 1) sorted by relevance

/vbox/include/iprt/cpp/
H A Dmem.h165 * @param a_cElements The number of elements (of the data type) to allocate.
169 RTCMemAutoPtr(size_t a_cElements, bool a_fZeroed = false) argument
170 : RTCAutoRes<T *, a_fnDestruct, RTCMemAutoNil<T> >((T *)a_fnAllocator(NULL, a_cElements * sizeof(T), RTMEM_TAG))
173 memset(this->get(), '\0', a_cElements * sizeof(T));
224 * @param a_cElements The number of elements (of the data type) to allocate.
229 bool alloc(size_t a_cElements = 1, bool a_fZeroed = false)
232 T *pNewMem = (T *)a_fnAllocator(NULL, a_cElements * sizeof(T), RTMEM_TAG);
234 memset(pNewMem, '\0', a_cElements * sizeof(T));
251 * @param a_cElements The new number of elements (of the data type) to
257 bool realloc(size_t a_cElements
[all...]

Completed in 41 milliseconds