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 30 template<typename DataType, size_t ChunkSize>
40 static size_t size() { return ChunkSize; }
45 DataType data[ChunkSize];
276 * template argument ChunkSize is the number of bytes of a chunk
278 template<typename DataType, size_t ChunkSize>
279 class LinearAllocator : public LinearAllocatorBase<Chunk<DataType, ChunkSize> >
284 typedef LinearAllocator<NewDataType, ChunkSize> other;
289 : 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 374 const ssize_t ChunkSize = 4096*4;
375 SmallString<ChunkSize> Buffer;
379 Buffer.reserve(Buffer.size() + ChunkSize);
380 ReadBytes = read(0, Buffer.end(), ChunkSize);

Completed in 41 milliseconds