Searched refs:divmod (Results 1 – 7 of 7) sorted by relevance
/external/v8/test/mjsunit/ |
D | div-mod.js | 32 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_func, mod_func, Math.floor(0x1fffffff / 3), divisor); [all …]
|
/external/clang/utils/ |
D | 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/vixl/tools/ |
D | printer.py | 89 minutes, seconds = divmod(time.time() - start_time, 60)
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/util/ |
D | dateinterval.py | 51 i, seconds = divmod(seconds, amount)
|
/external/lldb/examples/synthetic/ |
D | libcxx.py | 637 i, j = divmod(self.start+index, self.block_size) 675 total_rows, junk = divmod(map_endcap - map_first, self.pointer_size) 679 active_rows, junk = divmod(map_end - map_begin, self.pointer_size) 683 start_row, junk = divmod(map_begin - map_first, self.pointer_size)
|
/external/sonivox/jet_tools/JetCreator/ |
D | JetUtils.py | 687 m,s=divmod(s,60) 688 h,m=divmod(m,60) 689 d,h=divmod(h,24)
|
/external/skia/forth/ |
D | StdWords.cpp | 417 ADD_LITERAL_WORD("/MOD", divmod); in addStdWords()
|