Home
last modified time | relevance | path

Searched defs:lcm (Results 1 – 25 of 132) sorted by relevance

123456

/aosp_15_r20/external/rust/android-crates-io/crates/num-integer/src/
Dlib.rs126 fn lcm(&self, other: &Self) -> Self; in lcm() method
393 pub fn lcm<T: Integer>(x: T, y: T) -> T { in lcm() function
506 let lcm = if egcd.gcd.is_zero() { localVariable
530 let lcm = (*self * (*other / gcd)).abs(); localVariable
886 let lcm = if egcd.gcd.is_zero() { localVariable
908 let lcm = *self * (*other / gcd); localVariable
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math3/util/
H A DArithmeticUtils.java430 public static int lcm(int a, int b) throws MathArithmeticException { in lcm() method in ArithmeticUtils
434 int lcm = FastMath.abs(ArithmeticUtils.mulAndCheck(a / gcd(a, b), b)); in lcm() local
460 public static long lcm(long a, long b) throws MathArithmeticException { in lcm() method in ArithmeticUtils
464 long lcm = FastMath.abs(ArithmeticUtils.mulAndCheck(a / gcd(a, b), b)); in lcm() local
/aosp_15_r20/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
H A DMath.java22 public static long lcm(long a, long b) { in lcm() method in Math
26 public static int lcm(int a, int b) { in lcm() method in Math
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/integer/include/boost/integer/
Dcommon_factor_rt.hpp455 inline BOOST_CXX14_CONSTEXPR Integer lcm(Integer const &a, Integer const &b) BOOST_GCD_NOEXCEPT(Int… in lcm() function
472 inline BOOST_CXX14_CONSTEXPR Integer lcm(Integer const &a, Integer const &b, Integer const& c, Args… in lcm() function
487 …:numeric_limits<Integer>::is_specialized, boost::rational<Integer> >::type lcm(boost::rational<Int… in lcm() function
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/ratio/include/boost/ratio/detail/mpl/
Dlcm.hpp49 struct lcm struct
/aosp_15_r20/external/libcxx/test/std/numerics/numeric.ops/numeric.ops.lcm/
H A Dlcm.pass.cpp141 TEST_IGNORE_NODISCARD std::lcm(INT_MIN, 2UL); // this used to trigger UBSAN in main() member in main::std
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/numerics/numeric.ops/numeric.ops.lcm/
H A Dlcm.pass.cpp139 TEST_IGNORE_NODISCARD std::lcm(INT_MIN, 2UL); // this used to trigger UBSAN in main() member in main::std
/aosp_15_r20/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/crypto/generators/
H A DRSAKeyPairGenerator.java61 BigInteger p, q, n, d, e, pSub1, qSub1, gcd, lcm; in generateKeyPair() local
/aosp_15_r20/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
H A DRSAKeyPairGenerator.java59 BigInteger p, q, n, d, e, pSub1, qSub1, gcd, lcm; in generateKeyPair() local
/aosp_15_r20/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/generators/
H A DRSAKeyPairGenerator.java61 BigInteger p, q, n, d, e, pSub1, qSub1, gcd, lcm; in generateKeyPair() local
/aosp_15_r20/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/
H A Dhandler-utils.js74 function lcm(a, b) { function
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/container/include/boost/container/detail/
Dmath_functions.hpp65 inline Integer lcm(const Integer & A, const Integer & B) in lcm() function
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/container/src/
Ddlmalloc_ext_2_8_6.c427 size_t lcm; in calculate_lcm_and_needs_backwards_lcmed() local
569 size_t lcm; in internal_grow_both_sides() local
/aosp_15_r20/external/llvm/lib/CodeGen/
H A DTargetSchedule.cpp47 static unsigned lcm(unsigned A, unsigned B) { in lcm() function
/aosp_15_r20/external/rust/android-crates-io/crates/num-bigint/src/
Dbiguint.rs256 fn lcm(&self, other: &BigUint) -> BigUint { in lcm() method
269 let lcm = if gcd.is_zero() { in gcd_lcm() localVariable
Dbigint.rs448 fn lcm(&self, other: &BigInt) -> BigInt { in lcm() method
464 let lcm = if egcd.gcd.is_zero() { in extended_gcd_lcm() localVariable
/aosp_15_r20/external/deqp/framework/delibs/decpp/
H A DdeDefs.hpp149 T lcm(T x, T y) in lcm() function
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DTargetSchedule.cpp57 static unsigned lcm(unsigned A, unsigned B) { in lcm() function
/aosp_15_r20/external/icu/icu4j/main/core/src/main/java/com/ibm/icu/text/
H A DNFRuleSet.java692 private static long lcm(long x, long y) { in lcm() method in NFRuleSet
/aosp_15_r20/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DNFRuleSet.java693 private static long lcm(long x, long y) { in lcm() method in NFRuleSet
/aosp_15_r20/external/coreboot/src/northbridge/intel/ironlake/
H A Dquickpath.c20 static u32 lcm(u32 a, u32 b) in lcm() function
/aosp_15_r20/hardware/google/gchips/gralloc4/src/core/
Dmali_gralloc_bufferallocation.cpp431 T lcm(T a, T b) in lcm() function
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/rational/include/boost/
Drational.hpp108 IntType lcm(IntType n, IntType m) in lcm() function
/aosp_15_r20/external/tensorflow/tensorflow/dtensor/cc/
H A Dtensor_layout.cc143 int lcm = this->num_shards_per_dim[i] * other.num_shards_per_dim[i] / in operator ==() local
/aosp_15_r20/external/tensorflow/tensorflow/python/ops/numpy_ops/
H A Dnp_math_ops.py522 def lcm(x1, x2): # pylint: disable=missing-function-docstring function

123456