HomeSort by relevance Sort by last modified time
    Searched refs:divmod (Results 1 - 3 of 3) sorted by null

  /external/v8/test/mjsunit/
div-mod.js 30 function divmod(div_func, mod_func, x, y) { function
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)
    [all...]
  /external/clang/utils/
FuzzTest 46 index,picked_position = divmod(index, self.num_positions)
53 index,position = divmod(index, self.num_positions)
60 index,insert_index = divmod(index, self.num_insert_strings)
  /external/sonivox/jet_tools/JetCreator/
JetUtils.py 687 m,s=divmod(s,60)
688 h,m=divmod(m,60)
689 d,h=divmod(h,24)

Completed in 2163 milliseconds