Home | History | Annotate | Download | only in src

Lines Matching refs:pMemory

22 #include "pmemory.h"
256 void *pMemory = NULL;
267 pMemory = MEM_MGR_Allocate(sizeInBytes);
270 if (NULL != pMemory)
276 unsigned int * requestedSizePtr = GUARD_PTR_FIELD(pMemory, GUARD_OFF_REQ_SIZE);
277 unsigned int * guardStartPtr = GUARD_PTR_FIELD(pMemory, GUARD_OFF_START);
278 unsigned int * guardEndPtr = GUARD_PTR_FIELD(pMemory, GUARD_OFF_END(sizeInBytes));
283 pMemory = (void *) GUARD_PTR_FIELD(pMemory, GUARD_OFF_PTR);
284 ADD_TO_ALLOC_LIST(pMemory);
290 return pMemory;