Home
last modified time | relevance | path

Searched refs:divmod (Results 1 – 14 of 14) sorted by relevance

/external/v8/test/mjsunit/
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_func, mod_func, Math.floor(0x1fffffff / 3), divisor);
[all …]
/external/autotest/client/cros/video/
Dscreenshot_file_namer.py54 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/
Drandnum.py33 nbytes, rbits = divmod(nbits, 8)
Dcommon.py101 quanta, mod = divmod(bit_size(number), 8)
/external/clang/utils/
DFuzzTest46 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/
Ddateinterval.py51 i, seconds = divmod(seconds, amount)
/external/vixl/tools/
Dprinter.py109 minutes, seconds = divmod(time.time() - start_time, 60)
/external/autotest/client/site_tests/hardware_TPMTakeOwnership/
Dhardware_TPMTakeOwnership.py128 sec, ms = divmod(v/1000, 1000)
/external/sonivox/jet_tools/JetCreator/
DJetUtils.py687 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/
Dproperty_range.py383 index, ordinal = divmod(ordinal, weight)
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/ber/
Dencoder.py119 i, j = divmod(p, 8)
Ddecoder.py221 oid = divmod(subId, 40)
/external/llvm/test/CodeGen/ARM/
Ddivmod-eabi.ll3 ; Both "none-eabi" and "androideabi" must lower SREM/UREM to __aeabi_{u,i}divmod
/external/autotest/scheduler/
Dscheduler_models.py1105 minutes, seconds = divmod(delta.seconds, 60)
1106 hours, minutes = divmod(minutes, 60)