Home
last modified time | relevance | path

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

/external/icu/icu4c/source/test/cintltst/
Dhpmufn.c90 char *retPtr = (char *)malloc(size+sizeof(ctest_AlignedMemory)); in myMemAlloc() local
91 if (retPtr != NULL) { in myMemAlloc()
92 retPtr += sizeof(ctest_AlignedMemory); in myMemAlloc()
95 return retPtr; in myMemAlloc()
112 char *retPtr; in myMemRealloc() local
117 retPtr = realloc(p, size+sizeof(ctest_AlignedMemory)); in myMemRealloc()
118 if (retPtr != NULL) { in myMemRealloc()
121 return retPtr; in myMemRealloc()
/external/cronet/third_party/icu/source/test/cintltst/
Dhpmufn.c90 char *retPtr = (char *)malloc(size+sizeof(ctest_AlignedMemory)); in myMemAlloc() local
91 if (retPtr != NULL) { in myMemAlloc()
92 retPtr += sizeof(ctest_AlignedMemory); in myMemAlloc()
95 return retPtr; in myMemAlloc()
112 char *retPtr; in myMemRealloc() local
117 retPtr = realloc(p, size+sizeof(ctest_AlignedMemory)); in myMemRealloc()
118 if (retPtr != NULL) { in myMemRealloc()
121 return retPtr; in myMemRealloc()
/external/cronet/third_party/icu/source/tools/icuinfo/
Dtestplug.c164 void *retPtr = (void *)malloc(size); in myMemAlloc() local
166 fprintf(stderr, "MEM: malloc(%d) = %p\n", (int32_t)size, retPtr); in myMemAlloc()
167 return retPtr; in myMemAlloc()
178 void *retPtr; in myMemRealloc() local
183 retPtr = NULL; in myMemRealloc()
185 retPtr = realloc(mem, size); in myMemRealloc()
187 fprintf(stderr, "MEM: realloc(%p, %d) = %p\n", mem, (int32_t)size, retPtr); in myMemRealloc()
188 return retPtr; in myMemRealloc()
/external/icu/icu4c/source/tools/icuinfo/
Dtestplug.c164 void *retPtr = (void *)malloc(size); in myMemAlloc() local
166 fprintf(stderr, "MEM: malloc(%d) = %p\n", (int32_t)size, retPtr); in myMemAlloc()
167 return retPtr; in myMemAlloc()
178 void *retPtr; in myMemRealloc() local
183 retPtr = NULL; in myMemRealloc()
185 retPtr = realloc(mem, size); in myMemRealloc()
187 fprintf(stderr, "MEM: realloc(%p, %d) = %p\n", mem, (int32_t)size, retPtr); in myMemRealloc()
188 return retPtr; in myMemRealloc()
/external/cronet/third_party/icu/source/common/
Dumutex.cpp81 std::mutex *retPtr = fMutex.load(std::memory_order_acquire); in getMutex() local
82 if (retPtr == nullptr) { in getMutex()
85 retPtr = fMutex.load(std::memory_order_acquire); in getMutex()
86 if (retPtr == nullptr) { in getMutex()
88 retPtr = fMutex; in getMutex()
93 U_ASSERT(retPtr != nullptr); in getMutex()
94 return retPtr; in getMutex()
Drbbi.cpp1120 const uint8_t *retPtr = NULL; in getBinaryRules() local
1124 retPtr = (const uint8_t *)fData->fHeader; in getBinaryRules()
1127 return retPtr; in getBinaryRules()
/external/icu/icu4c/source/common/
Dumutex.cpp81 std::mutex *retPtr = fMutex.load(std::memory_order_acquire); in getMutex() local
82 if (retPtr == nullptr) { in getMutex()
85 retPtr = fMutex.load(std::memory_order_acquire); in getMutex()
86 if (retPtr == nullptr) { in getMutex()
88 retPtr = fMutex; in getMutex()
93 U_ASSERT(retPtr != nullptr); in getMutex()
94 return retPtr; in getMutex()
Drbbi.cpp1120 const uint8_t *retPtr = NULL; in getBinaryRules() local
1124 retPtr = (const uint8_t *)fData->fHeader; in getBinaryRules()
1127 return retPtr; in getBinaryRules()
/external/expat/expat/xmlwf/
Dxmlfile.c82 int *retPtr; member
106 int *retPtr = ((PROCESS_ARGS *)args)->retPtr; in processFile() local
109 *retPtr = 0; in processFile()
111 *retPtr = 1; in processFile()
162 args.retPtr = &result; in externalEntityRefFilemap()
262 args.retPtr = &result; in XML_ProcessFile()
/external/OpenCL-CTS/test_conformance/basic/
Dtest_preprocessors.cpp287 const char *retPtr = strchr( preprocessor_test, '\n' ); in test_kernel_preprocessor_macros() local
289 for( ; ( retPtr < linePtr ) && ( retPtr != NULL ); retPtr = strchr( retPtr + 1, '\n' ) ) in test_kernel_preprocessor_macros()
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_swtnl_backend.c133 void * retPtr = NULL; in svga_vbuf_render_map_vertices() local
148 retPtr = ptr + svga_render->vbuf_offset; in svga_vbuf_render_map_vertices()
153 retPtr = NULL; in svga_vbuf_render_map_vertices()
158 retPtr = NULL; in svga_vbuf_render_map_vertices()
162 return retPtr; in svga_vbuf_render_map_vertices()
/external/icu/icu4c/source/test/intltest/
Dintltest.cpp2204 UChar *retPtr = NULL; in ReadAndConvertFile() local
2211 return retPtr; in ReadAndConvertFile()
2277 retPtr = new UChar[ulen+1]; in ReadAndConvertFile()
2279 retPtr, // dest, in ReadAndConvertFile()
2292 delete []retPtr; in ReadAndConvertFile()
2293 retPtr = 0; in ReadAndConvertFile()
2296 return retPtr; in ReadAndConvertFile()
/external/cronet/third_party/icu/source/test/intltest/
Dintltest.cpp2348 UChar *retPtr = NULL; in ReadAndConvertFile() local
2355 return retPtr; in ReadAndConvertFile()
2421 retPtr = new UChar[ulen+1]; in ReadAndConvertFile()
2423 retPtr, // dest, in ReadAndConvertFile()
2436 delete []retPtr; in ReadAndConvertFile()
2437 retPtr = 0; in ReadAndConvertFile()
2440 return retPtr; in ReadAndConvertFile()
/external/cronet/third_party/icu/source/i18n/
Dalphaindex.cpp1202 const void *retPtr = NULL; in getRecordData() local
1207 retPtr = item->data_; in getRecordData()
1209 return retPtr; in getRecordData()
/external/icu/icu4c/source/i18n/
Dalphaindex.cpp1202 const void *retPtr = NULL; in getRecordData() local
1207 retPtr = item->data_; in getRecordData()
1209 return retPtr; in getRecordData()
/external/clang/test/Analysis/
Dmalloc.c1393 int *retPtr();
1397 int *yBefore = retPtr(); in cmpHeapAllocationToUnknown()