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

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

Completed in 1196 milliseconds