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

1 2

  /frameworks/base/tools/incident_report/
printer.h 40 int reallocate(int size);
printer.cpp 44 Out::reallocate(int size) function in class:Out
  /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) {
  /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
  /prebuilts/go/darwin-x86/doc/progs/
slices.go 15 if n > cap(slice) { // if necessary, reallocate
  /prebuilts/go/linux-x86/doc/progs/
slices.go 15 if n > cap(slice) { // if necessary, reallocate
  /external/icu/icu4c/source/i18n/unicode/
sortkey.h 252 uint8_t *reallocate(int32_t newCapacity, int32_t length);
  /frameworks/native/opengl/libagl/
TextureObjectManager.h 54 status_t reallocate(GLint level,
TextureObjectManager.cpp 160 status_t EGLTextureObject::reallocate( function in class:android::EGLTextureObject
mipmap.cpp 47 if (tex->reallocate(level, w, h, w,
  /external/libmicrohttpd/src/microspdy/
session.c 869 bool reallocate; local
876 //if the read buffer is full to the end, we need to reallocate space
881 reallocate = false;
891 reallocate = true;
905 reallocate = true;
911 reallocate = true;
921 if(reallocate)
    [all...]
  /frameworks/native/libs/ui/include/ui/
GraphicBuffer.h 83 // This function is privileged. See reallocate for details.
159 status_t reallocate(uint32_t inWidth, uint32_t inHeight,
  /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);
  /prebuilts/go/darwin-x86/src/io/ioutil/
ioutil.go 67 // or reallocate as needed, but in the overwhelmingly common case we'll get
  /prebuilts/go/linux-x86/src/io/ioutil/
ioutil.go 67 // or reallocate as needed, but in the overwhelmingly common case we'll get
  /frameworks/native/libs/ui/
GraphicBuffer.cpp 131 status_t GraphicBuffer::reallocate(uint32_t inWidth, uint32_t inHeight, function in class:android::GraphicBuffer
  /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.
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/cryptobyte/
builder.go 44 // buffer. This builder does not reallocate the output buffer. Writes that
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/cryptobyte/
builder.go 44 // buffer. This builder does not reallocate the output buffer. Writes that
  /external/flatbuffers/include/flatbuffers/
flatbuffers.h 367 // Reallocate `new_size` bytes of memory, replacing the old region of size
567 reallocate(len);
636 void reallocate(size_t len) { function in namespace:flatbuffers
    [all...]

Completed in 748 milliseconds

1 2