Searched refs:AllocChunkSize (Results 1 - 2 of 2) sorted by relevance

/external/clang/include/clang/Rewrite/Core/
H A DRewriteRope.h192 /// We allocate space for string data out of a buffer of size AllocChunkSize.
196 enum { AllocChunkSize = 4080 }; enumerator in enum:clang::RewriteRope::__anon17602
199 RewriteRope() : AllocBuffer(nullptr), AllocOffs(AllocChunkSize) {}
201 : Chunks(RHS.Chunks), AllocBuffer(nullptr), AllocOffs(AllocChunkSize) {
/external/clang/lib/Rewrite/Core/
H A DRewriteRope.cpp771 if (AllocOffs+Len <= AllocChunkSize) {
779 if (Len > AllocChunkSize) {
794 unsigned AllocSize = offsetof(RopeRefCountString, Data) + AllocChunkSize;

Completed in 155 milliseconds