Home
last modified time | relevance | path

Searched refs:RopeRefCountString (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Rewrite/Core/
H A DRewriteRope.h33 struct RopeRefCountString { struct
59 llvm::IntrusiveRefCntPtr<RopeRefCountString> StrData;
64 RopePiece(llvm::IntrusiveRefCntPtr<RopeRefCountString> Str, unsigned Start, in RopePiece()
176 llvm::IntrusiveRefCntPtr<RopeRefCountString> AllocBuffer;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Rewrite/
H A DRewriteRope.cpp788 unsigned Size = End-Start+sizeof(RopeRefCountString)-1; in MakeRopeString()
789 auto *Res = reinterpret_cast<RopeRefCountString *>(new char[Size]); in MakeRopeString()
798 unsigned AllocSize = offsetof(RopeRefCountString, Data) + AllocChunkSize; in MakeRopeString()
799 auto *Res = reinterpret_cast<RopeRefCountString *>(new char[AllocSize]); in MakeRopeString()