HomeSort by relevance Sort by last modified time
    Searched refs:allocator (Results 526 - 550 of 1382) sorted by null

<<21222324252627282930>>

  /frameworks/native/vulkan/libvulkan/
debug_report.h 47 const VkAllocationCallbacks& allocator);
48 void RemoveCallback(Node* node, const VkAllocationCallbacks& allocator);
  /libcore/luni/src/test/java/libcore/util/
NativeAllocationRegistryTest.java 72 NativeAllocationRegistry.Allocator allocator local
73 = new NativeAllocationRegistry.Allocator() {
79 registry.registerNativeAllocation(alloc, allocator);
166 new NativeAllocationRegistry.Allocator() {
178 new NativeAllocationRegistry.Allocator() {
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
stack.h 28 /*! \tparam Allocator Allocator for allocating stack memory.
30 template <typename Allocator>
35 Stack(Allocator* allocator, size_t stackCapacity) : allocator_(allocator), ownAllocator_(0), stack_(0), stackTop_(0), stackEnd_(0), initialCapacity_(stackCapacity) {
99 Allocator::Free(stack_);
141 Allocator& GetAllocator() {
156 ownAllocator_ = allocator_ = RAPIDJSON_NEW(Allocator());
177 Allocator::Free(stack_);
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/std/
std_deque.i 52 template<class _Tp, class _Alloc = allocator<_Tp> >
std_map.i 67 class _Alloc = allocator<std::pair<const _Key, _Tp > > >
std_multimap.i 45 class _Alloc = allocator<std::pair<const _Key, _Tp > > >
std_set.i 80 class _Alloc = allocator<_Key> >
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/
types.pass.cpp 14 // template <class T, class Allocator = allocator<T> >
19 // typedef Allocator allocator_type;
40 template <class T, class Allocator>
44 typedef std::deque<T, Allocator> C;
47 static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), "");
48 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), "");
49 static_assert((std::is_same<typename C::size_type, typename Allocator::size_type>::value), "");
50 static_assert((std::is_same<typename C::difference_type, typename Allocator::difference_type>::value), "");
51 static_assert((std::is_same<typename C::reference, typename Allocator::reference>::value), "")
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/
types.pass.cpp 14 // template <class T, class Allocator = allocator<T> >
19 // typedef Allocator allocator_type;
40 template <class T, class Allocator>
44 typedef std::deque<T, Allocator> C;
47 static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), "");
48 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), "");
49 static_assert((std::is_same<typename C::size_type, typename Allocator::size_type>::value), "");
50 static_assert((std::is_same<typename C::difference_type, typename Allocator::difference_type>::value), "");
51 static_assert((std::is_same<typename C::reference, typename Allocator::reference>::value), "")
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector/
types.pass.cpp 14 // template <class T, class Allocator = allocator<T> >
19 // typedef Allocator allocator_type;
42 template <class T, class Allocator>
46 typedef std::vector<T, Allocator> C;
49 // blindly pulling typedefs out of the allocator. This is why we can't call
52 static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), "");
53 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), "");
54 static_assert((std::is_same<typename C::size_type, typename Allocator::size_type>::value), "");
55 static_assert((std::is_same<typename C::difference_type, typename Allocator::difference_type>::value), "")
    [all...]
  /art/runtime/gc/allocator/
dlmalloc.cc 46 return ::art::gc::allocator::ArtDlMallocMoreCore(m, increment);
  /external/ImageMagick/Magick++/lib/
Blob.cpp 115 Magick::Blob::Allocator allocator_)
123 _blobRef->allocator=allocator_;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_internal.h 120 explicit LLVMSymbolizer(const char *path, LowLevelAllocator *allocator);
  /external/dng_sdk/source/
dng_gain_map.h 53 /// Construct a gain map with the specified memory allocator, number of
56 dng_gain_map (dng_memory_allocator &allocator,
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_dumper.h 102 PageAllocator* allocator() { return &allocator_; } function in class:google_breakpad::LinuxDumper
  /external/libcxx/test/std/containers/sequences/deque/deque.cons/
iter_iter.pass.cpp 27 typedef std::allocator<T> Allocator;
28 typedef std::deque<T, Allocator> C;
37 template <class Allocator, class InputIterator>
42 typedef std::deque<T, Allocator> C;
  /external/libcxx/test/std/containers/sequences/list/list.cons/
default.pass.cpp 32 std::list<int> l((std::allocator<int>()));
size_value_alloc.pass.cpp 12 // list(size_type n, const T& value, const Allocator& = Allocator());
34 std::list<int> l(3, 2, std::allocator<int>());
  /external/libcxx/test/std/containers/sequences/vector/vector.cons/
construct_iter_iter_alloc.pass.cpp 56 std::allocator<int> alloc;
  /external/libcxx/test/std/containers/sequences/vector.bool/
construct_iter_iter_alloc.pass.cpp 40 std::allocator<bool> alloc;
  /external/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/
do_is_equal.pass.cpp 36 typedef std::allocator<char> Alloc2;
69 // different allocator types
  /external/protobuf/src/google/protobuf/stubs/
hash.h 214 typename Alloc = std::allocator< std::pair<const Key, Data> > >
273 typename Alloc = std::allocator< std::pair<const Key, Data> > >
304 typename Alloc = std::allocator< std::pair<const Key, Data> > >
367 typename Alloc = std::allocator< std::pair<const Key, Data> > >
  /external/skia/include/core/
SkImageGenerator.h 159 bool tryGenerateBitmap(SkBitmap* bm, const SkImageInfo& info, SkBitmap::Allocator* allocator);
  /external/v8/src/
background-parsing-task.cc 32 Zone* zone = new Zone(isolate->allocator(), ZONE_NAME);
  /external/v8/src/compiler/
graph-replay.cc 23 Zone zone(graph->zone()->allocator(), ZONE_NAME);

Completed in 1312 milliseconds

<<21222324252627282930>>