HomeSort by relevance Sort by last modified time
    Searched refs:reallocate (Results 1 - 24 of 24) sorted by null

  /build/blueprint/
splice_modules_test.go 37 reallocate bool
46 reallocate: true,
55 reallocate: true,
64 reallocate: true,
73 reallocate: true,
82 reallocate: false,
91 reallocate: false,
100 reallocate: false,
109 reallocate: false,
131 if sameArray(origIn, got) != !testCase.reallocate {
    [all...]
  /external/icu/icu4c/source/i18n/
sortkey.cpp 65 (count > getCapacity() && reallocate(count, 0) == NULL)) {
86 if (length > getCapacity() && reallocate(length, 0) == NULL) {
101 uint8_t *CollationKey::reallocate(int32_t newCapacity, int32_t length) { function in class:CollationKey
159 if (length > getCapacity() && reallocate(length, 0) == NULL) {
rulebasedcollator.cpp 130 uint8_t *newBuffer = key_.reallocate(newCapacity, length);
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkAllocationCallbackUtil.hpp 47 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);
vkAllocationCallbackUtil.cpp 87 return reinterpret_cast<AllocationCallbacks*>(pUserData)->reallocate(pOriginal, size, alignment, allocationScope);
207 void* ChainedAllocator::reallocate (void* original, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) function in class:vk::ChainedAllocator
248 void* AllocationCallbackRecorder::reallocate (void* original, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) function in class:vk::AllocationCallbackRecorder
250 void* const ptr = ChainedAllocator::reallocate(original, size, alignment, allocationScope);
306 void* DeterministicFailAllocator::reallocate (void* original, size_t size, size_t alignment, VkSystemAllocationScope allocationScope) function in class:vk::DeterministicFailAllocator
310 return ChainedAllocator::reallocate(original, size, alignment, allocationScope);
733 str << "Attempt to reallocate " << tcu::toHex(violation.record.data.reallocation.original) << " which has not been allocated";
740 str << "Attempt to reallocate " << tcu::toHex(violation.record.data.reallocation.original) << " which has been freed";
  /external/eigen/Eigen/src/SparseCore/
CompressedStorage.h 80 reallocate(newAllocatedSize);
86 reallocate(m_size);
96 reallocate(realloc_size);
228 inline void reallocate(Index size) function in class:Eigen::internal::CompressedStorage
AmbiVector.h 57 reallocate(size);
69 void reallocate(Index size) function in class:Eigen::internal::AmbiVector
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineStorage.h 90 reallocate(size, upperProfileSize, lowerProfileSize, upperSize, lowerSize);
95 reallocate(m_diagSize, m_upperProfileSize, m_lowerProfileSize, m_upperSize, m_lowerSize);
100 reallocate(diagSize, upperProfileSize, lowerProfileSize, upperSize + Index(reserveSizeFactor * upperSize), lowerSize + Index(reserveSizeFactor * lowerSize));
203 inline void reallocate(Index diagSize, Index upperProfileSize, Index lowerProfileSize, Index upperSize, Index lowerSize) { function in class:Eigen::SkylineStorage
  /external/icu/icu4c/source/i18n/unicode/
sortkey.h 252 uint8_t *reallocate(int32_t newCapacity, int32_t length);
  /external/iperf3/src/
cjson.c 112 void *(*reallocate)(void *pointer, size_t size); member in struct:internal_hooks
144 global_hooks.reallocate = realloc;
161 global_hooks.reallocate = NULL;
164 global_hooks.reallocate = realloc;
387 if (p->hooks.reallocate != NULL)
389 /* reallocate with realloc if available */
390 newbuffer = (unsigned char*)p->hooks.reallocate(p->buffer, newsize);
394 /* otherwise reallocate manually */
1052 /* check if reallocate is available */
1053 if (hooks->reallocate != NULL
    [all...]
  /external/skia/modules/pathkit/
helper.js 5 // Caching the Float32Arrays can save having to reallocate them
  /external/skqp/modules/pathkit/
helper.js 5 // Caching the Float32Arrays can save having to reallocate them
  /external/compiler-rt/lib/scudo/
scudo_allocator.cpp 465 void *reallocate(void *OldPtr, uptr NewSize) { function in struct:__scudo::Allocator
557 return Instance.reallocate(Ptr, Size);
  /external/skia/modules/canvaskit/
helper.js 122 // Caching the Float32Arrays can save having to reallocate them
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
APInt.cpp 123 void APInt::reallocate(unsigned NewBitWidth) { function in class:APInt
148 reallocate(RHS.getBitWidth());
    [all...]
  /external/tensorflow/tensorflow/contrib/verbs/
patch_notes_verbs_with_0_copies.md 27 2. The address of the destination Tensor needs to be sent to the sender side for writing, meaning that the result/proxy tensor should be pre-allocated on the receiver side, prior to sending the tensor request. In order to do that, we need to know its meta-data, i.e. shape and data-type for DMAble tensors, and proto-size for serialized tensors. Unfortunately, this information is only available on the sender side which complicates manners. In order to avoid sending extra messages for querying the meta-data on each step, we store a local meta-data cache per tensor. Based on the assumption that the meta-data of a tensor rarely changes between steps, we expect that on most times the cache will only be updated once. When the sender receives a request for a tensor, if it is the first time this tensor is requested, or in the rare case that the meta-data did change, the sender will first send a meta-data response, on which the receiver will update the local cache, and reallocate the result/proxy tensors if required. When the receiver sends the tensor request, it will contain also the meta-data currently stored in its local cache, so the sender can compare it to see if there was a change.
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
APInt.h 169 void reallocate(unsigned NewBitWidth);
    [all...]
  /external/flatbuffers/include/flatbuffers/
flatbuffers.h 445 // Reallocate `new_size` bytes of memory, replacing the old region of size
760 if (len > static_cast<size_t>(cur_ - scratch_)) { reallocate(len); }
866 void reallocate(size_t len) { function in class:flatbuffers::vector_downward
    [all...]
  /external/tensorflow/tensorflow/contrib/metrics/python/ops/
metric_ops.py 3642 def reallocate(): function in function:streaming_concat
    [all...]
  /external/skqp/experimental/canvaskit/
interface.js 578 // Caching the Float32Arrays can save having to reallocate them
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.text_3.6.300.v20180430-1330.jar 
  /external/guice/extensions/persist/lib/
dom4j-1.6.1.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
dom4j-1.6.1.jar 
  /external/antlr/runtime/ActionScript/project/lib/
FlexAntTasks.jar 

Completed in 1420 milliseconds