Annotation of elwix/tools/oldlzma/SRC/7zip/Compress/Branch/x86.cpp, revision 1.1.1.1
1.1 misho 1: // x86.cpp
2:
3: #include "StdAfx.h"
4: #include "x86.h"
5:
6: #include "Windows/Defs.h"
7:
8: #include "BranchX86.c"
9:
10: UInt32 CBCJ_x86_Encoder::SubFilter(Byte *data, UInt32 size)
11: {
12: return ::x86_Convert(data, size, _bufferPos, &_prevMask, &_prevPos, 1);
13: }
14:
15: UInt32 CBCJ_x86_Decoder::SubFilter(Byte *data, UInt32 size)
16: {
17: return ::x86_Convert(data, size, _bufferPos, &_prevMask, &_prevPos, 0);
18: }
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>