/third_party/icu/icu4c/source/test/cintltst/ |
D | hpmufn.c | 90 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()
|
/third_party/skia/third_party/externals/icu/source/tools/icuinfo/ |
D | testplug.c | 163 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()
|
/third_party/icu/icu4c/source/tools/icuinfo/ |
D | testplug.c | 163 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()
|
/third_party/flutter/skia/third_party/externals/icu/source/tools/icuinfo/ |
D | testplug.c | 163 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()
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | umutex.cpp | 81 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()
|
D | rbbi.cpp | 1106 const uint8_t *retPtr = NULL; in getBinaryRules() local 1110 retPtr = (const uint8_t *)fData->fHeader; in getBinaryRules() 1113 return retPtr; in getBinaryRules()
|
/third_party/node/deps/icu-small/source/common/ |
D | umutex.cpp | 81 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()
|
D | rbbi.cpp | 1106 const uint8_t *retPtr = NULL; in getBinaryRules() local 1110 retPtr = (const uint8_t *)fData->fHeader; in getBinaryRules() 1113 return retPtr; in getBinaryRules()
|
/third_party/icu/icu4c/source/common/ |
D | umutex.cpp | 81 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()
|
D | rbbi.cpp | 1106 const uint8_t *retPtr = NULL; in getBinaryRules() local 1110 retPtr = (const uint8_t *)fData->fHeader; in getBinaryRules() 1113 return retPtr; in getBinaryRules()
|
/third_party/skia/third_party/externals/expat/expat/xmlwf/ |
D | xmlfile.c | 81 int *retPtr; member 105 int *retPtr = ((PROCESS_ARGS *)args)->retPtr; in processFile() local 108 *retPtr = 0; in processFile() 110 *retPtr = 1; in processFile() 161 args.retPtr = &result; in externalEntityRefFilemap() 261 args.retPtr = &result; in XML_ProcessFile()
|
/third_party/expat/xmlwf/ |
D | xmlfile.c | 81 int *retPtr; member 105 int *retPtr = ((PROCESS_ARGS *)args)->retPtr; in processFile() local 108 *retPtr = 0; in processFile() 110 *retPtr = 1; in processFile() 161 args.retPtr = &result; in externalEntityRefFilemap() 261 args.retPtr = &result; in XML_ProcessFile()
|
/third_party/icu/icu4c/source/test/intltest/ |
D | dcfmtest.cpp | 494 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()
|
D | rbbitst.cpp | 1191 UChar *retPtr = NULL; in ReadAndConvertFile() local 1198 return retPtr; in ReadAndConvertFile() 1264 retPtr = new UChar[ulen+1]; in ReadAndConvertFile() 1266 retPtr, // dest, in ReadAndConvertFile() 1279 delete []retPtr; in ReadAndConvertFile() 1280 retPtr = 0; in ReadAndConvertFile() 1283 return retPtr; in ReadAndConvertFile()
|
D | regextst.cpp | 3877 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()
|
/third_party/mesa3d/src/gallium/drivers/svga/ |
D | svga_swtnl_backend.c | 133 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()
|
/third_party/flutter/skia/third_party/externals/icu/source/common/ |
D | rbbi.cpp | 1077 const uint8_t *retPtr = NULL; in getBinaryRules() local 1081 retPtr = (const uint8_t *)fData->fHeader; in getBinaryRules() 1084 return retPtr; in getBinaryRules()
|
/third_party/node/deps/icu-small/source/i18n/ |
D | alphaindex.cpp | 1210 const void *retPtr = NULL; in getRecordData() local 1215 retPtr = item->data_; in getRecordData() 1217 return retPtr; in getRecordData()
|
/third_party/icu/icu4c/source/i18n/ |
D | alphaindex.cpp | 1209 const void *retPtr = NULL; in getRecordData() local 1214 retPtr = item->data_; in getRecordData() 1216 return retPtr; in getRecordData()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | alphaindex.cpp | 1209 const void *retPtr = NULL; in getRecordData() local 1214 retPtr = item->data_; in getRecordData() 1216 return retPtr; in getRecordData()
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | alphaindex.cpp | 1210 const void *retPtr = NULL; in getRecordData() local 1215 retPtr = item->data_; in getRecordData() 1217 return retPtr; in getRecordData()
|