Home
last modified time | relevance | path

Searched refs:pow (Results 1 – 25 of 90) sorted by relevance

1234

/external/webkit/JavaScriptCore/tests/mozilla/ecma/Math/
D15.8.2.13.js46 …tCase( SECTION, "Math.pow.length", 2, Math.pow.length );
48 …w TestCase( SECTION, "Math.pow()", Number.NaN, Math.pow() );
49 …e( SECTION, "Math.pow(null, null)", 1, Math.pow(null,null) );
50 …ECTION, "Math.pow(void 0, void 0)", Number.NaN, Math.pow(void 0, void 0));
51 … SECTION, "Math.pow(true, false)", 1, Math.pow(true, false) );
52 …( SECTION, "Math.pow(false,true)", 0, Math.pow(false,true) );
53 …se( SECTION, "Math.pow('2','32')", 4294967296, Math.pow('2','32') );
55 …SECTION, "Math.pow(1,NaN)", Number.NaN, Math.pow(1,Number.NaN) );
56 … SECTION, "Math.pow(0,NaN)", Number.NaN, Math.pow(0,Number.NaN) );
57 …SECTION, "Math.pow(NaN,0)", 1, Math.pow(Number.NaN,0) );
[all …]
D15.8.2.1.js77 …stCase( SECTION, "Math.abs(-Math.pow(2,32))", Math.pow(2,32), Math.abs(-Math.pow(…
78 …stCase( SECTION, "Math.abs(Math.pow(2,32))", Math.pow(2,32), Math.abs(Math.pow(2…
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Array/
D15.4.5.2-2.js47 addCase( new Array(), 0, Math.pow(2,14), Math.pow(2,14) );
51 addCase( new Array(Math.pow(2,12)), Math.pow(2,12), 0, 0 );
52 addCase( new Array(Math.pow(2,13)), Math.pow(2,13), Math.pow(2,12), Math.pow(2,12) );
53 addCase( new Array(Math.pow(2,12)), Math.pow(2,12), Math.pow(2,12), Math.pow(2,12) );
54 addCase( new Array(Math.pow(2,14)), Math.pow(2,14), Math.pow(2,12), Math.pow(2,12) )
58 for ( var arg = "", i = 0; i < Math.pow(2,12); i++ ) {
59 arg += String(i) + ( i != Math.pow(2,12)-1 ? "," : "" );
67 addCase( a, i, Math.pow(2,12)+i+1, Math.pow(2,12)+i+1, true );
68 addCase( a, Math.pow(2,12)+5, 0, 0, true );
D15.4-2.js55 … "var arr=new Array(); arr[Math.pow(2,16)] = 'hi'; arr.length", Math.pow(2,16)+1, eval("va…
57 … "var arr=new Array(); arr[Math.pow(2,30)-2] = 'hi'; arr.length", Math.pow(2,30)-1, eval("va…
58 … "var arr=new Array(); arr[Math.pow(2,30)-1] = 'hi'; arr.length", Math.pow(2,30), eval("va…
59 … "var arr=new Array(); arr[Math.pow(2,30)] = 'hi'; arr.length", Math.pow(2,30)+1, eval("va…
61 … "var arr=new Array(); arr[Math.pow(2,31)-2] = 'hi'; arr.length", Math.pow(2,31)-1, eval("va…
62 … "var arr=new Array(); arr[Math.pow(2,31)-1] = 'hi'; arr.length", Math.pow(2,31), eval("va…
63 … "var arr=new Array(); arr[Math.pow(2,31)] = 'hi'; arr.length", Math.pow(2,31)+1, eval("va…
D15.4.1.2.js60 …TION, "(Array(Math.pow(2,31)-1)).length", ToUint32(Math.pow(2,31)-1), (Array(Math.pow(2,31…
61 …TION, "(Array(Math.pow(2,31))).length", ToUint32(Math.pow(2,31)), (Array(Math.pow(2,31…
62 …TION, "(Array(Math.pow(2,31)+1)).length", ToUint32(Math.pow(2,31)+1), (Array(Math.pow(2,31…
91 n = n % Math.pow(2,32);
94 n += Math.pow(2,32);
D15.4-1.js55 (Math.pow(2,32)-1),
65 (Math.pow(2,32)-2),
76 (Math.pow(2,31)-1),
87 (Math.pow(2,31)),
99 (Math.pow(2,31)+1),
110 (Math.pow(2,30)-1),
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
Dproperties-002.js20 re_1.lastIndex = Math.pow(2,31);
21 AddRegExpCases( re_1, "\\cA?", true, false, false, Math.pow(2,31) );
24 re_2.lastIndex = Math.pow(2,32) -1;
25 AddRegExpCases( re_2, "\\w*", false, true, false, Math.pow(2,32)-1 );
28 re_3.lastIndex = Math.pow(2,31) -1;
29 AddRegExpCases( re_3, "\\*{0,80}", false, false, true, Math.pow(2,31) -1 );
32 re_4.lastIndex = Math.pow(2,30) -1;
33 AddRegExpCases( re_4, "^.", true, true, true, Math.pow(2,30) -1 );
36 re_5.lastIndex = Math.pow(2,30);
37 AddRegExpCases( re_5, "\\B", false, false, false, Math.pow(2,30) );
[all …]
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/
D11.4.8.js65 var p = Math.pow(2,i);
71 var p = -Math.pow(2,i);
99 n = (sign * Math.floor( Math.abs(n) )) % Math.pow(2,32);
100 n = ( n >= Math.pow(2,31) ) ? n - Math.pow(2,32) : n;
113 n = n % Math.pow(2,32);
116 n += Math.pow(2,32);
128 n = ( sign * Math.floor( Math.abs(n) ) ) % Math.pow(2,16);
131 n += Math.pow(2,16);
145 if ( n >= Math.pow(2,p) ) {
147 n -= Math.pow(2,p);
[all …]
D11.7.2.js76 shiftexp = Math.pow( 2, power );
87 shiftexp = -Math.pow( 2, power );
120 n = (sign * Math.floor( Math.abs(n) )) % Math.pow(2,32);
121 n = ( n >= Math.pow(2,31) ) ? n - Math.pow(2,32) : n;
134 n = n % Math.pow(2,32);
137 n += Math.pow(2,32);
149 n = ( sign * Math.floor( Math.abs(n) ) ) % Math.pow(2,16);
152 n += Math.pow(2,16);
166 if ( n >= Math.pow(2,p) ) {
168 n -= Math.pow(2,p);
[all …]
D11.7.3.js78 shiftexp = Math.pow( 2, power );
111 n = (sign * Math.floor( Math.abs(n) )) % Math.pow(2,32);
112 n = ( n >= Math.pow(2,31) ) ? n - Math.pow(2,32) : n;
125 n = n % Math.pow(2,32);
128 n += Math.pow(2,32);
140 n = ( sign * Math.floor( Math.abs(n) ) ) % Math.pow(2,16);
143 n += Math.pow(2,16);
157 if ( n >= Math.pow(2,p) ) {
159 n -= Math.pow(2,p);
173 if ( (sign == 1 ) ? sign * n >= Math.pow(2,p) : sign * n > Math.pow(2,p) ) {
[all …]
D11.7.1.js74 shiftexp = Math.pow( 2, power );
106 n = (sign * Math.floor( Math.abs(n) )) % Math.pow(2,32);
107 n = ( n >= Math.pow(2,31) ) ? n - Math.pow(2,32) : n;
120 n = n % Math.pow(2,32);
123 n += Math.pow(2,32);
135 n = ( sign * Math.floor( Math.abs(n) ) ) % Math.pow(2,16);
138 n += Math.pow(2,16);
152 if ( n >= Math.pow(2,p) ) {
154 n -= Math.pow(2,p);
168 if ( (sign == 1 ) ? sign * n >= Math.pow(2,p) : sign * n > Math.pow(2,p) ) {
[all …]
D11.10-1.js74 shiftexp += Math.pow( 2, shiftpow );
77 addexp += Math.pow(2, addpow);
108 n = (sign * Math.floor( Math.abs(n) )) % Math.pow(2,32);
109 n = ( n >= Math.pow(2,31) ) ? n - Math.pow(2,32) : n;
122 n = n % Math.pow(2,32);
125 n += Math.pow(2,32);
137 n = ( sign * Math.floor( Math.abs(n) ) ) % Math.pow(2,16);
140 n += Math.pow(2,16);
154 if ( n >= Math.pow(2,p) ) {
156 n -= Math.pow(2,p);
[all …]
D11.10-2.js73 shiftexp += Math.pow( 2, shiftpow );
76 addexp += Math.pow(2, addpow);
107 n = (sign * Math.floor( Math.abs(n) )) % Math.pow(2,32);
108 n = ( n >= Math.pow(2,31) ) ? n - Math.pow(2,32) : n;
121 n = n % Math.pow(2,32);
124 n += Math.pow(2,32);
136 n = ( sign * Math.floor( Math.abs(n) ) ) % Math.pow(2,16);
139 n += Math.pow(2,16);
153 if ( n >= Math.pow(2,p) ) {
155 n -= Math.pow(2,p);
[all …]
D11.10-3.js73 shiftexp += Math.pow( 2, shiftpow );
76 addexp += Math.pow(2, addpow);
107 n = (sign * Math.floor( Math.abs(n) )) % Math.pow(2,32);
108 n = ( n >= Math.pow(2,31) ) ? n - Math.pow(2,32) : n;
121 n = n % Math.pow(2,32);
124 n += Math.pow(2,32);
136 n = ( sign * Math.floor( Math.abs(n) ) ) % Math.pow(2,16);
139 n += Math.pow(2,16);
153 if ( n >= Math.pow(2,p) ) {
155 n -= Math.pow(2,p);
[all …]
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
D15.10.6.2-2.js160 pattern.lastIndex = Math.pow(2,32);
166 pattern.lastIndex = -Math.pow(2,32);
172 pattern.lastIndex = Math.pow(2,32) + 1;
178 pattern.lastIndex = -(Math.pow(2,32) + 1);
184 pattern.lastIndex = Math.pow(2,32) * 2;
190 pattern.lastIndex = -Math.pow(2,32) * 2;
196 pattern.lastIndex = Math.pow(2,40);
202 pattern.lastIndex = -Math.pow(2,40);
276 pattern.lastIndex = Math.pow(2,32);
282 pattern.lastIndex = -Math.pow(2,32);
[all …]
/external/webkit/JavaScriptCore/tests/mozilla/ecma/GlobalObject/
D15.1.2.2-1.js142 HEX_VALUE += Math.pow(16,POWER)*15;
146 HEX_VALUE += Math.pow(16,POWER)*15;
150 HEX_VALUE += Math.pow(16,POWER)*15;
154 HEX_VALUE += Math.pow(16,POWER)*15;
158 HEX_VALUE += Math.pow(16,POWER)*15;
162 HEX_VALUE += Math.pow(16,POWER)*15;
172 HEX_VALUE += Math.pow(16,POWER)*15;
178 HEX_VALUE -= Math.pow(16,POWER)*15;
185 HEX_VALUE += Math.pow(16,POWER)*15;
189 HEX_VALUE += Math.pow(16,POWER)*15;
[all …]
D15.1.2.5-3.js131 for ( ; n < Math.pow(2,16); n++ ) {
154 for ( var mag = 1; Math.pow(16,mag) <= n ; mag++ ) {
159 hex[index] = Math.floor( n / Math.pow(16,mag) );
160 n -= Math.pow(16,mag) * Math.floor( n/Math.pow(16,mag) );
D15.1.2.5-2.js131 for ( var mag = 1; Math.pow(16,mag) <= n ; mag++ ) {
136 hex[index] = Math.floor( n / Math.pow(16,mag) );
137 n -= Math.pow(16,mag) * Math.floor( n/Math.pow(16,mag) );
D15.1.2.5-1.js153 for ( var mag = 1; Math.pow(16,mag) <= n ; mag++ ) {
158 hex[index] = Math.floor( n / Math.pow(16,mag) );
159 n -= Math.pow(16,mag) * Math.floor( n/Math.pow(16,mag) );
/external/webkit/JavaScriptCore/tests/mozilla/ecma/TypeConversion/
D9.5-2.js81 n = (sign * Math.floor( Math.abs(n) )) % Math.pow(2,32);
83 n = ( n < -Math.pow(2,31) ) ? n + Math.pow(2,32) : n;
85 n = ( n >= Math.pow(2,31) ) ? n - Math.pow(2,32) : n;
115 … TestCase( SECTION, "(Math.pow(2,31)-1) << 0", ToInt32(2147483647), (Math.pow(2,31)-1) << 0 );
116 … new TestCase( SECTION, "Math.pow(2,31) << 0", ToInt32(2147483648), Math.pow(2,31) << 0 );
117 … TestCase( SECTION, "(Math.pow(2,31)+1) << 0", ToInt32(2147483649), (Math.pow(2,31)+1) << 0 );
119 …estCase( SECTION, "(Math.pow(2,32)-1) << 0", ToInt32(4294967295), (Math.pow(2,32)-1) << 0 );
120 … TestCase( SECTION, "(Math.pow(2,32)) << 0", ToInt32(4294967296), (Math.pow(2,32)) << 0 );
121 …estCase( SECTION, "(Math.pow(2,32)+1) << 0", ToInt32(4294967297), (Math.pow(2,32)+1) << 0 );
D9.7.js71 num = num % Math.pow(2,16);
108 …rCode(Math.pow(2,16)-1).charCodeAt(0)", 65535, String.fromCharCode(Math.pow(2,16)-1).charCodeAt…
109 …rCode(Math.pow(2,16)).charCodeAt(0)", 0, String.fromCharCode(Math.pow(2,16)).charCodeAt(0…
131 …(-Math.pow(2,16)-1).charCodeAt(0)", 65535, String.fromCharCode(-Math.pow(2,16)-1).charCodeAt…
132 …(-Math.pow(2,16)).charCodeAt(0)", 0, String.fromCharCode(-Math.pow(2,16)).charCodeAt(0…
/external/svox/pico/lib/
Dpicokpdf.c131 static picoos_uint8 convScaleFactorToBig(picoos_uint8 pow, picoos_uint8 bigpow) in convScaleFactorToBig() argument
133 if (pow > 0x0F) { in convScaleFactorToBig()
134 pow = bigpow + (0xFF - pow + 1); /* take 2's complement of negative pow */ in convScaleFactorToBig()
135 } else if (bigpow >= pow) { in convScaleFactorToBig()
136 pow = bigpow - pow; in convScaleFactorToBig()
141 return pow; in convScaleFactorToBig()
/external/speex/libspeex/
Dvorbis_psy.h55 #define fromBARK(z) (102.f*(z)-2.f*pow(z,2.f)+.4f*pow(z,3.f)+pow(1.46f,z)-1.f)
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/String/
Dsplit-002.js67 CompareSplitWithLimit(new Number(100111122133144155), 1, Math.pow(2,32)-1 );
69 CompareSplitWithLimit(new Number(100111122133144155), 1, -(Math.pow(2,32)-1) );
146 lim = Math.pow(2, 31 ) -1;
257 n = n % Math.pow(2,32);
260 n += Math.pow(2,32);
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Types/
D8.4.js80 if ( n >= Math.pow(16, i) ){
81 var t = Math.floor( n / Math.pow(16, i));
82 n -= t * Math.pow(16, i);

1234