HomeSort by: relevance | last modified time | path
    Searched refs:allocator (Results 1 - 25 of 448) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/
allocator-inst.cc 35 template class allocator<char>;
36 template class allocator<wchar_t>;
ext-inst.cc 42 rope<char, std::allocator<char> >::_S_min_len[min_len];
46 rope<char, std::allocator<char> >::
47 _S_fetch(_Rope_RopeRep<char, std::allocator<char> >*, size_type);
52 rope<wchar_t, std::allocator<wchar_t> >::_S_min_len[min_len];
56 rope<wchar_t, std::allocator<wchar_t> >::
57 _S_fetch(_Rope_RopeRep<wchar_t, std::allocator<wchar_t> >*, size_type);
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/
allocator-inst.cc 35 template class allocator<char>;
36 template class allocator<wchar_t>;
ext-inst.cc 42 rope<char, std::allocator<char> >::_S_min_len[min_len];
46 rope<char, std::allocator<char> >::
47 _S_fetch(_Rope_RopeRep<char, std::allocator<char> >*, size_type);
52 rope<wchar_t, std::allocator<wchar_t> >::_S_min_len[min_len];
56 rope<wchar_t, std::allocator<wchar_t> >::
57 _S_fetch(_Rope_RopeRep<wchar_t, std::allocator<wchar_t> >*, size_type);
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/building_blocks/
package.d 3 $(H2 Assembling Your Own Allocator)
28 unsupported methods to always fail. For example, an allocator that lacks the
32 allocator's capabilities and allows them to make design decisions accordingly.)
38 alignment of all data returned by the allocator. An allocator may implement $(D
49 implementation that returns `n` rounded up to a multiple of the allocator's
62 $(TR $(TDC void[] allocateAll();) $(TD Offers all of allocator's memory to the
63 caller, so it's usually defined by fixed-size allocators. If the allocator is
65 return all memory available to the allocator, and subsequent calls to all
68 the allocator is allowed to return `null` even if does have available memory
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
pretty-print.cc 23 template <typename> struct allocator {}; struct in namespace:std
30 typename = allocator<_CharT>>
40 template <typename _Tp> struct allocator_traits<allocator<_Tp>> {
46 struct __alloc_traits : std::allocator_traits<std::allocator<char>> {};
62 _Alloc_hider(__alloc_traits::pointer, const allocator<char> &);
65 basic_string(char *, allocator<char> __a = allocator<char>())
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
allocator.h 38 /** @file bits/allocator.h
46 #include <bits/c++allocator.h> // Define the base class to std::allocator.
61 // Since C++20 the primary template should be used for allocator<void>,
64 // different standard dialects. So C++20 still uses the allocator<void>
68 /** std::allocator<void> specialization.
73 class allocator<void> class
87 { typedef allocator<_Tp1> other; };
92 // 2103. std::allocator propagate_on_container_move_assignment
102 allocator() = default
128 class allocator : public __allocator_base<_Tp> class in inherits:__allocator_base
253 class allocator<const _Tp> class
257 allocator() { } function in class:allocator
258 template<typename _Up> allocator(const allocator<_Up>&) { } function in class:allocator
262 class allocator<volatile _Tp> class
266 allocator() { } function in class:allocator
267 template<typename _Up> allocator(const allocator<_Up>&) { } function in class:allocator
271 class allocator<const volatile _Tp> class
275 allocator() { } function in class:allocator
276 template<typename _Up> allocator(const allocator<_Up>&) { } function in class:allocator
    [all...]
memoryfwd.h 65 class allocator;
68 class allocator<void>;
  /src/external/public-domain/xz/dist/src/liblzma/delta/
delta_decoder.h 18 const lzma_allocator *allocator,
22 void **options, const lzma_allocator *allocator,
  /src/external/public-domain/xz/dist/src/liblzma/common/
block_decoder.h 19 const lzma_allocator *allocator, lzma_block *block);
filter_decoder.h 19 lzma_next_coder *next, const lzma_allocator *allocator,
filter_encoder.h 19 lzma_next_coder *next, const lzma_allocator *allocator,
index_encoder.h 19 const lzma_allocator *allocator, const lzma_index *i);
alone_decoder.h 19 lzma_next_coder *next, const lzma_allocator *allocator,
index_decoder.h 20 const lzma_allocator *allocator,
lzip_decoder.h 18 lzma_next_coder *next, const lzma_allocator *allocator,
stream_decoder.h 18 lzma_next_coder *next, const lzma_allocator *allocator,
  /src/external/public-domain/xz/dist/src/liblzma/simple/
simple_coder.h 19 const lzma_allocator *allocator,
23 const lzma_allocator *allocator,
28 const lzma_allocator *allocator,
32 const lzma_allocator *allocator,
37 const lzma_allocator *allocator,
41 const lzma_allocator *allocator,
46 const lzma_allocator *allocator,
50 const lzma_allocator *allocator,
55 const lzma_allocator *allocator,
59 const lzma_allocator *allocator,
    [all...]
simple_decoder.c 16 lzma_simple_props_decode(void **options, const lzma_allocator *allocator,
26 sizeof(lzma_options_bcj), allocator);
34 lzma_free(opt, allocator);
simple_decoder.h 18 void **options, const lzma_allocator *allocator,
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
allocator.h 38 /** @file bits/allocator.h
46 #include <bits/c++allocator.h> // Define the base class to std::allocator.
63 // Since C++20 the primary template should be used for allocator<void>,
66 // different standard dialects. So C++20 still uses the allocator<void>
70 /** std::allocator<void> specialization.
75 class allocator<void> class
89 { typedef allocator<_Tp1> other; };
94 // 2103. std::allocator propagate_on_container_move_assignment
104 allocator() = default
129 class allocator : public __allocator_base<_Tp> class in inherits:__allocator_base
246 class allocator<const _Tp> class
250 allocator() { } function in class:allocator
251 template<typename _Up> allocator(const allocator<_Up>&) { } function in class:allocator
255 class allocator<volatile _Tp> class
259 allocator() { } function in class:allocator
260 template<typename _Up> allocator(const allocator<_Up>&) { } function in class:allocator
264 class allocator<const volatile _Tp> class
268 allocator() { } function in class:allocator
269 template<typename _Up> allocator(const allocator<_Up>&) { } function in class:allocator
    [all...]
memoryfwd.h 64 class allocator;
67 class allocator<void>;
  /src/external/public-domain/xz/dist/src/liblzma/lzma/
lzma_decoder.h 21 const lzma_allocator *allocator,
33 void **options, const lzma_allocator *allocator,
49 lzma_lz_decoder *lz, const lzma_allocator *allocator,
lzma2_decoder.h 19 const lzma_allocator *allocator,
25 void **options, const lzma_allocator *allocator,
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_allocator_local_cache.h 9 // Part of the Sanitizer Allocator.
19 typedef SizeClassAllocator Allocator;
20 typedef MemoryMapper<Allocator> MemoryMapperT;
28 void Destroy(SizeClassAllocator *allocator, AllocatorGlobalStats *s) {
29 Drain(allocator);
34 void *Allocate(SizeClassAllocator *allocator, uptr class_id) {
39 if (UNLIKELY(!Refill(c, allocator, class_id)))
45 return reinterpret_cast<void *>(allocator->CompactPtrToPointer(
46 allocator->GetRegionBeginBySizeClass(class_id), chunk));
49 void Deallocate(SizeClassAllocator *allocator, uptr class_id, void *p)
    [all...]

Completed in 22 milliseconds

1 2 3 4 5 6 7 8 91011>>