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

<<31323334353637383940>>

  /external/webrtc/webrtc/p2p/base/
transport.h 148 // If true, the most recent port allocator session will keep on running.
161 Transport(const std::string& name, PortAllocator* allocator);
167 // Returns the port allocator object for this transport.
  /frameworks/av/media/libstagefright/codec2/include/
C2Component.h 522 LINEAR, ///< basic linear allocator type
523 GRALLOC, ///< basic gralloc allocator type
527 * Creates an allocator.
529 * \param type the type of allocator to create
530 * \param allocator shared pointer where the created allocator is stored. Cleared on failure
533 * \retval C2_OK the allocator was created successfully
534 * \retval C2_TIMED_OUT could not create the allocator within the time limit (unexpected)
535 * \retval C2_CORRUPTED some unknown error prevented the creation of the allocator (unexpected)
537 * \retval C2_NOT_FOUND no such allocator
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
unordered_set.h 44 typename _Alloc = std::allocator<_Value>,
59 typename _Alloc = std::allocator<_Value>,
81 * @tparam _Alloc Allocator type, defaults to allocator<_Key>.
92 class _Alloc = std::allocator<_Value> >
129 * @param __a An allocator object.
146 * @param __a An allocator object.
173 * @param __a An allocator object.
212 /// Returns the allocator object with which the %unordered_set was
476 * @param __x An %unordered_set of the same element and allocator
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
unordered_set.h 44 typename _Alloc = std::allocator<_Value>,
59 typename _Alloc = std::allocator<_Value>,
81 * @tparam _Alloc Allocator type, defaults to allocator<_Key>.
92 class _Alloc = std::allocator<_Value> >
129 * @param __a An allocator object.
146 * @param __a An allocator object.
173 * @param __a An allocator object.
212 /// Returns the allocator object with which the %unordered_set was
476 * @param __x An %unordered_set of the same element and allocator
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
unordered_set.h 44 typename _Alloc = std::allocator<_Value>,
59 typename _Alloc = std::allocator<_Value>,
81 * @tparam _Alloc Allocator type, defaults to allocator<_Key>.
92 class _Alloc = std::allocator<_Value> >
129 * @param __a An allocator object.
146 * @param __a An allocator object.
173 * @param __a An allocator object.
212 /// Returns the allocator object with which the %unordered_set was
476 * @param __x An %unordered_set of the same element and allocator
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
mcache.go 22 // Allocator cache for tiny objects w/o pointers.
23 // See "Tiny allocator" comment in malloc.go.
40 // Local allocator stats, flushed during GC.
  /prebuilts/go/linux-x86/src/runtime/
