Searched refs:allocator (Results 101 - 125 of 167) sorted by relevance

1234567

/external/webkit/Source/JavaScriptCore/assembler/
H A DARMAssembler.cpp346 void* ARMAssembler::executableCopy(ExecutablePool* allocator) argument
353 char* data = reinterpret_cast<char*>(m_buffer.executableCopy(allocator));
/external/openfst/src/include/fst/
H A Dcache.h55 // A simple allocator class, can be overridden as needed,
117 explicit CacheBaseImpl(C *allocator = 0)
124 allocator_ = allocator ? allocator : new C();
127 explicit CacheBaseImpl(const CacheOptions &opts, C *allocator = 0)
133 allocator_ = allocator ? allocator : new C();
186 // With Default allocator, the Free and Allocate will reuse the same S*.
/external/stlport/stlport/stl/pointers/
H A D_set.h41 _STLP_EXPORT_TEMPLATE_CLASS _STLP_alloc_proxy<_Rb_tree_node_base, _Node, allocator<_Node> >;
42 _STLP_EXPORT_TEMPLATE_CLASS _Rb_tree_base<void*, allocator<void*> >;
47 _SetTraitsT<void*>, allocator<void*> >;
51 _SetTraitsT<void*>, allocator<void*> >;
56 _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_Key>) >
303 _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_Key>) >
/external/webkit/Source/JavaScriptCore/wtf/
H A DListHashSet.h221 void* operator new(size_t, NodeAllocator* allocator) argument
223 return allocator->allocate();
225 void destroy(NodeAllocator* allocator) argument
228 allocator->deallocate(this);
369 static void translate(Node*& location, const ValueType& key, NodeAllocator* allocator) argument
371 location = new (allocator) Node(key);
/external/skia/src/core/
H A DSkBitmap.cpp362 bool SkBitmap::allocPixels(Allocator* allocator, SkColorTable* ctable) { argument
365 if (NULL == allocator) {
366 allocator = &stdalloc;
368 return allocator->allocPixelRef(this, ctable);
426 /** We explicitly use the same allocator for our pixels that SkMask does,
917 // allocator/lock failed
1294 Allocator *allocator, SkIPoint* offset) const {
1319 if (!tmpBitmap.allocPixels(allocator, NULL)) {
1343 if (!tmpBitmap.allocPixels(allocator, NULL)) {
1293 extractAlpha(SkBitmap* dst, const SkPaint* paint, Allocator *allocator, SkIPoint* offset) const argument
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dtransport.cc84 PortAllocator* allocator)
86 worker_thread_(worker_thread), type_(type), allocator_(allocator),
81 Transport(talk_base::Thread* signaling_thread, talk_base::Thread* worker_thread, const std::string& type, PortAllocator* allocator) argument
H A Dp2ptransportchannel.cc62 // We will try creating a new allocator from scratch after a delay of this
165 PortAllocator *allocator) :
168 allocator_(allocator),
186 // Add the allocator session to our list so that we know which sessions
209 // Kick off an allocator session
501 // Time for a new allocator, lets make sure we have a signalling channel
684 // were writable, go into the connecting state (kick off a new allocator
691 // If we were writable, let's kick off an allocator session immediately
702 // but they were also timed out, we really need a new allocator.
708 // We weren't timed out before, so kick off an allocator no
162 P2PTransportChannel(const std::string &name, const std::string &content_type, P2PTransport* transport, PortAllocator *allocator) argument
[all...]
/external/stlport/stlport/stl/
H A D_monetary.h58 typedef basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > string_type;
392 typedef basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > string_type;
H A D_pthread_alloc.h30 * Pthread-specific node allocator.
31 * This is similar to the default allocator, except that free-list
45 # error POSIX specific allocator implementation. Your system do not seems to \
51 # error You cannot use per thread allocator implementation without building \
65 // Pthread-specific allocator.
98 typedef pthread_alloc _S_Alloc; // The underlying allocator.
163 * This method do not have to be part of a user defined allocator implementation
244 //The default allocator implementation which is recognize thanks to the
272 // per_thread_allocator<> : this allocator always return memory to the same thread
278 typedef pthread_alloc _S_Alloc; // The underlying allocator
[all...]
H A Dchar_traits.h53 template <class _Tp> class allocator;
H A D_rope.h91 template<class _CharT, _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_CharT>) > class rope;
426 // an allocator.
483 // the proper allocator and the properly padded size.
705 _ROPE_SWAP_SPECIALIZATION(char, allocator<char>)
708 _ROPE_SWAP_SPECIALIZATION(wchar_t, allocator<wchar_t>)
1193 // Allocate and construct a RopeLeaf using the supplied allocator
2297 typedef rope<char, allocator<char> > crope;
2299 typedef rope<wchar_t, allocator<wchar_t> > wrope;
2355 inline void rotate(_Rope_iterator<char, allocator<char> > __first,
2356 _Rope_iterator<char, allocator<cha
[all...]
H A D_set.h45 _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_Key>) >
215 _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_Key>) >
H A D_unordered_set.h36 _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_Value>) >
186 _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_Value>) >
/external/chromium/third_party/libjingle/source/talk/xmpp/
H A Dxmppengineimpl_iq.cc90 std::vector<XmppIqEntry*, std::allocator<XmppIqEntry*> >::iterator pos;
/external/clang/test/Analysis/
H A Dsystem-header-simulator-objc.h112 extern CFMutableDictionaryRef CFDictionaryCreateMutable(CFAllocatorRef allocator, CFIndex capacity, const CFDictionaryKeyCallBacks *keyCallBacks, const CFDictionaryValueCallBacks *valueCallBacks);
/external/qemu/elff/
H A Delf_file.h85 /* Gets DWARF objects allocator for this instance. */
86 class ElfAllocator* allocator() const { function in class:ElfFile
519 /* DWARF objects allocator for this instance. */
/external/v8/src/
H A Disolate.cc41 #include "lithium-allocator.h"
505 HeapStringAllocator allocator; local
507 StringStream accumulator(&allocator);
673 StringAllocator* allocator; local
675 allocator = new HeapStringAllocator();
677 allocator = preallocated_message_space_;
681 StringStream accumulator(allocator);
691 delete allocator;
H A Dhydrogen.h1267 HPhase(const char* name, LAllocator* allocator) { argument
1268 Begin(name, NULL, NULL, allocator);
1279 LAllocator* allocator);
1296 void TraceLiveRanges(const char* name, LAllocator* allocator);
H A Dprofile-generator.cc1516 entry_info->entry = entry_info->allocator->AllocateEntry(
1540 HeapThing thing, HeapEntriesAllocator* allocator, HeapEntry* entry) {
1543 cache_entry->value = new EntryInfo(entry, allocator);
2923 HeapEntry* AddEntry(HeapThing ptr, HeapEntriesAllocator* allocator) { argument
2924 entries_->Pair(ptr, allocator, HeapEntriesMap::kHeapEntryPlaceholder);
2930 HeapEntry* FindOrAddEntry(HeapThing ptr, HeapEntriesAllocator* allocator) { argument
2932 return entry != NULL ? entry : AddEntry(ptr, allocator);
2976 HeapEntry* AddEntry(HeapThing ptr, HeapEntriesAllocator* allocator) { argument
2983 HeapEntry* FindOrAddEntry(HeapThing ptr, HeapEntriesAllocator* allocator) { argument
2985 return entry != NULL ? entry : AddEntry(ptr, allocator);
1539 Pair( HeapThing thing, HeapEntriesAllocator* allocator, HeapEntry* entry) argument
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_report.cc191 if (allocator()->PointerIsMine((void*)addr)) {
198 loc->addr = (uptr)allocator()->GetBlockBegin((void*)addr);
/external/stlport/src/
H A Dlocale_catalog.cpp151 pair<_DBG_iter<_NonDbg_hashtable<pair<const string,pair<void *,unsigned int> >,string,hash<string>,_HashMapTraitsT<pair<const string,pair<void *,unsigned int> > >,_Select1st<pair<const string,pair<void *,unsigned int> > >,_DbgEqual<string,equal_to<string> >,allocator<pair<const string,pair<void *,unsigned int> > > >,_DbgTraits<_NonLocalHashMapTraitsT<pair<const string,pair<void *,unsigned int> > > > >, bool> result;
/external/stlport/stlport/stl/debug/
H A D_string.h798 _STLP_EXPORT_TEMPLATE_CLASS __construct_checker<_STLP_NON_DBG_STRING_NAME <char, char_traits<char>, allocator<char> > >;
800 _STLP_EXPORT_TEMPLATE_CLASS basic_string<char, char_traits<char>, allocator<char> >;
803 _STLP_EXPORT_TEMPLATE_CLASS __construct_checker<_STLP_NON_DBG_STRING_NAME <wchar_t, char_traits<wchar_t>, allocator<wchar_t> > >;
805 _STLP_EXPORT_TEMPLATE_CLASS basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
/external/webkit/Source/WebCore/platform/graphics/win/
H A DMediaPlayerPrivateQuickTimeVisualContext.cpp805 static CFDictionaryRef QTCFDictionaryCreateWithDataCallback(CFAllocatorRef allocator, const UInt8* bytes, CFIndex length) argument
807 RetainPtr<CFDataRef> data(AdoptCF, CFDataCreateWithBytesNoCopy(allocator, bytes, length, kCFAllocatorNull));
811 return reinterpret_cast<CFDictionaryRef>(CFPropertyListCreateFromXMLData(allocator, data.get(), kCFPropertyListImmutable, 0));
/external/qemu/
H A Dconsole.c1394 ds->allocator = &default_allocator;
1422 if(ds->allocator == &default_allocator) {
1427 ds->allocator = da;
1429 return ds->allocator;
1442 ds->allocator = &default_allocator;
/external/clang/lib/CodeGen/
H A DCGExprCXX.cpp1157 FunctionDecl *allocator = E->getOperatorNew(); local
1159 allocator->getType()->castAs<FunctionProtoType>();
1211 // Emit the allocation call. If the allocator is a global placement
1214 if (allocator->isReservedGlobalPlacementOperator()) {
1222 CGM.GetAddrOfFunction(allocator), ReturnValueSlot(),
1223 allocatorArgs, allocator);

Completed in 537 milliseconds

1234567