Annotation of elwix/tools/oldlzma/SRC/7zip/Compress/Branch/ARM.cpp, revision 1.1
1.1 ! misho 1: // ARM.cpp
! 2:
! 3: #include "StdAfx.h"
! 4: #include "ARM.h"
! 5:
! 6: #include "BranchARM.c"
! 7:
! 8: UInt32 CBC_ARM_Encoder::SubFilter(Byte *data, UInt32 size)
! 9: {
! 10: return ::ARM_Convert(data, size, _bufferPos, 1);
! 11: }
! 12:
! 13: UInt32 CBC_ARM_Decoder::SubFilter(Byte *data, UInt32 size)
! 14: {
! 15: return ::ARM_Convert(data, size, _bufferPos, 0);
! 16: }
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>