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.
michael@0 | 1 | function TestCase(n, d, e, a) |
michael@0 | 2 | function writeHeaderToLog( string ) {} |
michael@0 | 3 | var SECTION = "11.7.2"; |
michael@0 | 4 | for ( power = 0; power <= 32; power++ ) { |
michael@0 | 5 | shiftexp = Math.pow( 2, power ); |
michael@0 | 6 | for ( addexp = 0; addexp <= 32; addexp++ ) { |
michael@0 | 7 | new TestCase( SECTION, SignedRightShift( shiftexp, addexp ), shiftexp >> addexp ); |
michael@0 | 8 | } |
michael@0 | 9 | } |
michael@0 | 10 | function ToInt32BitString( n ) { |
michael@0 | 11 | var b = ""; |
michael@0 | 12 | return b; |
michael@0 | 13 | } |
michael@0 | 14 | function SignedRightShift( s, a ) { |
michael@0 | 15 | s = ToInt32BitString( s ); |
michael@0 | 16 | s = s.substring( 0, 1 | Math && 0xffffffff + 2 ); |
michael@0 | 17 | } |