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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/cxx-lookup/
x.h 1 template <class T> class allocator;
2 struct X { virtual allocator<char> f(); };
y.h 4 extern allocator<ulittle32_t> *x;
  /external/skia/src/pathops/
SkOpTAllocator.h 16 static T* Allocate(SkArenaAlloc* allocator) {
17 return allocator->make<T>();
20 static T* AllocateArray(SkArenaAlloc* allocator, int count) {
21 return allocator->makeArrayDefault<T>(count);
24 static T* New(SkArenaAlloc* allocator) {
25 return allocator->make<T>();
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/
allocator_types.pass.cpp 15 // class allocator
26 // template <class U> struct rebind {typedef allocator<U> other;};
36 static_assert((std::is_same<std::allocator<char>::size_type, std::size_t>::value), "");
37 static_assert((std::is_same<std::allocator<char>::difference_type, std::ptrdiff_t>::value), "");
38 static_assert((std::is_same<std::allocator<char>::pointer, char*>::value), "");
39 static_assert((std::is_same<std::allocator<char>::const_pointer, const char*>::value), "");
40 static_assert((std::is_same<std::allocator<char>::value_type, char>::value), "");
41 static_assert((std::is_same<std::allocator<char>::reference, char&>::value), "");
42 static_assert((std::is_same<std::allocator<char>::const_reference, const char&>::value), "");
43 static_assert((std::is_same<std::allocator<char>::rebind<int>::other
    [all...]
allocator_void.pass.cpp 13 // class allocator<void>
20 // template <class _Up> struct rebind {typedef allocator<_Up> other;};
28 static_assert((std::is_same<std::allocator<void>::pointer, void*>::value), "");
29 static_assert((std::is_same<std::allocator<void>::const_pointer, const void*>::value), "");
30 static_assert((std::is_same<std::allocator<void>::value_type, void>::value), "");
31 static_assert((std::is_same<std::allocator<void>::rebind<int>::other,
32 std::allocator<int> >::value), "");
33 std::allocator<void> a;
34 std::allocator<void> a2 = a;
  /device/google/contexthub/firmware/os/core/
slab.c 31 struct SlabAllocator *allocator; local
42 allocator = (struct SlabAllocator*)heapAlloc(sizeof(struct SlabAllocator) + bitsetSz + dataSz);
43 if (allocator) {
44 allocator->itemSz = itemSz;
45 allocator->dataChunks = ((uint8_t*)allocator->bitset) + bitsetSz;
46 atomicBitsetInit(allocator->bitset, numItems);
49 return allocator;
52 void slabAllocatorDestroy(struct SlabAllocator *allocator)
54 heapFree(allocator);
    [all...]
  /device/google/contexthub/firmware/os/inc/
slab.h 29 void slabAllocatorDestroy(struct SlabAllocator *allocator);
30 void* slabAllocatorAlloc(struct SlabAllocator *allocator);
31 void slabAllocatorFree(struct SlabAllocator *allocator, void *ptr);
33 void* slabAllocatorGetNth(struct SlabAllocator *allocator, uint32_t idx); // -> pointer or NULL if that slot is empty may be not int-safe. YMMV
34 uint32_t slabAllocatorGetIndex(struct SlabAllocator *allocator, void *ptr); // -> index or -1 if invalid pointer
35 uint32_t slabAllocatorGetNumItems(struct SlabAllocator *allocator); // simply say hwo many items it can hold max (numItems passed to constructor)
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/src/
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> >;
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/src/
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> >;
  /external/libcxx/test/std/containers/sequences/deque/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::deque<int, std::allocator<long> > d;
  /external/libcxx/test/std/containers/sequences/forwardlist/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::forward_list<int, std::allocator<long> > fl;
  /external/libcxx/test/std/containers/sequences/list/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::list<int, std::allocator<long> > l;
  /external/libcxx/test/std/containers/sequences/vector/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::vector<int, std::allocator<long> > v;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::deque<int, std::allocator<long> > d;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/forwardlist/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::forward_list<int, std::allocator<long> > fl;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/list/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::list<int, std::allocator<long> > l;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::vector<int, std::allocator<long> > v;
  /external/libcxx/test/std/utilities/memory/default.allocator/
allocator_void.pass.cpp 13 // class allocator<void>
20 // template <class _Up> struct rebind {typedef allocator<_Up> other;};
28 static_assert((std::is_same<std::allocator<void>::pointer, void*>::value), "");
29 static_assert((std::is_same<std::allocator<void>::const_pointer, const void*>::value), "");
30 static_assert((std::is_same<std::allocator<void>::value_type, void>::value), "");
31 static_assert((std::is_same<std::allocator<void>::rebind<int>::other,
32 std::allocator<int> >::value), "");
33 std::allocator<void> a;
34 std::allocator<void> a2 = a;
allocator_types.pass.cpp 15 // class allocator
27 // template <class U> struct rebind {typedef allocator<U> other;};
39 static_assert((std::is_same<std::allocator<char>::size_type, std::size_t>::value), "");
40 static_assert((std::is_same<std::allocator<char>::difference_type, std::ptrdiff_t>::value), "");
41 static_assert((std::is_same<std::allocator<char>::pointer, char*>::value), "");
42 static_assert((std::is_same<std::allocator<char>::const_pointer, const char*>::value), "");
43 static_assert((std::is_same<std::allocator<char>::value_type, char>::value), "");
44 static_assert((std::is_same<std::allocator<char>::reference, char&>::value), "");
45 static_assert((std::is_same<std::allocator<char>::const_reference, const char&>::value), "");
46 static_assert((std::is_same<std::allocator<char>::rebind<int>::other
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/default.allocator/
allocator_void.pass.cpp 13 // class allocator<void>
20 // template <class _Up> struct rebind {typedef allocator<_Up> other;};
28 static_assert((std::is_same<std::allocator<void>::pointer, void*>::value), "");
29 static_assert((std::is_same<std::allocator<void>::const_pointer, const void*>::value), "");
30 static_assert((std::is_same<std::allocator<void>::value_type, void>::value), "");
31 static_assert((std::is_same<std::allocator<void>::rebind<int>::other,
32 std::allocator<int> >::value), "");
33 std::allocator<void> a;
34 std::allocator<void> a2 = a;
allocator_types.pass.cpp 15 // class allocator
27 // template <class U> struct rebind {typedef allocator<U> other;};
37 static_assert((std::is_same<std::allocator<char>::size_type, std::size_t>::value), "");
38 static_assert((std::is_same<std::allocator<char>::difference_type, std::ptrdiff_t>::value), "");
39 static_assert((std::is_same<std::allocator<char>::pointer, char*>::value), "");
40 static_assert((std::is_same<std::allocator<char>::const_pointer, const char*>::value), "");
41 static_assert((std::is_same<std::allocator<char>::value_type, char>::value), "");
42 static_assert((std::is_same<std::allocator<char>::reference, char&>::value), "");
43 static_assert((std::is_same<std::allocator<char>::const_reference, const char&>::value), "");
44 static_assert((std::is_same<std::allocator<char>::rebind<int>::other
    [all...]
  /external/libcxx/test/std/utilities/memory/default.allocator/allocator.globals/
eq.pass.cpp 12 // allocator:
16 // operator==(const allocator<T1>&, const allocator<T2>&) throw();
20 // operator!=(const allocator<T1>&, const allocator<T2>&) throw();
27 std::allocator<int> a1;
28 std::allocator<int> a2;
  /hardware/interfaces/graphics/allocator/2.0/default/
Gralloc.h 20 #include <android/hardware/graphics/allocator/2.0/IAllocator.h>
25 namespace allocator { namespace in namespace:android::hardware::graphics
33 } // namespace allocator
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
memoryfwd.h 64 class allocator;
67 class allocator<void>;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
memoryfwd.h 64 class allocator;
67 class allocator<void>;

Completed in 907 milliseconds

1 2 3 4 5 6 7 8 91011>>