HomeSort by relevance Sort by last modified time
    Searched full:allocator (Results 1 - 25 of 4014) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/gpu/command_buffer/common/
id_allocator_test.cc 25 IdAllocator *allocator = id_allocator(); local
27 EXPECT_FALSE(allocator->InUse(1));
30 ResourceId id1 = allocator->AllocateID();
31 EXPECT_TRUE(allocator->InUse(id1));
35 ResourceId id2 = allocator->AllocateID();
36 EXPECT_TRUE(allocator->InUse(id2));
40 allocator->FreeID(id1);
41 EXPECT_FALSE(allocator->InUse(id1));
44 allocator->FreeID(id2);
45 EXPECT_FALSE(allocator->InUse(id2))
50 IdAllocator *allocator = id_allocator(); local
74 IdAllocator* allocator = id_allocator(); local
92 IdAllocator* allocator = id_allocator(); local
104 IdAllocator* allocator = id_allocator(); local
114 IdAllocator* allocator = id_allocator(); local
    [all...]
  /art/test/074-gc-thrash/
info.txt 1 This thrashes the memory allocator and garbage collector for a brief period.
  /dalvik/tests/074-gc-thrash/
info.txt 1 This thrashes the memory allocator and garbage collector for a brief period.
  /external/chromium_org/tools/deep_memory_profiler/
policy.l0.json 42 "allocator": "optional"
47 "allocator": "mmap"
52 "allocator": "mmap"
57 "allocator": "mmap"
62 "allocator": "optional"
67 "allocator": "optional"
72 "allocator": "optional"
77 "allocator": "unhooked"
83 "allocator": "unhooked"
88 "allocator": "unhooked
    [all...]
policy.l1.json 49 "allocator": "optional"
54 "allocator": "mmap"
59 "allocator": "mmap"
64 "allocator": "mmap"
69 "allocator": "optional"
74 "allocator": "optional"
79 "allocator": "optional"
84 "allocator": "unhooked"
90 "allocator": "unhooked"
95 "allocator": "unhooked
    [all...]
policy.android.browser.json 65 "allocator": "optional"
70 "allocator": "mmap"
75 "allocator": "mmap"
80 "allocator": "mmap"
85 "allocator": "optional"
90 "allocator": "optional"
95 "allocator": "optional"
100 "allocator": "unhooked"
105 "allocator": "unhooked"
110 "allocator": "unhooked
    [all...]
policy.t0.json 48 "allocator": "optional"
53 "allocator": "mmap"
58 "allocator": "mmap"
63 "allocator": "mmap"
68 "allocator": "optional"
73 "allocator": "optional"
78 "allocator": "optional"
83 "allocator": "unhooked"
89 "allocator": "unhooked"
94 "allocator": "unhooked
    [all...]
policy.sourcefile.json 46 "allocator": "optional"
51 "allocator": "mmap"
56 "allocator": "mmap"
61 "allocator": "mmap"
66 "allocator": "optional"
71 "allocator": "optional"
76 "allocator": "optional"
81 "allocator": "unhooked"
87 "allocator": "unhooked"
92 "allocator": "unhooked
    [all...]
policy.android.renderer.json 92 "allocator": "optional"
97 "allocator": "mmap"
102 "allocator": "mmap"
107 "allocator": "mmap"
112 "allocator": "optional"
117 "allocator": "optional"
122 "allocator": "optional"
127 "allocator": "unhooked"
132 "allocator": "unhooked"
137 "allocator": "unhooked
    [all...]
policy.l2.json 78 "allocator": "optional"
83 "allocator": "mmap"
88 "allocator": "mmap"
93 "allocator": "mmap"
98 "allocator": "optional"
103 "allocator": "optional"
108 "allocator": "optional"
113 "allocator": "unhooked"
119 "allocator": "unhooked"
124 "allocator": "unhooked"
    [all...]
  /external/stlport/src/
string.cpp 33 template class _STLP_CLASS_DECLSPEC allocator<char>; variable in typeref:class:_STLP_CLASS_DECLSPEC
37 template class _STLP_CLASS_DECLSPEC _STLP_alloc_proxy<char*, char, allocator<char> >;
38 template class _STLP_CLASS_DECLSPEC _String_base<char, allocator<char> >;
43 template class _STLP_CLASS_DECLSPEC basic_string<char, char_traits<char>, allocator<char> >;
44 template class _STLP_CLASS_DECLSPEC __construct_checker<basic_string<char, char_traits<char>, allocator<char> > >;
55 template class _STLP_CLASS_DECLSPEC basic_string<char, char_traits<char>, allocator<char> >;
63 template class _STLP_CLASS_DECLSPEC allocator<wchar_t>; variable in typeref:class:_STLP_CLASS_DECLSPEC
67 template class _STLP_CLASS_DECLSPEC _String_base<wchar_t, allocator<wchar_t> >;
72 template class _STLP_CLASS_DECLSPEC basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
73 template class _STLP_CLASS_DECLSPEC __construct_checker<basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > >
    [all...]
