Home
last modified time | relevance | path

Searched defs:CAlignedBuffer (Results 1 – 4 of 4) sorted by relevance

/dports/archivers/7-zip/7-zip-21.07/CPP/Common/
H A DMyBuffer2.h64 CLASS_NO_COPY(CAlignedBuffer) in CLASS_NO_COPY() argument
73 CAlignedBuffer(size_t size): _size(0) in CAlignedBuffer() function
/dports/graphics/electricsheep/electricsheep-37ba0fd692d6581f8fe009ed11c9650cd8174123/client_generic/Common/
H A DAlignedBuffer.cpp154 CAlignedBuffer::CAlignedBuffer() : m_Buffer( NULL ) in CAlignedBuffer() function in Base::CAlignedBuffer
163 CAlignedBuffer::CAlignedBuffer( uint32 size ) : m_Buffer( NULL ) in CAlignedBuffer() function in Base::CAlignedBuffer
/dports/archivers/lzma/lzma-19.00/CPP/Common/
H A DMyBuffer2.h51 CLASS_NO_COPY(CAlignedBuffer) in CLASS_NO_COPY() argument
/dports/archivers/maxcso/maxcso-1.10.0/7zip/CPP/7zip/Archive/Rar/
H A DRar5Handler.cpp108 struct CAlignedBuffer struct
110 Byte *_buf;
111 Byte *_bufBase;
112 size_t _size;
114 CAlignedBuffer(): _buf(NULL), _bufBase(NULL), _size(0) {} in CAlignedBuffer() argument
115 ~CAlignedBuffer() { ::MyFree(_bufBase); } in ~CAlignedBuffer()
117 operator Byte *() { return _buf; } in operator Byte*()
118 operator const Byte *() const { return _buf; } in operator const Byte*()
120 void AllocAtLeast(size_t size) in AllocAtLeast()