Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
michael@0 | 1 | // Stream/LSBFDecoder.cpp |
michael@0 | 2 | |
michael@0 | 3 | #include "StdAfx.h" |
michael@0 | 4 | |
michael@0 | 5 | #include "LSBFDecoder.h" |
michael@0 | 6 | |
michael@0 | 7 | namespace NStream { |
michael@0 | 8 | namespace NLSBF { |
michael@0 | 9 | |
michael@0 | 10 | Byte kInvertTable[256]; |
michael@0 | 11 | |
michael@0 | 12 | class CInverterTableInitializer |
michael@0 | 13 | { |
michael@0 | 14 | public: |
michael@0 | 15 | CInverterTableInitializer() |
michael@0 | 16 | { |
michael@0 | 17 | for(int i = 0; i < 256; i++) |
michael@0 | 18 | { |
michael@0 | 19 | Byte b = Byte(i); |
michael@0 | 20 | Byte bInvert = 0; |
michael@0 | 21 | for(int j = 0; j < 8; j++) |
michael@0 | 22 | { |
michael@0 | 23 | bInvert <<= 1; |
michael@0 | 24 | if (b & 1) |
michael@0 | 25 | bInvert |= 1; |
michael@0 | 26 | b >>= 1; |
michael@0 | 27 | } |
michael@0 | 28 | kInvertTable[i] = bInvert; |
michael@0 | 29 | } |
michael@0 | 30 | } |
michael@0 | 31 | } g_InverterTableInitializer; |
michael@0 | 32 | |
michael@0 | 33 | |
michael@0 | 34 | }} |