Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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 }