Home | History | Annotate | Download | only in Core

Lines Matching refs:AllocBuffer

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);