Lines Matching refs:function
8 Float32Array = function(x) { this[0] = 0; };
11 assertTrue(isNaN(Math.fround(function() {})));
12 assertTrue(isNaN(Math.fround({ toString: function() { return NaN; } })));
13 assertTrue(isNaN(Math.fround({ valueOf: function() { return "abc"; } })));
15 assertTrue(isNaN(Math.fround(function() {})));
16 assertTrue(isNaN(Math.fround({ toString: function() { return NaN; } })));
17 assertTrue(isNaN(Math.fround({ valueOf: function() { return "abc"; } })));
19 function unopt(x) { return Math.fround(x); }
20 function opt(y) { return Math.fround(y); }
28 function test(f) {
46 function ieee754float(sign_bit,
56 ieee754float.prototype.returnSpecial = function() {
61 ieee754float.prototype.toDouble = function() {
70 ieee754float.prototype.toSingle = function() {
81 ieee754float.prototype.toSingleSubnormal = function(sign, exponent) {
106 function fuzz_mantissa(sign, exp, m1inc, m2inc) {