HomeSort by relevance Sort by last modified time
    Searched refs:allocator (Results 226 - 250 of 1067) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/
standard_policies.hpp 123 struct default_trie_e_access_traits<std::basic_string<Char, Char_Traits, std::allocator<char> > >
126 typedef std::basic_string<Char, Char_Traits, std::allocator<char> > string_type;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_construct.h 84 // 402. wrong new expression in [some_]allocator::construct
133 * Destroy a range of objects using the supplied allocator. For
138 template <typename _Tp> class allocator;
153 allocator<_Tp>&)
  /external/chromium_org/third_party/WebKit/Source/wtf/
TCPageMap.h 61 void init(void* (*allocator)(size_t)) {
62 array_ = reinterpret_cast<void**>((*allocator)(sizeof(void*) << BITS));
110 void* (*allocator_)(size_t); // Memory allocator
115 void init(void* (*allocator)(size_t)) {
116 allocator_ = allocator;
202 void* (*allocator_)(size_t); // Memory allocator
215 void init(void* (*allocator)(size_t)) {
216 allocator_ = allocator;
  /external/chromium_org/third_party/tcmalloc/vendor/src/
pagemap.h 72 explicit TCMalloc_PageMap1(void* (*allocator)(size_t)) {
73 array_ = reinterpret_cast<void**>((*allocator)(sizeof(void*) << BITS));
134 void* (*allocator_)(size_t); // Memory allocator
139 explicit TCMalloc_PageMap2(void* (*allocator)(size_t)) {
140 allocator_ = allocator;
229 void* (*allocator_)(size_t); // Memory allocator
242 explicit TCMalloc_PageMap3(void* (*allocator)(size_t)) {
243 allocator_ = allocator;
  /external/chromium_org/tools/deep_memory_profiler/tests/
dmprof_test.py 130 "allocator": "optional"
135 "allocator": "mmap"
140 "allocator": "malloc"
145 "allocator": "malloc"
150 "allocator": "mmap"
155 "allocator": "malloc"
  /external/clang/test/CodeGenCXX/
debug-info-use-after-free.cpp 99 template < typename _Tp > struct allocator:new_allocator < _Tp > { struct in inherits:new_allocator
113 allocator < _Tp > >struct vector:_Vector_base < _Tp, _Alloc > { };
139 template < typename _Tp > class allocator:__gnu_cxx::new_allocator < _Tp > { class in namespace:std
143 template < typename _Tp, typename _Alloc = std::allocator < _Tp > >class vector:_Vector_base < _Tp,
200 std::allocator;
205 allocator < _Tp > >class hash_map {
  /external/chromium_org/skia/ext/
image_operations.cc 344 SkBitmap::Allocator* allocator) {
347 dest_subset, allocator);
350 allocator);
358 SkBitmap::Allocator* allocator) {
389 height, subset, allocator);
398 result.allocPixels(allocator, NULL);
470 SkBitmap::Allocator* allocator) {
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/compiler/
Compiler.cpp 32 TScopedPoolAllocator(TPoolAllocator* allocator, bool pushPop)
33 : mAllocator(allocator), mPushPopAllocator(pushPop) {
49 allocator.push();
50 SetGlobalPoolAllocator(&allocator);
55 allocator.popAll();
84 TScopedPoolAllocator scopedAlloc(&allocator, false);
104 TScopedPoolAllocator scopedAlloc(&allocator, true);
  /external/chromium_org/third_party/libjingle/source/talk/p2p/client/
httpportallocator.cc 125 HttpPortAllocatorBase* allocator,
134 : BasicPortAllocatorSession(allocator, content_name, component,
156 if (allocator()->flags() & PORTALLOCATOR_DISABLE_RELAY) {
185 if (allocator()->flags() & PORTALLOCATOR_ENABLE_SHARED_UFRAG) {
262 HttpPortAllocator* allocator,
271 : HttpPortAllocatorSessionBase(allocator, content_name, component,
292 request->set_proxy(allocator()->proxy());
basicportallocator.cc 234 BasicPortAllocator *allocator,
240 ice_ufrag, ice_pwd, allocator->flags()),
241 allocator_(allocator), network_thread_(NULL),
242 socket_factory_(allocator->socket_factory()),
512 LOG_J(LS_INFO, port) << "Added port to allocator";
650 LOG_J(LS_INFO, port) << "Removed port from allocator ("
726 talk_base::SocketAddress(ip_, 0), session_->allocator()->min_port(),
727 session_->allocator()->max_port()));
824 session_->allocator()->step_delay(),
867 session_->allocator()->min_port()
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
pagemap.h 78 explicit TCMalloc_PageMap1(void* (*allocator)(size_t)) {
79 array_ = reinterpret_cast<void**>((*allocator)(sizeof(void*) << BITS));
165 explicit TCMalloc_PageMap1_LazyCommit(void* (*allocator)(size_t)) {
167 // only provides an allocator.
337 void* (*allocator_)(size_t); // Memory allocator
342 explicit TCMalloc_PageMap2(void* (*allocator)(size_t)) {
343 allocator_ = allocator;
432 void* (*allocator_)(size_t); // Memory allocator
445 explicit TCMalloc_PageMap3(void* (*allocator)(size_t)) {
446 allocator_ = allocator;
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
throw_allocator.h 39 * Contains an exception-throwing allocator, useful for testing
151 // allocator.
155 // See if a given label has been allocated by this allocator.
185 * @brief Allocator class with logging and exception control.
218 { return std::allocator<value_type>().max_size(); }
221 allocate(size_type __n, std::allocator<void>::const_pointer hint = 0)
227 value_type* const a = std::allocator<value_type>().allocate(__n, hint);
234 { return std::allocator<value_type>().construct(__p, val); }
241 return std::allocator<value_type>().
248 { std::allocator<value_type>().destroy(__p);
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/
throw_allocator.h 39 * Contains an exception-throwing allocator, useful for testing
151 // allocator.
155 // See if a given label has been allocated by this allocator.
185 * @brief Allocator class with logging and exception control.
218 { return std::allocator<value_type>().max_size(); }
221 allocate(size_type __n, std::allocator<void>::const_pointer hint = 0)
227 value_type* const a = std::allocator<value_type>().allocate(__n, hint);
234 { return std::allocator<value_type>().construct(__p, val); }
241 return std::allocator<value_type>().
248 { std::allocator<value_type>().destroy(__p);
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/
throw_allocator.h 39 * Contains an exception-throwing allocator, useful for testing
151 // allocator.
155 // See if a given label has been allocated by this allocator.
185 * @brief Allocator class with logging and exception control.
218 { return std::allocator<value_type>().max_size(); }
221 allocate(size_type __n, std::allocator<void>::const_pointer hint = 0)
227 value_type* const a = std::allocator<value_type>().allocate(__n, hint);
234 { return std::allocator<value_type>().construct(__p, val); }
241 return std::allocator<value_type>().
248 { std::allocator<value_type>().destroy(__p);
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/
throw_allocator.h 39 * Contains an exception-throwing allocator, useful for testing
151 // allocator.
155 // See if a given label has been allocated by this allocator.
185 * @brief Allocator class with logging and exception control.
218 { return std::allocator<value_type>().max_size(); }
221 allocate(size_type __n, std::allocator<void>::const_pointer hint = 0)
227 value_type* const a = std::allocator<value_type>().allocate(__n, hint);
234 { return std::allocator<value_type>().construct(__p, val); }
241 return std::allocator<value_type>().
248 { std::allocator<value_type>().destroy(__p);
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/
throw_allocator.h 39 * Contains an exception-throwing allocator, useful for testing
151 // allocator.
155 // See if a given label has been allocated by this allocator.
185 * @brief Allocator class with logging and exception control.
218 { return std::allocator<value_type>().max_size(); }
221 allocate(size_type __n, std::allocator<void>::const_pointer hint = 0)
227 value_type* const a = std::allocator<value_type>().allocate(__n, hint);
234 { return std::allocator<value_type>().construct(__p, val); }
241 return std::allocator<value_type>().
248 { std::allocator<value_type>().destroy(__p);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/
ImageDecoder.h 118 SkBitmap::Allocator* allocator() const { return m_allocator; }
135 void setMemoryAllocator(SkBitmap::Allocator* allocator) { m_allocator = allocator; }
194 SkBitmap::Allocator* m_allocator;
380 virtual void setMemoryAllocator(SkBitmap::Allocator* allocator)
388 m_frameBufferCache[0].setMemoryAllocator(allocator);
  /external/chromium_org/v8/src/
interface.cc 48 ZoneAllocationPolicy allocator(zone);
50 allocator);
90 ZoneAllocationPolicy allocator(zone);
94 allocator);
96 ZoneHashMap::Entry* p = (*map)->Lookup(name, hash, !IsFrozen(), allocator);
hydrogen-dce.cc 39 HeapStringAllocator allocator; local
40 StringStream stream(&allocator);
  /external/llvm/unittests/ADT/
IntervalMapTest.cpp 21 UUMap::Allocator allocator; local
22 UUMap map(allocator);
55 UUMap::Allocator allocator; local
56 UUMap map(allocator);
142 UUMap::Allocator allocator; local
143 UUMap map(allocator);
212 UUMap::Allocator allocator local
326 UUMap::Allocator allocator; local
469 UUMap::Allocator allocator; local
545 UUMap::Allocator allocator; local
569 UUMap::Allocator allocator; local
613 UUMap::Allocator allocator; local
    [all...]
  /external/llvm/include/llvm/Support/
Allocator.h 1 //===--- Allocator.h - Simple memory allocation abstraction -----*- C++ -*-===//
52 /// the bump allocator.
60 /// allocation strategy for the bump allocator. In particular, this is used
62 /// interface uses MemSlab's instead of void *'s so that the allocator
71 /// MallocSlabAllocator - The default slab allocator for the bump allocator
75 /// Allocator - The underlying allocator that we forward to.
77 MallocAllocator Allocator;
80 MallocSlabAllocator() : Allocator() { }
    [all...]
  /frameworks/native/libs/ui/
GraphicBuffer.cpp 104 GraphicBufferAllocator& allocator(GraphicBufferAllocator::get());
105 allocator.free(handle);
135 GraphicBufferAllocator& allocator(GraphicBufferAllocator::get());
136 allocator.free(handle);
145 GraphicBufferAllocator& allocator = GraphicBufferAllocator::get(); local
146 status_t err = allocator.alloc(w, h, format, reqUsage, &handle, &stride);
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
rawtransport.cc 45 PortAllocator* allocator)
47 NS_GINGLE_RAW, allocator) {
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
rawtransport.cc 46 PortAllocator* allocator)
48 content_name, NS_GINGLE_RAW, allocator) {
  /external/clang/test/Analysis/Inputs/
system-header-simulator-cxx.h 119 class allocator {}; class in namespace:std
125 template <class _Tp, class _Alloc = allocator<_Tp> >

Completed in 1677 milliseconds

1 2 3 4 5 6 7 8 91011>>