Home
last modified time | relevance | path

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

/external/icu4c/tools/icuinfo/
Dtestplug.c157 void *retPtr = (void *)malloc(size); in myMemAlloc() local
159 fprintf(stderr, "MEM: malloc(%d) = %p\n", (int32_t)size, retPtr); in myMemAlloc()
160 return retPtr; in myMemAlloc()
171 void *retPtr; in myMemRealloc() local
176 retPtr = NULL; in myMemRealloc()
178 retPtr = realloc(mem, size); in myMemRealloc()
180 fprintf(stderr, "MEM: realloc(%p, %d) = %p\n", mem, (int32_t)size, retPtr); in myMemRealloc()
181 return retPtr; in myMemRealloc()
/external/expat/xmlwf/
Dxmlfile.c57 int *retPtr; member
81 int *retPtr = ((PROCESS_ARGS *)args)->retPtr; in processFile() local
84 *retPtr = 0; in processFile()
87 *retPtr = 1; in processFile()
142 args.retPtr = &result; in externalEntityRefFilemap()
236 args.retPtr = &result; in XML_ProcessFile()
/external/icu4c/test/cintltst/
Dhpmufn.c89 char *retPtr = (char *)malloc(size+sizeof(ctest_AlignedMemory)); in myMemAlloc() local
90 if (retPtr != NULL) { in myMemAlloc()
91 retPtr += sizeof(ctest_AlignedMemory); in myMemAlloc()
94 return retPtr; in myMemAlloc()
109 char *retPtr; in myMemRealloc() local
114 retPtr = realloc(p, size+sizeof(ctest_AlignedMemory)); in myMemRealloc()
115 if (retPtr != NULL) { in myMemRealloc()
118 return retPtr; in myMemRealloc()
/external/icu4c/test/intltest/
Ddcfmtest.cpp438 UChar *retPtr = NULL; in ReadAndConvertFile() local
445 return retPtr; in ReadAndConvertFile()
502 retPtr = new UChar[ulen+1]; in ReadAndConvertFile()
503 u_strFromUTF8(retPtr, ulen+1, NULL, fileBufNoBOM, amtReadNoBOM, &status); in ReadAndConvertFile()
511 delete retPtr; in ReadAndConvertFile()
512 retPtr = NULL; in ReadAndConvertFile()
514 return retPtr; in ReadAndConvertFile()
Drbbitst.cpp2061 UChar *retPtr = NULL; in ReadAndConvertFile() local
2068 return retPtr; in ReadAndConvertFile()
2134 retPtr = new UChar[ulen+1]; in ReadAndConvertFile()
2136 retPtr, // dest, in ReadAndConvertFile()
2149 delete retPtr; in ReadAndConvertFile()
2150 retPtr = 0; in ReadAndConvertFile()
2153 return retPtr; in ReadAndConvertFile()
Dregextst.cpp3644 UChar *retPtr = NULL; in ReadAndConvertFile() local
3651 return retPtr; in ReadAndConvertFile()
3721 retPtr = new UChar[ulen+1]; in ReadAndConvertFile()
3723 retPtr, // dest, in ReadAndConvertFile()
3736 delete retPtr; in ReadAndConvertFile()
3737 retPtr = 0; in ReadAndConvertFile()
3740 return retPtr; in ReadAndConvertFile()
/external/icu4c/common/
Drbbi.cpp1436 const uint8_t *retPtr = NULL; in getBinaryRules() local
1440 retPtr = (const uint8_t *)fData->fHeader; in getBinaryRules()
1443 return retPtr; in getBinaryRules()