Files
easy7zip/CPP/7zip/Compress/Branch/x86.cpp
Igor Pavlov fd8b1d78b4 4.48 beta
2016-05-28 00:15:52 +01:00

15 lines
321 B
C++
Executable File

// x86.cpp
#include "StdAfx.h"
#include "x86.h"
UInt32 CBCJ_x86_Encoder::SubFilter(Byte *data, UInt32 size)
{
return (UInt32)::x86_Convert(data, size, _bufferPos, &_prevMask, 1);
}
UInt32 CBCJ_x86_Decoder::SubFilter(Byte *data, UInt32 size)
{
return (UInt32)::x86_Convert(data, size, _bufferPos, &_prevMask, 0);
}