misc/libphysfs/lzma/CPP/7zip/Compress/Branch/x86.cpp
branchui-scaling
changeset 15283 c4fd2813b127
parent 13390 0135e64c6c66
parent 15279 7ab5cf405686
child 15663 d92eeb468dad
equal deleted inserted replaced
13390:0135e64c6c66 15283:c4fd2813b127
     1 // x86.cpp
       
     2 
       
     3 #include "StdAfx.h"
       
     4 #include "x86.h"
       
     5 
       
     6 UInt32 CBCJ_x86_Encoder::SubFilter(Byte *data, UInt32 size)
       
     7 {
       
     8   return (UInt32)::x86_Convert(data, size, _bufferPos, &_prevMask, 1);
       
     9 }
       
    10 
       
    11 UInt32 CBCJ_x86_Decoder::SubFilter(Byte *data, UInt32 size)
       
    12 {
       
    13   return (UInt32)::x86_Convert(data, size, _bufferPos, &_prevMask, 0);
       
    14 }