mcache.go 22 // Allocator cache for tiny objects w/o pointers.
23 // See "Tiny allocator" comment in malloc.go.
40 // Local allocator stats, flushed during GC.
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
unordered_set.h 44 typename _Alloc = std::allocator<_Value>,
59 typename _Alloc = std::allocator<_Value>,
81 * @tparam _Alloc Allocator type, defaults to allocator<_Key>.
92 class _Alloc = std::allocator<_Value> >
129 * @param __a An allocator object.
146 * @param __a An allocator object.
169 * @param __a An allocator object.
177 * @brief Copy constructor with allocator argument.
179 * @param __a An allocator object
    [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/
_complex.c 93 basic_ostringstream<_CharT, _Traits, allocator<_CharT> > __tmp;
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/pointers/
_slist.h 40 _STLP_EXPORT_TEMPLATE_CLASS _STLP_alloc_proxy<_Slist_node_base, _VoidPtrSNode, allocator<_VoidPtrSNode> >;
41 _STLP_EXPORT_TEMPLATE_CLASS _Slist_base<void*, allocator<void*> >;
42 _STLP_EXPORT_TEMPLATE_CLASS SLIST_IMPL<void*, allocator<void*> >;
52 template <class _Tp, _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_Tp>) >
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
unordered_set.h 44 typename _Alloc = std::allocator<_Value>,
59 typename _Alloc = std::allocator<_Value>,
81 * @tparam _Alloc Allocator type, defaults to allocator<_Key>.
92 class _Alloc = std::allocator<_Value> >
129 * @param __a An allocator object.
146 * @param __a An allocator object.
169 * @param __a An allocator object.
177 * @brief Copy constructor with allocator argument.
179 * @param __a An allocator object
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/
types.pass.cpp 13 // class Allocator = allocator<pair<const Key, T>>>
22 // typedef Allocator allocator_type;
44 static_assert((std::is_same<std::map<int, double>::allocator_type, std::allocator<std::pair<const int, double> > >::value), "");
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/
types.pass.cpp 13 // class Allocator = allocator<pair<const Key, T>>>
22 // typedef Allocator allocator_type;
44 static_assert((std::is_same<std::multimap<int, double>::allocator_type, std::allocator<std::pair<const int, double> > >::value), "");
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/
_complex.c 93 basic_ostringstream<_CharT, _Traits, allocator<_CharT> > __tmp;
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/pointers/
_slist.h 40 _STLP_EXPORT_TEMPLATE_CLASS _STLP_alloc_proxy<_Slist_node_base, _VoidPtrSNode, allocator<_VoidPtrSNode> >;
41 _STLP_EXPORT_TEMPLATE_CLASS _Slist_base<void*, allocator<void*> >;
42 _STLP_EXPORT_TEMPLATE_CLASS SLIST_IMPL<void*, allocator<void*> >;
52 template <class _Tp, _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_Tp>) >
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
unordered_set.h 44 typename _Alloc = std::allocator<_Value>,
59 typename _Alloc = std::allocator<_Value>,
81 * @tparam _Alloc Allocator type, defaults to allocator<_Key>.
92 class _Alloc = std::allocator<_Value> >
129 * @param __a An allocator object.
146 * @param __a An allocator object.
169 * @param __a An allocator object.
177 * @brief Copy constructor with allocator argument.
179 * @param __a An allocator object
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_UTypes.pass.cpp 84 std::tuple<Explicit> t{std::allocator_arg, std::allocator<void>{}, 42};
135 // Check that uses-allocator construction is still selected when
148 // Stress test the SFINAE on the uses-allocator constructors and
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/
_complex.c 93 basic_ostringstream<_CharT, _Traits, allocator<_CharT> > __tmp;
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/pointers/
_slist.h 40 _STLP_EXPORT_TEMPLATE_CLASS _STLP_alloc_proxy<_Slist_node_base, _VoidPtrSNode, allocator<_VoidPtrSNode> >;
41 _STLP_EXPORT_TEMPLATE_CLASS _Slist_base<void*, allocator<void*> >;
42 _STLP_EXPORT_TEMPLATE_CLASS SLIST_IMPL<void*, allocator<void*> >;
52 template <class _Tp, _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_Tp>) >
  /system/core/libmemunreachable/
LeakFolding.cpp 19 #include "Allocator.h"
32 Allocator<SCCInfo> scc_allocator = allocator_;
35 Allocator<SCCInfo>::unique_ptr leak_scc;
73 Allocator<LeakInfo> leak_allocator = allocator_;
113 bool LeakFolding::Leaked(allocator::vector<LeakFolding::Leak>& leaked,
  /external/deqp/external/vulkancts/modules/vulkan/texture/
vktTextureTestUtil.cpp 306 Allocator& allocator = m_context.getDefaultAllocator(); local
369 m_textureImageMemory = allocator.allocate(getImageMemoryRequirements(vkd, vkDevice, *m_textureImage), MemoryRequirement::Any);
374 pipeline::uploadTestTexture(vkd, vkDevice, queue, queueFamilyIndex, allocator, *m_textureData, *m_textureImage);
429 Allocator& allocator = m_context.getDefaultAllocator(); local
486 m_imageMemory = allocator.allocate(getImageMemoryRequirements(vkd, vkDevice, *m_image), MemoryRequirement::Any);
551 m_resolvedImageMemory = allocator.allocate(getImageMemoryRequirements(vkd, vkDevice, *m_resolvedImage), MemoryRequirement::Any);
665 m_vertexIndexBufferMemory = allocator.allocate(getBufferMemoryRequirements(vkd, vkDevice, *m_vertexIndexBuffer), MemoryRequirement::HostVisible);
996 Allocator& allocator = m_context.getDefaultAllocator(); local
    [all...]
  /art/compiler/optimizing/
dead_code_elimination.cc 309 ArenaAllocator* allocator = graph_->GetArena(); local
310 ArenaBitVector live_blocks(allocator, graph_->GetBlocks().size(), false, kArenaAllocDCE);
  /art/runtime/entrypoints/quick/
quick_alloc_entrypoints.cc 194 void SetQuickAllocEntryPointsAllocator(gc::AllocatorType allocator) {
195 entry_points_allocator = allocator;
  /art/runtime/gc/space/
malloc_space.cc 199 void* allocator = CreateAllocator(End(), starting_size_, initial_size_, capacity, local
206 *out_malloc_space = CreateInstance(mem_map.release(), alloc_space_name, allocator, End(), end,
  /external/clang/test/SemaTemplate/
deduction.cpp 29 template<typename T> struct allocator { }; struct
30 template<typename T, typename Alloc = allocator<T> > struct vector {};

Completed in 1652 milliseconds

<<31323334353637383940>>