Annotation of elwix/tools/oldlzma/SRC/7zip/Compress/Branch/IA64.cpp, revision 1.1

1.1     ! misho       1: // IA64.cpp
        !             2: 
        !             3: #include "StdAfx.h"
        !             4: #include "IA64.h"
        !             5: 
        !             6: #include "BranchIA64.c"
        !             7: 
        !             8: UInt32 CBC_IA64_Encoder::SubFilter(Byte *data, UInt32 size)
        !             9: {
        !            10:   return ::IA64_Convert(data, size, _bufferPos, 1);
        !            11: }
        !            12: 
        !            13: UInt32 CBC_IA64_Decoder::SubFilter(Byte *data, UInt32 size)
        !            14: {
        !            15:   return ::IA64_Convert(data, size, _bufferPos, 0);
        !            16: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>