IA64.cpp 357 B

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