Home | History | Annotate | Download | only in common

Lines Matching defs:pMemory

193  * If *pMemory!=NULL, then assume *pSize>0.
201 void **pMemory = (void **)bidiMem;
203 if(*pMemory==NULL) {
205 if(mayAllocate && (*pMemory=uprv_malloc(sizeNeeded))!=NULL) {
226 if((memory=uprv_realloc(*pMemory, sizeNeeded))!=NULL) {
227 *pMemory=memory;