Home
last modified time | relevance | path

Searched refs:retPtr (Results 1 – 8 of 8) sorted by relevance

/external/icu/icu4c/source/test/cintltst/
Dhpmufn.c86 char *retPtr = (char *)malloc(size+sizeof(ctest_AlignedMemory)); in myMemAlloc() local
87 if (retPtr != NULL) { in myMemAlloc()
88 retPtr += sizeof(ctest_AlignedMemory); in myMemAlloc()
91 return retPtr; in myMemAlloc()
106 char *retPtr; in myMemRealloc() local
111 retPtr = realloc(p, size+sizeof(ctest_AlignedMemory)); in myMemRealloc()
112 if (retPtr != NULL) { in myMemRealloc()
115 return retPtr; in myMemRealloc()
/external/icu/icu4c/source/tools/icuinfo/
Dtestplug.c163 void *retPtr = (void *)malloc(size); in myMemAlloc() local
165 fprintf(stderr, "MEM: malloc(%d) = %p\n", (int32_t)size, retPtr); in myMemAlloc()
166 return retPtr; in myMemAlloc()
177 void *retPtr; in myMemRealloc() local
182 retPtr = NULL; in myMemRealloc()
184 retPtr = realloc(mem, size); in myMemRealloc()
186 fprintf(stderr, "MEM: realloc(%p, %d) = %p\n", mem, (int32_t)size, retPtr); in myMemRealloc()
187 return retPtr; in myMemRealloc()
/external/icu/icu4c/source/test/intltest/
Ddcfmtest.cpp473 UChar *retPtr = NULL; in ReadAndConvertFile() local
480 return retPtr; in ReadAndConvertFile()
537 retPtr = new UChar[ulen+1]; in ReadAndConvertFile()
538 u_strFromUTF8(retPtr, ulen+1, NULL, fileBufNoBOM, amtReadNoBOM, &status); in ReadAndConvertFile()
546 delete retPtr; in ReadAndConvertFile()
547 retPtr = NULL; in ReadAndConvertFile()
549 return retPtr; in ReadAndConvertFile()
Drbbitst.cpp1551 UChar *retPtr = NULL; in ReadAndConvertFile() local
1558 return retPtr; in ReadAndConvertFile()
1624 retPtr = new UChar[ulen+1]; in ReadAndConvertFile()
1626 retPtr, // dest, in ReadAndConvertFile()
1639 delete []retPtr; in ReadAndConvertFile()
1640 retPtr = 0; in ReadAndConvertFile()
1643 return retPtr; in ReadAndConvertFile()
Dregextst.cpp3896 UChar *retPtr = NULL; in ReadAndConvertFile() local
3903 return retPtr; in ReadAndConvertFile()
3973 retPtr = new UChar[ulen+1]; in ReadAndConvertFile()
3975 retPtr, // dest, in ReadAndConvertFile()
3988 delete []retPtr; in ReadAndConvertFile()
3989 retPtr = 0; in ReadAndConvertFile()
3992 return retPtr; in ReadAndConvertFile()
/external/icu/icu4c/source/common/
Drbbi.cpp1501 const uint8_t *retPtr = NULL; in getBinaryRules() local
1505 retPtr = (const uint8_t *)fData->fHeader; in getBinaryRules()
1508 return retPtr; in getBinaryRules()
/external/icu/icu4c/source/i18n/
Dalphaindex.cpp1215 const void *retPtr = NULL; in getRecordData() local
1220 retPtr = item->data_; in getRecordData()
1222 return retPtr; in getRecordData()
/external/clang/test/Analysis/
Dmalloc.c1393 int *retPtr();
1397 int *yBefore = retPtr(); in cmpHeapAllocationToUnknown()