Home | History | Annotate | Download | only in common

Lines Matching refs:pMemory

188  * If *pMemory!=NULL, then assume *pSize>0.
196 void **pMemory = (void **)bidiMem;
198 if(*pMemory==NULL) {
200 if(mayAllocate && (*pMemory=uprv_malloc(sizeNeeded))!=NULL) {
221 if((memory=uprv_realloc(*pMemory, sizeNeeded))!=NULL) {
222 *pMemory=memory;