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

  /external/clang/include/clang/Rewrite/
RewriteRope.h 180 /// We allocate space for string data out of a buffer of size AllocChunkSize.
184 enum { AllocChunkSize = 4080 };
187 RewriteRope() : AllocBuffer(0), AllocOffs(AllocChunkSize) {}
189 : Chunks(RHS.Chunks), AllocBuffer(0), AllocOffs(AllocChunkSize) {
  /external/clang/lib/Rewrite/
RewriteRope.cpp 775 if (AllocOffs+Len <= AllocChunkSize) {
783 if (Len > AllocChunkSize) {
799 unsigned AllocSize = offsetof(RopeRefCountString, Data) + AllocChunkSize;

Completed in 1284 milliseconds