Annotation of elwix/tools/oldlzma/SRC/7zip/Compress/Branch/ARMThumb.cpp, revision 1.1.1.1

1.1       misho       1: // ARMThumb.cpp
                      2: 
                      3: #include "StdAfx.h"
                      4: #include "ARMThumb.h"
                      5: 
                      6: #include "BranchARMThumb.c"
                      7: 
                      8: UInt32 CBC_ARMThumb_Encoder::SubFilter(Byte *data, UInt32 size)
                      9: {
                     10:   return ::ARMThumb_Convert(data, size, _bufferPos, 1);
                     11: }
                     12: 
                     13: UInt32 CBC_ARMThumb_Decoder::SubFilter(Byte *data, UInt32 size)
                     14: {
                     15:   return ::ARMThumb_Convert(data, size, _bufferPos, 0);
                     16: }

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