sstream.cpp 27 template class _STLP_CLASS_DECLSPEC basic_stringbuf<char, char_traits<char>, allocator<char> >;
28 template class _STLP_CLASS_DECLSPEC basic_ostringstream<char, char_traits<char>, allocator<char> >;
29 template class _STLP_CLASS_DECLSPEC basic_istringstream<char, char_traits<char>, allocator<char> >;
30 template class _STLP_CLASS_DECLSPEC basic_stringstream<char, char_traits<char>, allocator<char> >;
33 template class _STLP_CLASS_DECLSPEC basic_stringbuf<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
34 template class _STLP_CLASS_DECLSPEC basic_ostringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
35 template class _STLP_CLASS_DECLSPEC basic_istringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
36 template class _STLP_CLASS_DECLSPEC basic_stringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
  /ndk/sources/cxx-stl/stlport/src/
string.cpp 33 template class _STLP_CLASS_DECLSPEC allocator<char>; variable in typeref:class:_STLP_CLASS_DECLSPEC
37 template class _STLP_CLASS_DECLSPEC _STLP_alloc_proxy<char*, char, allocator<char> >;
38 template class _STLP_CLASS_DECLSPEC _String_base<char, allocator<char> >;
43 template class _STLP_CLASS_DECLSPEC basic_string<char, char_traits<char>, allocator<char> >;
44 template class _STLP_CLASS_DECLSPEC __construct_checker<basic_string<char, char_traits<char>, allocator<char> > >;
55 template class _STLP_CLASS_DECLSPEC basic_string<char, char_traits<char>, allocator<char> >;
63 template class _STLP_CLASS_DECLSPEC allocator<wchar_t>; variable in typeref:class:_STLP_CLASS_DECLSPEC
67 template class _STLP_CLASS_DECLSPEC _String_base<wchar_t, allocator<wchar_t> >;
72 template class _STLP_CLASS_DECLSPEC basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
73 template class _STLP_CLASS_DECLSPEC __construct_checker<basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > >
    [all...]
