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

  /external/clang/include/clang/Rewrite/Core/
RewriteRope.h 194 RopeRefCountString *AllocBuffer;
199 RewriteRope() : AllocBuffer(nullptr), AllocOffs(AllocChunkSize) {}
201 : Chunks(RHS.Chunks), AllocBuffer(nullptr), AllocOffs(AllocChunkSize) {
206 if (AllocBuffer)
207 AllocBuffer->dropRef();
  /external/clang/lib/Rewrite/Core/
RewriteRope.cpp 764 /// the AllocBuffer object to aggregate requests for small strings into one
772 memcpy(AllocBuffer->Data+AllocOffs, Start, Len);
774 return RopePiece(AllocBuffer, AllocOffs-Len, AllocOffs);
791 if (AllocBuffer)
792 AllocBuffer->dropRef();
795 AllocBuffer = reinterpret_cast<RopeRefCountString *>(new char[AllocSize]);
796 AllocBuffer->RefCount = 0;
797 memcpy(AllocBuffer->Data, Start, Len);
802 AllocBuffer->addRef();
803 return RopePiece(AllocBuffer, 0, Len)
    [all...]
  /external/pdfium/core/include/fxcrt/
fx_string.h 851 FX_LPSTR AllocBuffer(FX_STRSIZE length, IFX_Allocator* pAllocator);
  /external/pdfium/core/src/fxcrt/
fx_basic_bstring.cpp     [all...]

Completed in 202 milliseconds