Lines Matching refs:Math
35 '"' + (test_id++) + '";return Math.round(input)');
49 // Regression test for a bug where a negative zero coming from Math.round
52 var ret = Math.round(n);
54 ret += Math.round(n);
134 var ulp = Math.pow(2, -1022 - 52);
135 var max_denormal = (Math.pow(2, 52) - 1) * ulp;
136 var min_normal = Math.pow(2, -1022);
137 var max_fraction = Math.pow(2, 52) - 0.5;
138 var min_nonfraction = Math.pow(2, 52);
141 var max_smi31 = Math.pow(2,30) - 1;
142 var min_smi31 = -Math.pow(2,30);
143 var max_smi32 = Math.pow(2,31) - 1;
144 var min_smi32 = -Math.pow(2,31);
151 testRound(Math.pow(2,52), max_fraction);
165 testRound(-Math.pow(2,52)+1, -max_fraction);