HomeSort by relevance Sort by last modified time
    Searched full:reallocation (Results 1 - 25 of 249) sorted by null

1 2 3 4 5 6 7 8 910

  /external/deqp/external/vulkancts/framework/vulkan/
vkAllocationCallbackUtil.cpp 143 AllocationCallbackRecord AllocationCallbackRecord::reallocation (void* original, size_t size, size_t alignment, VkSystemAllocationScope scope, void* returnedPtr) function in class:vk::AllocationCallbackRecord
148 record.data.reallocation.original = original;
149 record.data.reallocation.size = size;
150 record.data.reallocation.alignment = alignment;
151 record.data.reallocation.scope = scope;
152 record.data.reallocation.returnedPtr = returnedPtr;
252 m_records.append(AllocationCallbackRecord::reallocation(original, size, alignment, allocationScope, ptr));
352 return record.data.reallocation.alignment;
378 : record.type == AllocationCallbackRecord::TYPE_REALLOCATION ? &record.data.reallocation.scope
428 if (de::contains(ptrToSlotIndex, record.data.reallocation.original)
    [all...]
vkAllocationCallbackUtil.hpp 91 } reallocation; member in union:vk::AllocationCallbackRecord::__anon17580
110 static AllocationCallbackRecord reallocation (void* original, size_t size, size_t alignment, VkSystemAllocationScope scope, void* returnedPtr);
  /external/libcxx/test/std/containers/sequences/vector/vector.cons/
assign_initializer_list.pass.cpp 40 d2.reserve(10); // no reallocation during assign.
48 d2.reserve(10); // no reallocation during assign.
assign_size_value.pass.cpp 39 d2.reserve(10); // no reallocation during assign.
49 d2.reserve(10); // no reallocation during assign.
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector/vector.cons/
assign_initializer_list.pass.cpp 40 d2.reserve(10); // no reallocation during assign.
48 d2.reserve(10); // no reallocation during assign.
assign_size_value.pass.cpp 39 d2.reserve(10); // no reallocation during assign.
49 d2.reserve(10); // no reallocation during assign.
  /external/libexif/libexif/
exif-mem.c 19 /*! Default memory reallocation function. */
  /external/bsdiff/
compressor_buffer.h 19 // because it saves some resize / reallocation of memory. And the compressed
  /external/eigen/test/
qtvector.cpp 50 // (with memory reallocation)
85 // (with memory reallocation)
120 // (with memory reallocation)
stddeque_overload.cpp 53 // (with memory reallocation)
87 // (with memory reallocation)
121 // (with memory reallocation)
stdlist_overload.cpp 75 // (with memory reallocation)
115 // (with memory reallocation)
155 // (with memory reallocation)
stdvector.cpp 40 // (with memory reallocation)
75 // (with memory reallocation)
110 // (with memory reallocation)
stdvector_overload.cpp 54 // (with memory reallocation)
89 // (with memory reallocation)
124 // (with memory reallocation)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lmem.c 38 ** (any reallocation to an equal or smaller size cannot fail!)
  /external/compiler-rt/test/scudo/
realloc.cpp 6 // Tests that our reallocation function returns the same pointer when the
  /external/e2fsprogs/e2fsck/
CHANGES 26 Fixed bugs with root reallocation; previously the parent pointers in
  /external/syslinux/com32/lua/src/
lmem.c 38 ** (any reallocation to an equal or smaller size cannot fail!)
  /external/webrtc/webrtc/modules/desktop_capture/
screen_capture_frame_queue.h 30 // NULL. The caller can mark all frames in the queue for reallocation (when,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
vtimes.h 49 a page from the list of pages awaiting reallocation. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
vtimes.h 49 a page from the list of pages awaiting reallocation. */
  /external/libcxx/test/std/containers/sequences/vector/vector.modifiers/
insert_iter_size_value.pass.cpp 41 while(v.size() < v.capacity()) v.push_back(0); // force reallocation
57 v.reserve(128); // force no reallocation
insert_iter_value.pass.cpp 40 while(v.size() < v.capacity()) v.push_back(0); // force reallocation
56 v.pop_back(); v.pop_back(); // force no reallocation
  /external/webrtc/webrtc/base/
buffer_unittest.cc 124 EXPECT_EQ(buf.data<char>(), data); // No reallocation.
134 EXPECT_EQ(buf.data<int8_t>(), data); // No reallocation.
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector/vector.modifiers/
insert_iter_size_value.pass.cpp 41 while(v.size() < v.capacity()) v.push_back(0); // force reallocation
57 v.reserve(128); // force no reallocation
insert_iter_value.pass.cpp 40 while(v.size() < v.capacity()) v.push_back(0); // force reallocation
56 v.pop_back(); v.pop_back(); // force no reallocation

Completed in 697 milliseconds

1 2 3 4 5 6 7 8 910