Searched refs:divmod (Results 1 – 14 of 14) 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/autotest/client/cros/video/ |
D | screenshot_file_namer.py | 54 hours, remainder = divmod(time_delta_value.total_seconds(), 3600) 56 minutes, seconds = divmod(remainder, 60)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/ |
D | randnum.py | 33 nbytes, rbits = divmod(nbits, 8)
|
D | common.py | 101 quanta, mod = divmod(bit_size(number), 8)
|
/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/chromium-trace/catapult/third_party/Paste/paste/util/ |
D | dateinterval.py | 51 i, seconds = divmod(seconds, amount)
|
/external/vixl/tools/ |
D | printer.py | 109 minutes, seconds = divmod(time.time() - start_time, 60)
|
/external/autotest/client/site_tests/hardware_TPMTakeOwnership/ |
D | hardware_TPMTakeOwnership.py | 128 sec, ms = divmod(v/1000, 1000)
|
/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/chromium-trace/catapult/third_party/mapreduce/mapreduce/ |
D | property_range.py | 383 index, ordinal = divmod(ordinal, weight)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/ber/ |
D | encoder.py | 119 i, j = divmod(p, 8)
|
D | decoder.py | 221 oid = divmod(subId, 40)
|
/external/llvm/test/CodeGen/ARM/ |
D | divmod-eabi.ll | 3 ; Both "none-eabi" and "androideabi" must lower SREM/UREM to __aeabi_{u,i}divmod
|
/external/autotest/scheduler/ |
D | scheduler_models.py | 1105 minutes, seconds = divmod(delta.seconds, 60) 1106 hours, minutes = divmod(minutes, 60)
|