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

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Rewrite/Core/
H A DRewriteRope.h169 /// We allocate space for string data out of a buffer of size AllocChunkSize.
172 enum { AllocChunkSize = 4080 }; enumerator in enum:clang::RewriteRope::__anon1452
173 unsigned AllocOffs = AllocChunkSize;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Rewrite/
H A DRewriteRope.cpp779 if (AllocOffs+Len <= AllocChunkSize) {
787 if (Len > AllocChunkSize) {
798 unsigned AllocSize = offsetof(RopeRefCountString, Data) + AllocChunkSize;

Completed in 71 milliseconds