Home
last modified time | relevance | path

Searched refs:retPtr (Results 1 – 14 of 14) 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/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.cpp1106 const uint8_t *retPtr = NULL; in getBinaryRules() local
1110 retPtr = (const uint8_t *)fData->fHeader; in getBinaryRules()
1113 return retPtr; in getBinaryRules()
/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/expat/xmlwf/
Dxmlfile.c75 int *retPtr; member
99 int *retPtr = ((PROCESS_ARGS *)args)->retPtr; in processFile() local
102 *retPtr = 0; in processFile()
104 *retPtr = 1; in processFile()
155 args.retPtr = &result; in externalEntityRefFilemap()
255 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/icu/icu4c/source/test/intltest/
Ddcfmtest.cpp494 UChar *retPtr = NULL; in ReadAndConvertFile() local
501 return retPtr; in ReadAndConvertFile()
558 retPtr = new UChar[ulen+1]; in ReadAndConvertFile()
559 u_strFromUTF8(retPtr, ulen+1, NULL, fileBufNoBOM, amtReadNoBOM, &status); in ReadAndConvertFile()
567 delete retPtr; in ReadAndConvertFile()
568 retPtr = NULL; in ReadAndConvertFile()
570 return retPtr; in ReadAndConvertFile()
Drbbitst.cpp1190 UChar *retPtr = NULL; in ReadAndConvertFile() local
1197 return retPtr; in ReadAndConvertFile()
1263 retPtr = new UChar[ulen+1]; in ReadAndConvertFile()
1265 retPtr, // dest, in ReadAndConvertFile()
1278 delete []retPtr; in ReadAndConvertFile()
1279 retPtr = 0; in ReadAndConvertFile()
1282 return retPtr; in ReadAndConvertFile()
Dregextst.cpp3877 UChar *retPtr = NULL; in ReadAndConvertFile() local
3884 return retPtr; in ReadAndConvertFile()
3954 retPtr = new UChar[ulen+1]; in ReadAndConvertFile()
3956 retPtr, // dest, in ReadAndConvertFile()
3969 delete []retPtr; in ReadAndConvertFile()
3970 retPtr = 0; in ReadAndConvertFile()
3973 return retPtr; in ReadAndConvertFile()
/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/llvm-project/mlir/lib/ExecutionEngine/
DExecutionEngine.cpp198 llvm::Value *retPtr = builder.CreateLoad(retPtrPtr); in packFunctionArguments() local
199 retPtr = builder.CreateBitCast(retPtr, result->getType()->getPointerTo()); in packFunctionArguments()
200 builder.CreateStore(result, retPtr); in packFunctionArguments()
/external/icu/icu4c/source/i18n/
Dalphaindex.cpp1209 const void *retPtr = NULL; in getRecordData() local
1214 retPtr = item->data_; in getRecordData()
1216 return retPtr; in getRecordData()
/external/clang/test/Analysis/
Dmalloc.c1393 int *retPtr();
1397 int *yBefore = retPtr(); in cmpHeapAllocationToUnknown()
/external/llvm-project/clang/test/Analysis/
Dmalloc.c1399 int *retPtr();
1403 int *yBefore = retPtr(); in cmpHeapAllocationToUnknown()