Home
last modified time | relevance | path

Searched refs:allocated_ptr (Results 1 – 25 of 185) sorted by relevance

12345678

/dports/biology/hyphy/hyphy-2.5.33/src/core/
H A Dstring_buffer.cpp67 free (allocated_ptr); in AllocateBufferSpace()
70 allocated_ptr = s_data = (char *)MemReallocate(allocated_ptr, sa_length + 1UL); in AllocateBufferSpace()
100 allocated_ptr = s_data; in Initialize()
114 s_data = allocated_ptr; in Clear()
117 allocated_ptr = s_data; in Clear()
193 allocated_ptr = s_data; in _StringBuffer()
205 allocated_ptr = s_data; in _StringBuffer()
209 if (s_data && allocated_ptr) in ~_StringBuffer()
210 s_data = allocated_ptr; in ~_StringBuffer()
240 s_data = allocated_ptr; in Duplicate()
[all …]
/dports/www/node10/node-v10.24.1/deps/v8/src/base/
H A Dlazy-instance.h131 static void Construct(void* allocated_ptr) { new (allocated_ptr) T(); } in Construct()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/abseil-cpp/absl/container/internal/
H A Dinlined_vector.h854 Storage* allocated_ptr = this; variable
856 if (!allocated_ptr->GetIsAllocated()) swap(allocated_ptr, inlined_ptr);
858 StorageView allocated_storage_view{allocated_ptr->GetAllocatedData(),
859 allocated_ptr->GetSize(),
860 allocated_ptr->GetAllocatedCapacity()};
867 inlined_ptr->GetAllocPtr(), allocated_ptr->GetInlinedData(),
871 allocated_ptr->SetAllocatedData(allocated_storage_view.data,
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/abseil-cpp/absl/container/internal/
H A Dinlined_vector.h854 Storage* allocated_ptr = this; variable
856 if (!allocated_ptr->GetIsAllocated()) swap(allocated_ptr, inlined_ptr);
858 StorageView allocated_storage_view{allocated_ptr->GetAllocatedData(),
859 allocated_ptr->GetSize(),
860 allocated_ptr->GetAllocatedCapacity()};
867 inlined_ptr->GetAllocPtr(), allocated_ptr->GetInlinedData(),
871 allocated_ptr->SetAllocatedData(allocated_storage_view.data,
/dports/net-im/tg_owt/tg_owt-d578c76/src/third_party/abseil-cpp/absl/container/internal/
H A Dinlined_vector.h854 Storage* allocated_ptr = this; variable
856 if (!allocated_ptr->GetIsAllocated()) swap(allocated_ptr, inlined_ptr);
858 StorageView allocated_storage_view{allocated_ptr->GetAllocatedData(),
859 allocated_ptr->GetSize(),
860 allocated_ptr->GetAllocatedCapacity()};
867 inlined_ptr->GetAllocPtr(), allocated_ptr->GetInlinedData(),
871 allocated_ptr->SetAllocatedData(allocated_storage_view.data,
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/third_party/abseil-cpp/absl/container/internal/
H A Dinlined_vector.h854 Storage* allocated_ptr = this; variable
856 if (!allocated_ptr->GetIsAllocated()) swap(allocated_ptr, inlined_ptr);
858 StorageView allocated_storage_view{allocated_ptr->GetAllocatedData(),
859 allocated_ptr->GetSize(),
860 allocated_ptr->GetAllocatedCapacity()};
867 inlined_ptr->GetAllocPtr(), allocated_ptr->GetInlinedData(),
871 allocated_ptr->SetAllocatedData(allocated_storage_view.data,
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/base/
H A Dlazy-instance.h129 static void Construct(void* allocated_ptr) { new (allocated_ptr) T(); } in Construct()
/dports/lang/v8/v8-9.6.180.12/src/base/
H A Dlazy-instance.h129 static void Construct(void* allocated_ptr) { new (allocated_ptr) T(); } in Construct()
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/base/
H A Dlazy-instance.h129 static void Construct(void* allocated_ptr) { new (allocated_ptr) T(); } in Construct()
/dports/graphics/R-cran-s2/s2/src/absl/container/internal/
H A Dinlined_vector.h924 Storage* allocated_ptr = this; variable
926 if (!allocated_ptr->GetIsAllocated()) swap(allocated_ptr, inlined_ptr);
928 StorageView allocated_storage_view{allocated_ptr->GetAllocatedData(),
929 allocated_ptr->GetSize(),
930 allocated_ptr->GetAllocatedCapacity()};
937 inlined_ptr->GetAllocPtr(), allocated_ptr->GetInlinedData(),
941 allocated_ptr->SetAllocatedData(allocated_storage_view.data,
/dports/devel/pecl-grpc/grpc-1.42.0/third_party/abseil-cpp/absl/container/internal/
H A Dinlined_vector.h924 Storage* allocated_ptr = this; variable
926 if (!allocated_ptr->GetIsAllocated()) swap(allocated_ptr, inlined_ptr);
928 StorageView allocated_storage_view{allocated_ptr->GetAllocatedData(),
929 allocated_ptr->GetSize(),
930 allocated_ptr->GetAllocatedCapacity()};
937 inlined_ptr->GetAllocPtr(), allocated_ptr->GetInlinedData(),
941 allocated_ptr->SetAllocatedData(allocated_storage_view.data,
/dports/devel/abseil/abseil-cpp-20211102.0/absl/container/internal/
H A Dinlined_vector.h890 Storage* allocated_ptr = this; variable
892 if (!allocated_ptr->GetIsAllocated()) swap(allocated_ptr, inlined_ptr);
895 allocated_ptr->GetAllocatedData(), allocated_ptr->GetSize(),
896 allocated_ptr->GetAllocatedCapacity()};
903 allocated_ptr->GetInlinedData(), move_values,
907 allocated_ptr->SetAllocation(
/dports/devel/py-grpcio/grpcio-1.43.0/third_party/abseil-cpp/absl/container/internal/
H A Dinlined_vector.h890 Storage* allocated_ptr = this; variable
892 if (!allocated_ptr->GetIsAllocated()) swap(allocated_ptr, inlined_ptr);
895 allocated_ptr->GetAllocatedData(), allocated_ptr->GetSize(),
896 allocated_ptr->GetAllocatedCapacity()};
903 allocated_ptr->GetInlinedData(), move_values,
907 allocated_ptr->SetAllocation(
/dports/biology/hyphy/hyphy-2.5.33/src/core/include/
H A Dhy_string_buffer.h71 char * allocated_ptr; variable
/dports/www/node10/node-v10.24.1/src/
H A Dutil.h325 T* allocated_ptr = was_allocated ? buf_ : nullptr; in AllocateSufficientStorage() local
326 buf_ = Realloc(allocated_ptr, storage); in AllocateSufficientStorage()
/dports/devel/gettext-tools/gettext-0.21/gettext-tools/src/
H A Dformat-c.c45 #define IF_OOM(allocated_ptr, statement) /* nothing, since we use xalloc.h */ argument
/dports/devel/gettext-runtime/gettext-0.21/gettext-tools/src/
H A Dformat-c.c45 #define IF_OOM(allocated_ptr, statement) /* nothing, since we use xalloc.h */ argument
/dports/devel/gettext-po-mode/gettext-0.21/gettext-tools/src/
H A Dformat-c.c45 #define IF_OOM(allocated_ptr, statement) /* nothing, since we use xalloc.h */ argument
/dports/devel/libtextstyle/gettext-0.21/gettext-tools/src/
H A Dformat-c.c45 #define IF_OOM(allocated_ptr, statement) /* nothing, since we use xalloc.h */ argument
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_test.cpp664 for (const auto &allocated_ptr : allocated) { in TestCombinedAllocator() local
665 ASSERT_NE(reported_chunks.find(allocated_ptr), reported_chunks.end()); in TestCombinedAllocator()
/dports/devel/tinygo/tinygo-0.14.1/lib/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_test.cc672 for (const auto &allocated_ptr : allocated) { in TestCombinedAllocator() local
673 ASSERT_NE(reported_chunks.find(allocated_ptr), reported_chunks.end()); in TestCombinedAllocator()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_test.cpp664 for (const auto &allocated_ptr : allocated) { in TestCombinedAllocator() local
665 ASSERT_NE(reported_chunks.find(allocated_ptr), reported_chunks.end()); in TestCombinedAllocator()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_test.cpp725 for (const auto &allocated_ptr : allocated) { in TestCombinedAllocator() local
726 ASSERT_NE(reported_chunks.find(allocated_ptr), reported_chunks.end()); in TestCombinedAllocator()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_test.cpp664 for (const auto &allocated_ptr : allocated) { in TestCombinedAllocator() local
665 ASSERT_NE(reported_chunks.find(allocated_ptr), reported_chunks.end()); in TestCombinedAllocator()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_test.cpp725 for (const auto &allocated_ptr : allocated) { in TestCombinedAllocator() local
726 ASSERT_NE(reported_chunks.find(allocated_ptr), reported_chunks.end()); in TestCombinedAllocator()

12345678