Home
last modified time | relevance | path

Searched refs:MemoryPoolAllocator (Results 1 – 10 of 10) sorted by relevance

/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
Dallocators.h102 class MemoryPoolAllocator {
110 …explicit MemoryPoolAllocator(size_t chunkSize = kDefaultChunkCapacity, BaseAllocator* baseAllocato…
125MemoryPoolAllocator(void *buffer, size_t size, size_t chunkSize = kDefaultChunkCapacity, BaseAlloc…
139 ~MemoryPoolAllocator() { in ~MemoryPoolAllocator()
224 MemoryPoolAllocator(const MemoryPoolAllocator& rhs) /* = delete */;
226 MemoryPoolAllocator& operator=(const MemoryPoolAllocator& rhs) /* = delete */;
Ddocument.h420 template <typename Encoding, typename Allocator = MemoryPoolAllocator<> >
1771 template <typename Encoding, typename Allocator = MemoryPoolAllocator<>, typename StackAllocator = …
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
Ddocumenttest.cpp92 ParseTest<MemoryPoolAllocator<>, CrtAllocator>(); in TEST()
93 ParseTest<MemoryPoolAllocator<>, MemoryPoolAllocator<> >(); in TEST()
94 ParseTest<CrtAllocator, MemoryPoolAllocator<> >(); in TEST()
263 typedef GenericDocument<UTF8<>, MemoryPoolAllocator<>, MemoryPoolAllocator<> > DocumentType; in TEST()
266 MemoryPoolAllocator<> valueAllocator(valueBuffer, sizeof(valueBuffer)); in TEST()
267 MemoryPoolAllocator<> parseAllocator(parseBuffer, sizeof(parseBuffer)); in TEST()
349 typedef ::testing::Types< CrtAllocator, MemoryPoolAllocator<> > MoveAllocatorTypes;
Dallocatorstest.cpp55 TEST(Allocator, MemoryPoolAllocator) { in TEST() argument
56 MemoryPoolAllocator<> a; in TEST()
Dvaluetest.cpp619 MemoryPoolAllocator<> allocator; in TEST()
1210 MemoryPoolAllocator<> allocator; in TEST()
1231 MemoryPoolAllocator<> allocator; in TEST()
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/
Ddom.md14 template <typename Encoding, typename Allocator = MemoryPoolAllocator<> >
19 template <typename Encoding, typename Allocator = MemoryPoolAllocator<> >
63 The default allocator used in `GenericDocument` is `MemoryPoolAllocator`. This allocator actually a…
65 …is allocator may be preferred. But this allocator is far less efficient than `MemoryPoolAllocator`.
258 `MemoryPoolAllocator` can support this by letting user to provide a buffer. The buffer can be on th…
260 `MemoryPoolAllocator` will use the user buffer to satisfy allocations. When the user buffer is used…
265 typedef GenericDocument<UTF8<>, MemoryPoolAllocator<>, MemoryPoolAllocator<>> DocumentType;
268 MemoryPoolAllocator<> valueAllocator(valueBuffer, sizeof(valueBuffer));
269 MemoryPoolAllocator<> parseAllocator(parseBuffer, sizeof(parseBuffer));
276 User can query the current memory consumption in bytes via `MemoryPoolAllocator::Size()`. And then …
Dinternals.md155 ## MemoryPoolAllocator {#MemoryPoolAllocator}
157 `MemoryPoolAllocator` is the default allocator for DOM. It allocate but do not free memory. This is…
Dsax.md141 …ate <typename SourceEncoding, typename TargetEncoding, typename Allocator = MemoryPoolAllocator<> >
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/diagram/
Dutilityclass.dot54 Allocator -> { CrtAllocator; MemoryPoolAllocator }
63 MemoryPoolAllocator -> Allocator [label="base", tailport=s]
/packages/apps/Test/connectivity/sl4n/rapidjson/
DCHANGELOG.md16 * Fix MemoryPoolAllocator::Clear() to clear user-buffer (0691502573f1afd3341073dd24b12c3db20fbde4)