misc/libphysfs/lzma/CPP/7zip/Compress/Branch/IA64.cpp
changeset 12213 bb5522e88ab2
equal deleted inserted replaced
12212:ea891871f481 12213:bb5522e88ab2
       
     1 // IA64.cpp
       
     2 
       
     3 #include "StdAfx.h"
       
     4 #include "IA64.h"
       
     5 
       
     6 extern "C" 
       
     7 { 
       
     8 #include "../../../../C/Compress/Branch/BranchIA64.h"
       
     9 }
       
    10 
       
    11 UInt32 CBC_IA64_Encoder::SubFilter(Byte *data, UInt32 size)
       
    12 {
       
    13   return ::IA64_Convert(data, size, _bufferPos, 1);
       
    14 }
       
    15 
       
    16 UInt32 CBC_IA64_Decoder::SubFilter(Byte *data, UInt32 size)
       
    17 {
       
    18   return ::IA64_Convert(data, size, _bufferPos, 0);
       
    19 }