Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:function

32 function divmod(div_func, mod_func, x, y) {
44 function run_tests_for(divisor) {
45 print("(function(left) { return left / " + divisor + "; })");
46 var div_func = this.eval("(function(left) { return left / " + divisor + "; })");
47 var mod_func = this.eval("(function(left) { return left % " + divisor + "; })");
95 function compute_mod(dividend, divisor) {
104 function rec_mod(a, b) {
115 (function () {
149 function doTest(a, b) {
168 (function () {
185 function negative_zero_modulus_test() {
203 function lithium_integer_mod() {
213 mod_func = this.eval("(function(left) { return left % " + divisors[j]+ "; })");