Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:divmod

30 function divmod(div_func, mod_func, x, y) {
48 divmod(div_func, mod_func, 0, divisor);
49 divmod(div_func, mod_func, 1 / 0, divisor);
52 divmod(div_func, mod_func, Math.pow(2, exp), divisor);
53 divmod(div_func, mod_func, 0.9999999 * Math.pow(2, exp), divisor);
54 divmod(div_func, mod_func, 1.0000001 * Math.pow(2, exp), divisor);
58 divmod(div_func, mod_func, 1 << exp, divisor);
59 divmod(div_func, mod_func, (1 << exp) + 1, divisor);
60 divmod(div_func, mod_func, (1 << exp) - 1, divisor);
62 divmod(div_func, mod_func, Math.floor(0x1fffffff / 3), divisor);
63 divmod(div_func, mod_func, Math.floor(-0x20000000 / 3), divisor);