HomeSort by relevance Sort by last modified time
    Searched refs:ChunkSize (Results 1 - 4 of 4) sorted by null

  /frameworks/compile/mclinker/include/mcld/Support/
UniqueGCFactory.h 26 template<typename KeyType, typename DataType, size_t ChunkSize>
27 class UniqueGCFactoryBase : public GCFactoryBase<LinearAllocator<DataType, ChunkSize> >
30 typedef GCFactoryBase<LinearAllocator<DataType, ChunkSize> > Alloc;
35 : GCFactoryBase<LinearAllocator<DataType, ChunkSize> >()
39 : GCFactoryBase<LinearAllocator<DataType, ChunkSize> >(pNum)
Allocators.h 29 template<typename DataType, size_t ChunkSize>
39 static size_t size() { return ChunkSize; }
44 DataType data[ChunkSize];
275 * template argument ChunkSize is the number of bytes of a chunk
277 template<typename DataType, size_t ChunkSize>
278 class LinearAllocator : public LinearAllocatorBase<Chunk<DataType, ChunkSize> >
283 typedef LinearAllocator<NewDataType, ChunkSize> other;
288 : LinearAllocatorBase<Chunk<DataType, ChunkSize> >() {
GCFactory.h 210 template<typename DataType, size_t ChunkSize>
211 class GCFactory : public GCFactoryBase<LinearAllocator<DataType, ChunkSize> >
215 : GCFactoryBase<LinearAllocator<DataType, ChunkSize> >()
  /external/llvm/lib/Support/
MemoryBuffer.cpp 373 const ssize_t ChunkSize = 4096*4;
374 SmallString<ChunkSize> Buffer;
378 Buffer.reserve(Buffer.size() + ChunkSize);
379 ReadBytes = read(0, Buffer.end(), ChunkSize);

Completed in 3070 milliseconds