sstream.cpp 27 template class _STLP_CLASS_DECLSPEC basic_stringbuf<char, char_traits<char>, allocator<char> >;
28 template class _STLP_CLASS_DECLSPEC basic_ostringstream<char, char_traits<char>, allocator<char> >;
29 template class _STLP_CLASS_DECLSPEC basic_istringstream<char, char_traits<char>, allocator<char> >;
30 template class _STLP_CLASS_DECLSPEC basic_stringstream<char, char_traits<char>, allocator<char> >;
33 template class _STLP_CLASS_DECLSPEC basic_stringbuf<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
34 template class _STLP_CLASS_DECLSPEC basic_ostringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
35 template class _STLP_CLASS_DECLSPEC basic_istringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
36 template class _STLP_CLASS_DECLSPEC basic_stringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/container/
container_fwd.hpp 52 ,class Allocator = std::allocator<T> >
57 ,class Allocator = std::allocator<T> >
62 ,class Allocator = std::allocator<T> >
67 ,class Allocator = std::allocator<T> >
72 ,class Allocator = std::allocator<T>
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/
priority_queue_base_dispatch.hpp 55 template<typename Value_Type, typename Cmp_Fn, typename Tag, typename Allocator>
58 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
59 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, pairing_heap_tag, Allocator>
61 typedef pairing_heap_< Value_Type, Cmp_Fn, Allocator> type;
64 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
65 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, binomial_heap_tag, Allocator>
67 typedef binomial_heap_< Value_Type, Cmp_Fn, Allocator> type;
70 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
71 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, rc_binomial_heap_tag, Allocator>
73 typedef rc_binomial_heap_< Value_Type, Cmp_Fn, Allocator> type
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/
priority_queue_base_dispatch.hpp 55 template<typename Value_Type, typename Cmp_Fn, typename Tag, typename Allocator>
58 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
59 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, pairing_heap_tag, Allocator>
61 typedef pairing_heap_< Value_Type, Cmp_Fn, Allocator> type;
64 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
65 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, binomial_heap_tag, Allocator>
67 typedef binomial_heap_< Value_Type, Cmp_Fn, Allocator> type;
70 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
71 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, rc_binomial_heap_tag, Allocator>
73 typedef rc_binomial_heap_< Value_Type, Cmp_Fn, Allocator> type
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/
priority_queue_base_dispatch.hpp 55 template<typename Value_Type, typename Cmp_Fn, typename Tag, typename Allocator>
58 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
59 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, pairing_heap_tag, Allocator>
61 typedef pairing_heap_< Value_Type, Cmp_Fn, Allocator> type;
64 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
65 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, binomial_heap_tag, Allocator>
67 typedef binomial_heap_< Value_Type, Cmp_Fn, Allocator> type;
70 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
71 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, rc_binomial_heap_tag, Allocator>
73 typedef rc_binomial_heap_< Value_Type, Cmp_Fn, Allocator> type
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/
priority_queue_base_dispatch.hpp 55 template<typename Value_Type, typename Cmp_Fn, typename Tag, typename Allocator>
58 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
59 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, pairing_heap_tag, Allocator>
61 typedef pairing_heap_< Value_Type, Cmp_Fn, Allocator> type;
64 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
65 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, binomial_heap_tag, Allocator>
67 typedef binomial_heap_< Value_Type, Cmp_Fn, Allocator> type;
70 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
71 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, rc_binomial_heap_tag, Allocator>
73 typedef rc_binomial_heap_< Value_Type, Cmp_Fn, Allocator> type
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/
priority_queue_base_dispatch.hpp 55 template<typename Value_Type, typename Cmp_Fn, typename Tag, typename Allocator>
58 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
59 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, pairing_heap_tag, Allocator>
61 typedef pairing_heap_< Value_Type, Cmp_Fn, Allocator> type;
64 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
65 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, binomial_heap_tag, Allocator>
67 typedef binomial_heap_< Value_Type, Cmp_Fn, Allocator> type;
70 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
71 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, rc_binomial_heap_tag, Allocator>
73 typedef rc_binomial_heap_< Value_Type, Cmp_Fn, Allocator> type
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/
priority_queue_base_dispatch.hpp 55 template<typename Value_Type, typename Cmp_Fn, typename Tag, typename Allocator>
58 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
59 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, pairing_heap_tag, Allocator>
61 typedef pairing_heap_< Value_Type, Cmp_Fn, Allocator> type;
64 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
65 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, binomial_heap_tag, Allocator>
67 typedef binomial_heap_< Value_Type, Cmp_Fn, Allocator> type;
70 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
71 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, rc_binomial_heap_tag, Allocator>
73 typedef rc_binomial_heap_< Value_Type, Cmp_Fn, Allocator> type
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/
priority_queue_base_dispatch.hpp 55 template<typename Value_Type, typename Cmp_Fn, typename Tag, typename Allocator>
58 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
59 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, pairing_heap_tag, Allocator>
61 typedef pairing_heap_< Value_Type, Cmp_Fn, Allocator> type;
64 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
65 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, binomial_heap_tag, Allocator>
67 typedef binomial_heap_< Value_Type, Cmp_Fn, Allocator> type;
70 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
71 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, rc_binomial_heap_tag, Allocator>
73 typedef rc_binomial_heap_< Value_Type, Cmp_Fn, Allocator> type
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/
priority_queue_base_dispatch.hpp 55 template<typename Value_Type, typename Cmp_Fn, typename Tag, typename Allocator>
58 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
59 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, pairing_heap_tag, Allocator>
61 typedef pairing_heap_< Value_Type, Cmp_Fn, Allocator> type;
64 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
65 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, binomial_heap_tag, Allocator>
67 typedef binomial_heap_< Value_Type, Cmp_Fn, Allocator> type;
70 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
71 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, rc_binomial_heap_tag, Allocator>
73 typedef rc_binomial_heap_< Value_Type, Cmp_Fn, Allocator> type
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/
priority_queue_base_dispatch.hpp 55 template<typename Value_Type, typename Cmp_Fn, typename Tag, typename Allocator>
58 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
59 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, pairing_heap_tag, Allocator>
61 typedef pairing_heap_< Value_Type, Cmp_Fn, Allocator> type;
64 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
65 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, binomial_heap_tag, Allocator>
67 typedef binomial_heap_< Value_Type, Cmp_Fn, Allocator> type;
70 template<typename Value_Type, typename Cmp_Fn, typename Allocator>
71 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, rc_binomial_heap_tag, Allocator>
73 typedef rc_binomial_heap_< Value_Type, Cmp_Fn, Allocator> type
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/
size.pass.cpp 21 template <class T, class Allocator>
25 typedef std::deque<T, Allocator> C;
43 test<DefaultOnly, std::allocator<DefaultOnly> >(0);
44 test<DefaultOnly, std::allocator<DefaultOnly> >(1);
45 test<DefaultOnly, std::allocator<DefaultOnly> >(10);
46 test<DefaultOnly, std::allocator<DefaultOnly> >(1023);
47 test<DefaultOnly, std::allocator<DefaultOnly> >(1024);
48 test<DefaultOnly, std::allocator<DefaultOnly> >(1025);
49 test<DefaultOnly, std::allocator<DefaultOnly> >(2047);
50 test<DefaultOnly, std::allocator<DefaultOnly> >(2048)
    [all...]

Completed in 2581 milliseconds

1 2 3 4 5 6 7 8 91011>>