Home
last modified time | relevance | path

Searched refs:malloc_allocator (Results 1 – 19 of 19) sorted by relevance

/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.17-4.8/x86_64-linux/include/c++/4.8.3/ext/
Dmalloc_allocator.h56 class malloc_allocator in _GLIBCXX_VISIBILITY()
69 { typedef malloc_allocator<_Tp1> other; }; in _GLIBCXX_VISIBILITY()
77 malloc_allocator() _GLIBCXX_USE_NOEXCEPT { } in _GLIBCXX_VISIBILITY()
79 malloc_allocator(const malloc_allocator&) _GLIBCXX_USE_NOEXCEPT { } in _GLIBCXX_VISIBILITY()
82 malloc_allocator(const malloc_allocator<_Tp1>&) in _GLIBCXX_VISIBILITY()
85 ~malloc_allocator() _GLIBCXX_USE_NOEXCEPT { } in _GLIBCXX_VISIBILITY()
141 operator==(const malloc_allocator<_Tp>&, const malloc_allocator<_Tp>&) in _GLIBCXX_VISIBILITY()
146 operator!=(const malloc_allocator<_Tp>&, const malloc_allocator<_Tp>&) in _GLIBCXX_VISIBILITY()
Dalloc_traits.h79 template<typename> struct malloc_allocator; in _GLIBCXX_VISIBILITY()
82 struct __allocator_always_compares_equal<malloc_allocator<_Tp>> in _GLIBCXX_VISIBILITY()
86 const bool __allocator_always_compares_equal<malloc_allocator<_Tp>>::value; in _GLIBCXX_VISIBILITY()
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
Dmalloc_allocator.h56 class malloc_allocator in _GLIBCXX_VISIBILITY()
69 { typedef malloc_allocator<_Tp1> other; }; in _GLIBCXX_VISIBILITY()
77 malloc_allocator() _GLIBCXX_USE_NOEXCEPT { } in _GLIBCXX_VISIBILITY()
79 malloc_allocator(const malloc_allocator&) _GLIBCXX_USE_NOEXCEPT { } in _GLIBCXX_VISIBILITY()
82 malloc_allocator(const malloc_allocator<_Tp1>&) in _GLIBCXX_VISIBILITY()
85 ~malloc_allocator() _GLIBCXX_USE_NOEXCEPT { } in _GLIBCXX_VISIBILITY()
141 operator==(const malloc_allocator<_Tp>&, const malloc_allocator<_Tp>&) in _GLIBCXX_VISIBILITY()
146 operator!=(const malloc_allocator<_Tp>&, const malloc_allocator<_Tp>&) in _GLIBCXX_VISIBILITY()
Dalloc_traits.h79 template<typename> struct malloc_allocator; in _GLIBCXX_VISIBILITY()
82 struct __allocator_always_compares_equal<malloc_allocator<_Tp>> in _GLIBCXX_VISIBILITY()
86 const bool __allocator_always_compares_equal<malloc_allocator<_Tp>>::value; in _GLIBCXX_VISIBILITY()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/pool/example/
Dsys_allocator.hpp23 struct malloc_allocator struct
37 typedef malloc_allocator<U> other; argument
53 bool operator==(const malloc_allocator &) const { return true; } in operator ==() argument
54 bool operator!=(const malloc_allocator &) const { return false; } in operator !=() argument
56 malloc_allocator() { } in malloc_allocator() function
58 malloc_allocator(const malloc_allocator<U> &) { } in malloc_allocator() function
Dtime_pool_alloc.cpp281 std::vector<int, malloc_allocator<int> > x; in timing_test_containers()
327 std::set<int, std::less<int>, malloc_allocator<int> > x; in timing_test_containers()
373 std::list<int, malloc_allocator<int> > x; in timing_test_containers()
/aosp_15_r20/external/libcxx/test/support/
H A Dmin_allocator.h109 class malloc_allocator : public malloc_allocator_base
114 malloc_allocator() TEST_NOEXCEPT { assert(!disable_default_constructor); } in malloc_allocator() function
117 malloc_allocator(malloc_allocator<U>) TEST_NOEXCEPT {} in malloc_allocator() function
131 friend bool operator==(malloc_allocator, malloc_allocator) {return true;}
132 friend bool operator!=(malloc_allocator x, malloc_allocator y) {return !(x == y);}
/aosp_15_r20/external/cronet/third_party/libc++/src/test/support/
H A Dmin_allocator.h114 class malloc_allocator : public malloc_allocator_base
119 malloc_allocator() TEST_NOEXCEPT { assert(!disable_default_constructor); } in malloc_allocator() function
122 malloc_allocator(malloc_allocator<U>) TEST_NOEXCEPT {} in malloc_allocator() function
140 friend bool operator==(malloc_allocator, malloc_allocator) {return true;}
141 friend bool operator!=(malloc_allocator x, malloc_allocator y) {return !(x == y);}
/aosp_15_r20/external/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/
H A Dstring_alloc.pass.cpp51 using MAlloc = malloc_allocator<CharT>; in doShortStringTest()
92 using MAlloc = malloc_allocator<CharT>; in doLongStringTest()
/aosp_15_r20/external/cronet/third_party/libc++/src/test/libcxx/input.output/filesystems/class.path/path.member/path.native.obs/
H A Dstring_alloc.pass.cpp64 using MAlloc = malloc_allocator<CharT>; in doShortStringTest()
105 using MAlloc = malloc_allocator<CharT>; in doLongStringTest()
/aosp_15_r20/external/libcxx/test/std/input.output/filesystems/class.path/path.member/path.generic.obs/
H A Dgeneric_string_alloc.pass.cpp42 using Alloc = malloc_allocator<CharT>; in main()
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/input.output/filesystems/class.path/path.member/path.generic.obs/
H A Dgeneric_string_alloc.pass.cpp46 using Alloc = malloc_allocator<CharT>; in doAllocTest()
/aosp_15_r20/external/tensorflow/tensorflow/lite/
H A Dinterpreter_builder.cc374 MallocDataAllocator malloc_allocator; in ParseNodes() local
376 &malloc_allocator, &builtin_data)); in ParseNodes()
/aosp_15_r20/external/cronet/third_party/libc++/src/test/libcxx/containers/sequences/deque/
H A Dspare_block_handling.pass.cpp45 using Deque = std::deque<T, malloc_allocator<T> >;
/aosp_15_r20/external/skia/bazel/rbe/gce_linux/cc/
H A Dmodule.modulemap897 textual header "/usr/include/c++/10/ext/malloc_allocator.h"
5004 textual header "/usr/include/c++/10/ext/malloc_allocator.h"
/aosp_15_r20/external/grpc-grpc/third_party/toolchains/rbe_ubuntu2004/cc/
H A Dmodule.modulemap1675 textual header "/usr/include/c++/9/ext/malloc_allocator.h"
3979 textual header "/usr/include/c++/9/ext/malloc_allocator.h"
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/toolchains/rbe_ubuntu2004/cc/
Dmodule.modulemap1675 textual header "/usr/include/c++/9/ext/malloc_allocator.h"
3979 textual header "/usr/include/c++/9/ext/malloc_allocator.h"
/aosp_15_r20/out/soong/
Dbuild.aosp_shiba.ninja.globs103759 …/host/x86_64-linux-glibc2.17-4.8/x86_64-linux/include/c++/4.8.3/ext/malloc_allocator.h","prebuilts…
106847malloc_allocator.h","Excludes":null,"Matches":["prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.1…
Dbuild.aosp_shiba.9.ninja977031 …c/linux-x86/host/x86_64-linux-glibc2.17-4.8/x86_64-linux/include/c++/4.8.3/ext/malloc_allocator.h $
1084760 …c/linux-x86/host/x86_64-linux-glibc2.17-4.8/x86_64-linux/include/c++/4.8.3/ext/malloc_allocator.h $
1192979 …c/linux-x86/host/x86_64-linux-glibc2.17-4.8/x86_64-linux/include/c++/4.8.3/ext/malloc_allocator.h $
1300708 …c/linux-x86/host/x86_64-linux-glibc2.17-4.8/x86_64-linux/include/c++/4.8.3/ext/malloc_allocator.h $