Home
last modified time | relevance | path

Searched refs:custom_allocator (Results 1 – 13 of 13) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/utility/test/
Dstring_view_test2.cpp252 class custom_allocator { class
266 typedef custom_allocator<U> other;
269 custom_allocator() BOOST_NOEXCEPT {} in custom_allocator() function in custom_allocator
271 custom_allocator(custom_allocator<U> const&) BOOST_NOEXCEPT {} in custom_allocator() function in custom_allocator
324 BOOST_CONSTEXPR bool operator==(const custom_allocator<T> &, const custom_allocator<U> &) BOOST_NOE… in operator ==()
328 BOOST_CONSTEXPR bool operator!=(const custom_allocator<T> &, const custom_allocator<U> &) BOOST_NOE… in operator !=()
343 …::basic_string<char, std::char_traits<char>, custom_allocator<char> > str3 = sr1.to_string(custom_… in to_string()
/aosp_15_r20/external/pigweed/pw_allocator/examples/
H A DBUILD.gn38 pw_source_set("custom_allocator") {
40 public = [ "custom_allocator.h" ]
42 sources = [ "custom_allocator.cc" ]
53 ":custom_allocator",
90 ":custom_allocator",
133 ":custom_allocator",
H A DBUILD.bazel36 name = "custom_allocator",
38 srcs = ["custom_allocator.cc"],
39 hdrs = ["custom_allocator.h"],
54 ":custom_allocator",
95 ":custom_allocator",
142 ":custom_allocator",
H A DCMakeLists.txt32 pw_add_library(pw_allocator.examples.custom_allocator STATIC
34 custom_allocator.h
40 custom_allocator.cc
52 pw_allocator.examples.custom_allocator
89 pw_allocator.examples.custom_allocator
/aosp_15_r20/external/tensorflow/tensorflow/compiler/jit/
H A Dxla_platform_info.cc121 std::shared_ptr<se::DeviceMemoryAllocator> custom_allocator; in XlaPlatformInfoFromDevice() local
142 custom_allocator = in XlaPlatformInfoFromDevice()
147 xla_device_metadata, custom_allocator); in XlaPlatformInfoFromDevice()
153 if (platform_info.custom_allocator()) { in GetAllocator()
154 return platform_info.custom_allocator(); in GetAllocator()
H A Dxla_platform_info.h48 std::shared_ptr<se::DeviceMemoryAllocator> custom_allocator() const { in custom_allocator() function
/aosp_15_r20/external/vulkan-validation-layers/layers/
H A Dobject_lifetime_validation.h192 bool custom_allocator = (pAllocator != nullptr); in CreateObject() local
196 pNewObjNode->status = custom_allocator ? OBJSTATUS_CUSTOM_ALLOCATOR : OBJSTATUS_NONE; in CreateObject()
249 bool custom_allocator = pAllocator != nullptr; in ValidateDestroyObject() local
258 …if (allocated_with_custom && !custom_allocator && expected_custom_allocator_code != kVUIDUndefined… in ValidateDestroyObject()
266 …} else if (!allocated_with_custom && custom_allocator && expected_default_allocator_code != kVUIDU… in ValidateDestroyObject()
/aosp_15_r20/external/pigweed/pw_allocator/
H A Dguide.rst283 .. _module-pw_allocator-guide-custom_allocator:
298 .. literalinclude:: examples/custom_allocator.h
301 :start-after: [pw_allocator-examples-custom_allocator]
303 .. literalinclude:: examples/custom_allocator.cc
306 :start-after: [pw_allocator-examples-custom_allocator]
455 :ref:`module-pw_allocator-guide-custom_allocator`:
460 :start-after: [pw_allocator-examples-custom_allocator-unit_test]
461 :end-before: [pw_allocator-examples-custom_allocator-unit_test]
470 :start-after: [pw_allocator-examples-custom_allocator-test_harness]
475 :start-after: [pw_allocator-examples-custom_allocator-perf_test]
[all …]
H A DBUILD.gn768 "examples/custom_allocator.cc",
769 "examples/custom_allocator.h",
/aosp_15_r20/external/tensorflow/tensorflow/compiler/mlir/tfrt/tests/ir/
H A Dfallback_opt.mlir77 // CHECK-LABEL: func @custom_allocator
78 func.func @custom_allocator(%ch: !tfrt.chain, %arg: !tfrt_fallback.tf_tensor, %allocator: !tfrt_fal…
/aosp_15_r20/external/flatbuffers/docs/source/
H A DCppUsage.md140 - `native_custom_alloc("custom_allocator")` (on a table or struct): When using the
152 table mytable(native_custom_alloc:"custom_allocator") {
157 with `custom_allocator` defined before `flatbuffers.h` is included, as:
160 template <typename T> struct custom_allocator : public std::allocator<T> {
166 typedef custom_allocator<U> other;
177 custom_allocator() throw() {}
180 custom_allocator(const custom_allocator<U>&) throw() {}
/aosp_15_r20/external/fmtlib/doc/
H A Dapi.md370 fmt::basic_memory_buffer<char, fmt::inline_buffer_size, custom_allocator>;
376 std::basic_string<char, std::char_traits<char>, custom_allocator>;
378 auto vformat(custom_allocator alloc, fmt::string_view fmt,
386 auto format(custom_allocator alloc, fmt::string_view fmt,
/aosp_15_r20/external/openscreen/third_party/valijson/
H A DBUILD.gn26 "src/include/valijson/internal/custom_allocator.hpp",