Home
last modified time | relevance | path

Searched refs:reallocate (Results 1 - 21 of 21) sorted by relevance

/third_party/icu/icu4c/source/i18n/
H A Dsortkey.cpp65 (count > getCapacity() && reallocate(count, 0) == NULL)) { in CollationKey()
86 if (length > getCapacity() && reallocate(length, 0) == NULL) { in CollationKey()
101 uint8_t *CollationKey::reallocate(int32_t newCapacity, int32_t length) { in reallocate() function in CollationKey
159 if (length > getCapacity() && reallocate(length, 0) == NULL) { in operator =()
H A Drulebasedcollator.cpp130 uint8_t *newBuffer = key_.reallocate(newCapacity, length); in Resize()
/third_party/node/deps/icu-small/source/i18n/
H A Dsortkey.cpp65 (count > getCapacity() && reallocate(count, 0) == nullptr)) { in CollationKey()
86 if (length > getCapacity() && reallocate(length, 0) == nullptr) { in CollationKey()
101 uint8_t *CollationKey::reallocate(int32_t newCapacity, int32_t length) { in reallocate() function in CollationKey
159 if (length > getCapacity() && reallocate(length, 0) == nullptr) { in operator =()
H A Drulebasedcollator.cpp132 uint8_t *newBuffer = key_.reallocate(newCapacity, length); in Resize()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dsortkey.cpp65 (count > getCapacity() && reallocate(count, 0) == NULL)) { in CollationKey()
86 if (length > getCapacity() && reallocate(length, 0) == NULL) { in CollationKey()
101 uint8_t *CollationKey::reallocate(int32_t newCapacity, int32_t length) { in reallocate() function in CollationKey
159 if (length > getCapacity() && reallocate(length, 0) == NULL) { in operator =()
H A Drulebasedcollator.cpp130 uint8_t *newBuffer = key_.reallocate(newCapacity, length); in Resize()
/third_party/glfw/tests/
H A Dallocator.c83 static void* reallocate(void* block, size_t size, void* user) in reallocate() function
95 printf("%s: reallocate %zu bytes to %zu bytes (current %zu maximum %zu total %zu)\n", in reallocate()
111 .reallocate = reallocate, in main()
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkAllocationCallbackUtil.hpp47 virtual void* reallocate (void* original, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) = 0;
123 void* reallocate (void* original, size_t size, size_t alignment, VkSystemAllocationScope allocationScope);
140 void* reallocate (void* original, size_t size, size_t alignment, VkSystemAllocationScope allocationScope);
176 void* reallocate (void* original, size_t size, size_t alignment, VkSystemAllocationScope allocationScope);
H A DvkAllocationCallbackUtil.cpp87 return reinterpret_cast<AllocationCallbacks*>(pUserData)->reallocate(pOriginal, size, alignment, allocationScope); in reallocationCallback()
207 void* ChainedAllocator::reallocate (void* original, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) in reallocate() function in vk::ChainedAllocator
248 void* AllocationCallbackRecorder::reallocate (void* original, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) in reallocate() function in vk::AllocationCallbackRecorder
250 void* const ptr = ChainedAllocator::reallocate(original, size, alignment, allocationScope); in reallocate()
306 void* DeterministicFailAllocator::reallocate (void* original, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) in reallocate() function in vk::DeterministicFailAllocator
310 return ChainedAllocator::reallocate(original, size, alignment, allocationScope); in reallocate()
733 str << "Attempt to reallocate " << tcu::toHex(violation.record.data.reallocation.original) << " which has not been allocated"; in operator <<()
740 str << "Attempt to reallocate " << tcu::toHex(violation.record.data.reallocation.original) << " which has been freed"; in operator <<()
/third_party/glfw/src/
H A Dinit.c278 void* resized = _glfw.allocator.reallocate(block, size, _glfw.allocator.user); in _glfw_realloc()
398 _glfw.allocator.reallocate = defaultReallocate; in glfwInit()
475 if (allocator->allocate && allocator->reallocate && allocator->deallocate) in glfwInitAllocator()
/third_party/icu/icu4c/source/i18n/unicode/
H A Dsortkey.h254 uint8_t *reallocate(int32_t newCapacity, int32_t length);
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Dsortkey.h254 uint8_t *reallocate(int32_t newCapacity, int32_t length);
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
H A Dsortkey.h254 uint8_t *reallocate(int32_t newCapacity, int32_t length);
/third_party/skia/third_party/externals/microhttpd/src/microspdy/
H A Dsession.c869 bool reallocate; in SPDYF_session_read() local
876 //if the read buffer is full to the end, we need to reallocate space in SPDYF_session_read()
881 reallocate = false; in SPDYF_session_read()
891 reallocate = true; in SPDYF_session_read()
905 reallocate = true; in SPDYF_session_read()
911 reallocate = true; in SPDYF_session_read()
921 if(reallocate) in SPDYF_session_read()
/third_party/mesa3d/src/loader/
H A Dloader_dri3_helper.h70 bool reallocate; /* Buffer should be reallocated and not reused */ member
H A Dloader_dri3_helper.c519 draw->buffers[b]->reallocate = true; in dri3_handle_present_event()
524 * reallocate once. in dri3_handle_present_event()
531 draw->buffers[b]->reallocate = true; in dri3_handle_present_event()
2045 buffer->reallocate) { in dri3_get_buffer()
/third_party/cJSON/
H A DcJSON.c172 void *(CJSON_CDECL *reallocate)(void *pointer, size_t size); member
228 global_hooks.reallocate = realloc; in cJSON_InitHooks()
245 global_hooks.reallocate = NULL; in cJSON_InitHooks()
248 global_hooks.reallocate = realloc; in cJSON_InitHooks()
655 if (p->hooks.reallocate != NULL) in ensure()
657 /* reallocate with realloc if available */ in ensure()
658 newbuffer = (unsigned char*)p->hooks.reallocate(p->buffer, newsize); in ensure()
670 /* otherwise reallocate manually */ in ensure()
1455 /* check if reallocate is available */ in print()
1456 if (hooks->reallocate ! in print()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DAPInt.cpp124 void APInt::reallocate(unsigned NewBitWidth) { in reallocate() function in APInt
149 reallocate(RHS.getBitWidth()); in AssignSlowCase()
1832 // NOTE: This assumes that reallocate won't affect any bits if it doesn't
1835 Quotient.reallocate(BitWidth);
1836 Remainder.reallocate(BitWidth);
1899 // NOTE: This assumes that reallocate won't affect any bits if it doesn't
1901 Quotient.reallocate(BitWidth);
/third_party/vulkan-loader/tests/
H A Dloader_alloc_callback_tests.cpp75 void* reallocate(void* pOriginal, size_t size, size_t alignment, VkSystemAllocationScope alloc_scope) { in reallocate() function in MemoryTracker
120 void* addr = reallocate(pOriginal, size, alignment, allocationScope);
/third_party/glfw/include/GLFW/
H A Dglfw3.h1504 * @param[in] block The address of the memory block to reallocate.
2147 GLFWreallocatefun reallocate; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DAPInt.h169 void reallocate(unsigned NewBitWidth);

Completed in 36 milliseconds