Home
last modified time | relevance | path

Searched refs:allocators (Results 1 – 25 of 72) sorted by relevance

123

/third_party/flutter/skia/tests/
DGrAllocatorTest.cpp75 SkTArray<GrTAllocator<C>*> allocators; in DEF_TEST() local
77 allocators.push_back(&a1); in DEF_TEST()
79 allocators.push_back(&a2); in DEF_TEST()
81 allocators.push_back(&a5); in DEF_TEST()
84 allocators.push_back(&a1); in DEF_TEST()
86 allocators.push_back(&sa3); in DEF_TEST()
88 allocators.push_back(&sa4); in DEF_TEST()
90 for (int i = 0; i < allocators.count(); ++i) { in DEF_TEST()
91 check_allocator(allocators[i], 0, 0, reporter); in DEF_TEST()
92 check_allocator(allocators[i], 1, 1, reporter); in DEF_TEST()
[all …]
/third_party/gstreamer/gstplugins_base/gst-libs/gst/allocators/
Dmeson.build2 'allocators.h',
3 'allocators-prelude.h',
8 install_headers(gst_allocators_headers, subdir : 'gstreamer-1.0/gst/allocators/')
22 pkg_name = 'gstreamer-allocators-1.0'
34 gst_gir_extra_args = gir_init_section + [ '--c-include=gst/allocators/allocators.h' ]
60 meson.override_dependency('gstreamer-allocators-1.0', allocators_dep)
/third_party/python/Modules/
D_tracemalloc.c34 } allocators; variable
254 return allocators.raw.malloc(allocators.raw.ctx, size); in raw_malloc()
260 allocators.raw.free(allocators.raw.ctx, ptr); in raw_free()
867 PyMem_GetAllocator(PYMEM_DOMAIN_RAW, &allocators.raw); in tracemalloc_init()
993 alloc.ctx = &allocators.raw; in tracemalloc_start()
994 PyMem_GetAllocator(PYMEM_DOMAIN_RAW, &allocators.raw); in tracemalloc_start()
1003 alloc.ctx = &allocators.mem; in tracemalloc_start()
1004 PyMem_GetAllocator(PYMEM_DOMAIN_MEM, &allocators.mem); in tracemalloc_start()
1007 alloc.ctx = &allocators.obj; in tracemalloc_start()
1008 PyMem_GetAllocator(PYMEM_DOMAIN_OBJ, &allocators.obj); in tracemalloc_start()
[all …]
/third_party/node/test/parallel/
Dtest-buffer-failed-alloc-typed-arrays.js16 const allocators = [ variable
23 for (const allocator of allocators) {
/third_party/python/Doc/c-api/
Dmemory.rst28 several object-specific allocators operate on the same heap and implement
33 some of the work to the object-specific allocators, but ensures that the latter
89 the memory allocators used by Python.
103 table can be found at :ref:`here <default-memory-allocators>`. There is no hard
135 The :ref:`default raw memory allocator <default-memory-allocators>` uses
201 The :ref:`default memory allocator <default-memory-allocators>` uses the
300 Object allocators
308 There is no guarantee that the memory returned by these allocators can be
311 the :ref:`Customize Memory Allocators <customize-memory-allocators>` section.
313 The :ref:`default object allocator <default-memory-allocators>` uses the
[all …]
Dinit_config.rst229 Name of the Python memory allocators:
231 * ``PYMEM_ALLOCATOR_NOT_SET`` (``0``): don't change memory allocators
233 * ``PYMEM_ALLOCATOR_DEFAULT`` (``1``): :ref:`default memory allocators
234 <default-memory-allocators>`.
235 * ``PYMEM_ALLOCATOR_DEBUG`` (``2``): :ref:`default memory allocators
236 <default-memory-allocators>` with :ref:`debug hooks
345 * Set the Python memory allocators (:c:member:`PyPreConfig.allocator`)
/third_party/gstreamer/gstreamer/gst/
Dgstallocator.c78 static GHashTable *allocators; variable
236 g_hash_table_insert (allocators, (gpointer) name, (gpointer) allocator); in gst_allocator_register()
257 allocator = g_hash_table_lookup (allocators, (gconstpointer) name); in gst_allocator_find()
602 allocators = g_hash_table_new_full (g_str_hash, g_str_equal, NULL, in _priv_gst_allocator_initialize()
634 g_clear_pointer (&allocators, g_hash_table_unref); in _priv_gst_allocator_cleanup()
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DCommandAllocator.cpp60 void CommandIterator::AcquireCommandBlocks(std::vector<CommandAllocator> allocators) { in AcquireCommandBlocks() argument
63 for (CommandAllocator& allocator : allocators) { in AcquireCommandBlocks()
DCommandAllocator.h81 void AcquireCommandBlocks(std::vector<CommandAllocator> allocators);
/third_party/gstreamer/gstplugins_base/gst-libs/gst/
Dmeson.build11 subdir('allocators') subdir
/third_party/skia/third_party/externals/dawn/src/tests/unittests/
DCommandAllocatorTests.cpp464 std::vector<CommandAllocator> allocators(kNumAllocators); in TEST() local
466 CommandAllocator& allocator = allocators[j]; in TEST()
479 iterator.AcquireCommandBlocks(std::move(allocators)); in TEST()
/third_party/gstreamer/gstplugins_base/tests/icles/
Dtest-header-compile13 for lib in allocators app audio fft pbutils riff rtp rtsp sdp tag video ; do
/third_party/gstreamer/gstplugins_base/tests/check/libs/
Dallocators.c117 GST_CHECK_MAIN (allocators);
/third_party/flutter/skia/third_party/externals/angle2/third_party/rapidjson/
DBUILD.gn13 "src/include/rapidjson/allocators.h",
/third_party/skia/third_party/externals/angle2/third_party/rapidjson/
DBUILD.gn16 "src/include/rapidjson/allocators.h",
/third_party/python/Doc/library/
Ddevmode.rst45 * Install debug hooks on memory allocators to check for:
58 memory allocators, set the :envvar:`PYTHONMALLOC` environment variable to
/third_party/python/Doc/using/
Dcmdline.rst801 Set the Python memory allocators and/or install debug hooks.
803 Set the family of memory allocators used by Python:
805 * ``default``: use the :ref:`default memory allocators
806 <default-memory-allocators>`.
817 allocators <default-memory-allocators>`.
Dconfigure.rst227 * Install :ref:`debug hooks on memory allocators <default-memory-allocators>`
/third_party/gstreamer/gstplugins_base/docs/
Dmeson.build106 ['allocators', allocators_gir, allocators_dep],
/third_party/libxml2/os400/libxmlrpg/
Dxmlmemory.rpgle137 * allocations useful for garbage collected memory allocators
/third_party/gstreamer/gstplugins_base/tests/check/
Dmeson.build67 [ 'libs/allocators.c', host_machine.system() != 'linux' ],
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/docs/
DALLOCATION.rst78 buffers, they need to use different allocators. This is because the translation
/third_party/python/Misc/NEWS.d/
D3.8.0a4.rst81 Debug memory allocators: disable serialno field by default from debug hooks
82 on Python memory allocators to reduce the memory footprint by 5%. Enable
1369 internal constants used by debug hooks on Python memory allocators
/third_party/skia/third_party/externals/dawn/docs/
Ddevice_facilities.md6 Example of backend facilities are GPU memory allocators or the backing API function pointer table.
/third_party/libuv/docs/src/
Dhandle.rst71 pools or slab based allocators may decide to use a different size which matches the memory

123