Home
last modified time | relevance | path

Searched refs:lcm (Results 1 – 25 of 33) sorted by relevance

12

/OK3568_Linux_fs/kernel/lib/math/
H A Dlcm.c8 unsigned long lcm(unsigned long a, unsigned long b) in lcm() function
15 EXPORT_SYMBOL_GPL(lcm);
19 unsigned long l = lcm(a, b); in lcm_not_zero()
H A DMakefile2 obj-y += div64.o gcd.o lcm.o int_pow.o int_sqrt.o reciprocal_div.o
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/experimental/
H A Dnumeric75 lcm(_Mn __m, _Nn __n)
78 "std::experimental::lcm arguments must be integers");
80 "std::experimental::lcm arguments must be integers");
82 "std::experimental::lcm arguments must not be bool");
84 "std::experimental::lcm arguments must not be bool");
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/experimental/
H A Dnumeric75 lcm(_Mn __m, _Nn __n)
78 "std::experimental::lcm arguments must be integers");
80 "std::experimental::lcm arguments must be integers");
82 "std::experimental::lcm arguments must not be bool");
84 "std::experimental::lcm arguments must not be bool");
/OK3568_Linux_fs/buildroot/package/gnuradio/
H A D0005-boost-remove-deprecated-math-common_factor.hpp.patch6 Remove deprecation warning and prefer using std::{lcm,gcd} to Boost.
56 +#define GR_LCM std::lcm
63 +#define GR_LCM boost::integer::lcm
70 +#define GR_LCM boost::math::lcm
137 - d_interps_per_symbol_n = boost::math::lcm(d_ted->inputs_per_symbol(), d_osps_n);
161 - d_interps_per_symbol_n = boost::math::lcm(d_ted->inputs_per_symbol(), d_osps_n);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/integer/
H A 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
474 return lcm(a, lcm(b, c, args...)); in lcm()
483 …tic_cast<Integer>(gcd(a.numerator(), b.numerator())), static_cast<Integer>(lcm(a.denominator(), b.… in gcd()
487 …:numeric_limits<Integer>::is_specialized, boost::rational<Integer> >::type lcm(boost::rational<Int… in lcm() function
489 …return boost::rational<Integer>(static_cast<Integer>(lcm(a.numerator(), b.numerator())), static_ca… in lcm()
529 d = lcm(d, *first); in lcm_range()
567 return boost::integer::lcm(a, b); in operator ()()
/OK3568_Linux_fs/kernel/include/linux/
H A Dlcm.h7 unsigned long lcm(unsigned long a, unsigned long b) __attribute_const__;
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A Dnumeric135 constexpr common_type_t<M,N> lcm(M m, N n); // C++17
506 lcm(_Tp __m, _Up __n)
508 …static_assert((is_integral<_Tp>::value && is_integral<_Up>::value), "Arguments to lcm must be inte…
509 …static_assert((!is_same<typename remove_cv<_Tp>::type, bool>::value), "First argument to lcm canno…
510 …static_assert((!is_same<typename remove_cv<_Up>::type, bool>::value), "Second argument to lcm cann…
517 _LIBCPP_ASSERT((numeric_limits<_Rp>::max() / __val1 > __val2), "Overflow in lcm");
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A Dnumeric135 constexpr common_type_t<M,N> lcm(M m, N n); // C++17
506 lcm(_Tp __m, _Up __n)
508 …static_assert((is_integral<_Tp>::value && is_integral<_Up>::value), "Arguments to lcm must be inte…
509 …static_assert((!is_same<typename remove_cv<_Tp>::type, bool>::value), "First argument to lcm canno…
510 …static_assert((!is_same<typename remove_cv<_Up>::type, bool>::value), "Second argument to lcm cann…
517 _LIBCPP_ASSERT((numeric_limits<_Rp>::max() / __val1 > __val2), "Overflow in lcm");
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/math/
H A Dcommon_factor_rt.hpp16 using boost::integer::lcm;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/
H A Drational.hpp107 IntType lcm(IntType n, IntType m) in lcm() function
110 return integer::lcm( n, m ); in lcm()
980 integer::lcm(a.denominator(), b.denominator())); in operator ()()
993 return result_type(integer::lcm(a.numerator(), b.numerator()), in operator ()()
/OK3568_Linux_fs/kernel/drivers/media/i2c/
H A Dsmiapp-pll.c220 more_mul_factor = lcm(div, pll->pre_pll_clk_div) / div; in __smiapp_pll_calculate()
222 more_mul_factor = lcm(more_mul_factor, op_limits->min_sys_clk_div); in __smiapp_pll_calculate()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/
H A Dnumeric146 lcm(_Mn __m, _Nn __n) noexcept
148 static_assert(is_integral_v<_Mn>, "std::lcm arguments must be integers");
149 static_assert(is_integral_v<_Nn>, "std::lcm arguments must be integers");
150 static_assert(_Mn(2) == 2, "std::lcm arguments must not be bool");
151 static_assert(_Nn(2) == 2, "std::lcm arguments must not be bool");
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/
H A Dnumeric146 lcm(_Mn __m, _Nn __n) noexcept
148 static_assert(is_integral_v<_Mn>, "std::lcm arguments must be integers");
149 static_assert(is_integral_v<_Nn>, "std::lcm arguments must be integers");
150 static_assert(_Mn(2) == 2, "std::lcm arguments must not be bool");
151 static_assert(_Nn(2) == 2, "std::lcm arguments must not be bool");
/OK3568_Linux_fs/kernel/net/sunrpc/auth_gss/
H A Dgss_krb5_keys.c86 ulcm = lcm(inbits, outbits); in krb5_nfold()
/OK3568_Linux_fs/kernel/drivers/media/platform/xilinx/
H A Dxilinx-dma.c562 align = lcm(dma->align, info->bpp); in __xvip_dma_try_format()
/OK3568_Linux_fs/kernel/sound/soc/atmel/
H A Dmchp-i2s-mcc.c416 lcm_rate = lcm(sysclk, bclk); in mchp_i2s_mcc_config_divs()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dpoly-int.h1710 C lcm = least_common_multiple (NCa (a.coeffs[i]), NCb (b.coeffs[i]));
1711 C amul = lcm / a.coeffs[i];
1712 C bmul = lcm / b.coeffs[i];
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dpoly-int.h1710 C lcm = least_common_multiple (NCa (a.coeffs[i]), NCb (b.coeffs[i]));
1711 C amul = lcm / a.coeffs[i];
1712 C bmul = lcm / b.coeffs[i];
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/multiprecision/cpp_int/
H A Dmisc.hpp531 *result.limbs() = boost::integer::lcm(*a.limbs(), *b.limbs()); in eval_lcm()
/OK3568_Linux_fs/kernel/drivers/video/fbdev/
H A Dda8xx-fb.c1422 ulcm = lcm((lcdc_info->xres * lcd_cfg->bpp)/8, PAGE_SIZE); in fb_probe()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/multiprecision/detail/
H A Ddefault_ops.hpp3144 BINARY_OP_FUNCTOR(lcm, number_kind_integer) in UNARY_OP_FUNCTOR()
3205 using boost::multiprecision::lcm;
3215 using boost::multiprecision::lcm;
/OK3568_Linux_fs/kernel/mm/
H A Dpercpu.c1314 lcm_align = lcm(PAGE_SIZE, PCPU_BITMAP_BLOCK_SIZE); in pcpu_alloc_first_chunk()
/OK3568_Linux_fs/kernel/drivers/scsi/hisi_sas/
H A Dhisi_sas_main.c2384 s = max(lcm(max_command_entries_ru, sz_slot_buf_ru), PAGE_SIZE); in hisi_sas_alloc()
/OK3568_Linux_fs/external/linux-rga/docs/
H A DRockchip_Developer_Guide_RGA_CN.md525 > 1). 对齐要求计算公式:lcm(bpp,byte_stride * 8) / pixel_stride。

12