other-licenses/7zstub/src/7zip/Compress/Branch/x86.cpp

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
permissions
-rw-r--r--

Integrate suggestion from review to improve consistency with existing code.

     1 // x86.cpp
     3 #include "StdAfx.h"
     4 #include "x86.h"
     6 #include "Windows/Defs.h"
     8 #include "BranchX86.c"
    10 UInt32 CBCJ_x86_Encoder::SubFilter(Byte *data, UInt32 size)
    11 {
    12   return ::x86_Convert(data, size, _bufferPos, &_prevMask, &_prevPos, 1);
    13 }
    15 UInt32 CBCJ_x86_Decoder::SubFilter(Byte *data, UInt32 size)
    16 {
    17   return ::x86_Convert(data, size, _bufferPos, &_prevMask, &_prevPos, 0);
    18 }

mercurial