Searched defs:divmod (Results 1 - 1 of 1) sorted by relevance

/external/v8/test/mjsunit/
H A Ddiv-mod.js32 function divmod(div_func, mod_func, x, y) { function
50 divmod(div_func, mod_func, 0, divisor);
51 divmod(div_func, mod_func, 1 / 0, divisor);
54 divmod(div_func, mod_func, Math.pow(2, exp), divisor);
55 divmod(div_func, mod_func, 0.9999999 * Math.pow(2, exp), divisor);
56 divmod(div_func, mod_func, 1.0000001 * Math.pow(2, exp), divisor);
60 divmod(div_func, mod_func, 1 << exp, divisor);
61 divmod(div_func, mod_func, (1 << exp) + 1, divisor);
62 divmod(div_func, mod_func, (1 << exp) - 1, divisor);
64 divmod(div_fun
[all...]

Completed in 499 milliseconds