Home
last modified time | relevance | path

Searched defs:divmod (Results 1 – 13 of 13) sorted by relevance

/external/pytorch/aten/src/ATen/cuda/detail/
DIntegerDivider.cuh71 C10_HOST_DEVICE inline DivMod<Value> divmod(Value n) const { in divmod() function
114 C10_HOST_DEVICE inline DivMod<unsigned int> divmod(unsigned int n) const { in divmod() function
DOffsetCalculator.cuh59 auto divmod = sizes_[dim].divmod(linear_idx); in get() local
/external/pytorch/torch/_numpy/
D_binary_ufuncs_impl.py84 def divmod(x, y): function
D_ufuncs.py189 def divmod( function
/external/pytorch/aten/src/ATen/native/cuda/
DSpectralOps.cu56 auto divmod = sizes_[dim].divmod(linear_idx); in get() local
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/fend-core-1.5.5/src/num/
Dbiguint.rs323 pub(crate) fn divmod<I: Interrupt>(&self, other: &Self, int: &I) -> FResult<(Self, Self)> { in divmod() method
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/fend-core-1.5.5/src/num/
Dbiguint.rs323 pub(crate) fn divmod<I: Interrupt>(&self, other: &Self, int: &I) -> FResult<(Self, Self)> { in divmod() method
/external/tensorflow/tensorflow/python/ops/numpy_ops/
Dnp_math_ops.py165 def divmod(x1, x2): # pylint: disable=redefined-builtin function
/external/mpdecimal/libmpdec++/
Ddecimal.hh1033 ALWAYS_INLINE std::pair<Decimal, Decimal> divmod(const Decimal& other, Context& c=context) const { in divmod() function in decimal::Decimal
/external/tensorflow/tensorflow/python/lib/core/
Dbfloat16.cc1048 inline std::pair<float, float> divmod(float a, float b) { in divmod() function
/external/python/cpython3/Modules/
D_datetimemodule.c352 divmod(int x, int y, int *r) in divmod() function
2570 PyObject *divmod; in delta_divmod() local
Dposixmodule.c6461 PyObject *divmod; in split_py_long_to_s_and_ns() local
/external/python/cpython3/Lib/
D_pydecimal.py4346 def divmod(self, a, b): member in Context