Home
last modified time | relevance | path

Searched refs:mm_ (Results 1 – 25 of 158) sorted by relevance

1234567

/dports/devel/msp430-debug-stack/msp430-debug-stack-3.15.0.1/DLL430_v3/src/TI/DLL430/
H A DClockCalibration.cpp79 , mm_(mm) in ClockCalibrationDCO()
96 MemoryArea* ram = mm_->getMemoryArea(MemoryArea::Ram); in determineSettings()
126 if ( MemoryArea* peripheral = mm_->getMemoryArea(MemoryArea::Peripheral8bit) ) in backupSettings()
138 if ( MemoryArea* peripheral = mm_->getMemoryArea(MemoryArea::Peripheral16bit) ) in makeSettings()
155 if ( MemoryArea* peripheral = mm_->getMemoryArea(MemoryArea::Peripheral8bit) ) in restoreSettings()
180 , mm_(mm) in ClockCalibrationFLL()
200 MemoryArea* ram = mm_->getMemoryArea(MemoryArea::Ram); in determineSettings()
232 if ( MemoryArea* peripheral = mm_->getMemoryArea(MemoryArea::Peripheral8bit) ) in backupSettings()
246 if ( MemoryArea* peripheral = mm_->getMemoryArea(MemoryArea::Peripheral8bit) ) in makeSettings()
265 if ( MemoryArea* peripheral = mm_->getMemoryArea(MemoryArea::Peripheral8bit) ) in restoreSettings()
H A DClockCalibration.h80 IMemoryManager* mm_; variable
107 IMemoryManager* mm_; variable
/dports/math/fxt/fxt/src/bits/
H A Dbit-necklace.h28 ulong mm_; // mask of n ones variable
42 mm_ = (~0UL) >> (BITS_PER_LONG-n); in init()
62 if ( a_==mm_ ) { first(); return 0; } in next()
67 j_ = highest_zero_idx( a_ ^ (~mm_) ); in next()
90 if ( a_==mm_ ) { first(); return 0; } in next_lyn()
/dports/math/fxt/fxt/src/bpol/
H A Dgf2n.cc28 ulong GF2n::mm_ = 0; // 2**n - 1 == max order member in GF2n
102 mm_ = (h_<<1) - 1; in init()
151 mfact_.make_factorization(mm_, mersenne_prime_factor_tab); in init()
158 for (z=2; z<mm_; ++z) in init()
161 if ( r==mm_ ) { g_=z; break; } in init()
207 print_bin(" mm= ", mm_, pn, pc_); in print_info()
208 cout << " == " << mm_; in print_info()
252 jjassert( mfact_.is_factorization_of(mm_) ); in check()
H A Dgf2n.h52 static ulong mm_; // 2**n - 1 == max order (a Mersenne number) variable
71 explicit GF2n(const ulong i) : v_(i & mm_) { ; } in GF2n()
93 bool is_generator() const { return order() == mm_; } in is_generator()
/dports/math/fxt/fxt/src/comb/
H A Dpartition-dist-asc-len.h28 ulong mm_; // max number of parts variable
43 mm_ = k; in partition_dist_asc_len()
54 ulong max_num_parts() const { return mm_; } in max_num_parts()
63 if ( mm_ < m ) return false;
138 if ( m_ > mm_ ) return false; in OK()
/dports/astro/oskar/OSKAR-2.8.0/oskar/sky/src/
H A Doskar_update_horizon_mask.c35 const float ll_ = (float) ll, mm_ = (float) mm, nn_ = (float) nn; in OSKAR_UPDATE_HORIZON_MASK() local
58 oskar_mem_float_const(n, status), ll_, mm_, nn_, in OSKAR_UPDATE_HORIZON_MASK()
66 oskar_mem_double_const(n, status), ll_, mm_, nn_, in OSKAR_UPDATE_HORIZON_MASK()
103 (const void*)&mm : (const void*)&mm_}, in OSKAR_UPDATE_HORIZON_MASK()
/dports/math/blaze/blaze-3.8/blaze/math/dense/
H A DDynamicMatrix.h4307 , mm_ ( m.mm_ ) // The alignment adjusted number of rows in DynamicMatrix()
4313 m.mm_ = 0UL; in DynamicMatrix()
4921 mm_ = rhs.mm_;
5166 return mm_; in spacing()
5203 return mm_; in capacity()
5413 mm_ = mm; in resize()
5519 swap( mm_, m.mm_ ); in swap()
5582 swap( v_[i+j*mm_], v_[j+i*mm_] ); in transpose()
5621 cswap( v_[i+j*mm_], v_[j+i*mm_] ); in ctranspose()
5627 cswap( v_[i+j*mm_], v_[j+i*mm_] ); in ctranspose()
[all …]
H A DCustomMatrix.h3920 , mm_( m.mm_ ) // The number of elements between two columns in CustomMatrix()
3941 , mm_( m.mm_ ) // The number of elements between two columns in CustomMatrix()
3946 m.mm_ = 0UL; in CustomMatrix()
4595 mm_ = rhs.mm_;
4600 rhs.mm_ = 0UL;
4850 return mm_; in spacing()
4891 return mm_; in capacity()
5025 mm_ = 0UL; in clear()
5050 swap( mm_, m.mm_ ); in swap()
5090 swap( v_[i+j*mm_], v_[j+i*mm_] ); in transpose()
[all …]
/dports/devel/R-cran-Rcpp/Rcpp/inst/include/Rcpp/stats/random/
H A Drwilcox.h30 WilcoxGenerator( double mm_, double nn_) : mm(mm_), nn(nn_){} in WilcoxGenerator() argument
/dports/math/R-cran-MatchIt/MatchIt/R/
H A DRcppExports.R4 nn_matchC <- function(mm_, treat_, ord_, ratio, max_rat, discarded, reuse_max, distance_ = NULL, di… argument
5 ….Call(`_MatchIt_nn_matchC`, mm_, treat_, ord_, ratio, max_rat, discarded, reuse_max, distance_, di…
/dports/devel/caf/actor-framework-0.18.5/libcaf_io/src/detail/
H A Dremote_group_module.cpp17 : super(mm->system(), "remote"), mm_(mm) { in remote_group_module()
36 return mm_->remote_group(group_locator); in get()
60 mm_->resolve_remote_group_intermediary(origin, group_name, in get_impl()
/dports/math/fxt/fxt/demo/gf2n/
H A Dgf2n-demo.cc63 jjassert( r<=GF2n::mm_ ); in main()
70 GF2n e = f.pow(GF2n::mm_); in main()
H A Dgf2n-trace0-generators-demo.cc43 const ulong mm = GF2n::mm_; // max order (used for gcd()) in main()
/dports/science/dftbplus/dftbplus-19.1/prog/dftb+/lib_dftb/
H A Ddispslaterkirkw.F90433 rTmp = -0.5_dp * c6(iAt2f, iAt1) * (h2**mm_ + corr) / dist**6
440 gr(:) = -c6(iAt2f, iAt1) * diff(:) * (mm_*h2**(mm_-1)*h1*h0*nn_*dist**(nn_-8)&
441 & - 6.0_dp * (h2**mm_ + corr) * dist**(-8))
466 & - (1.0_dp - tol)**(1.0_dp/real(mm_,dp))))**(1.0_dp/real(nn_, dp))
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/arrow/gpu/
H A Dcuda_test.cc74 ASSERT_OK_AND_ASSIGN(mm_, AsCudaMemoryManager(device_->default_memory_manager())); in SetUp()
109 std::shared_ptr<CudaMemoryManager> mm_; member in arrow::cuda::TestCudaBase
161 ASSERT_OK_AND_ASSIGN(auto other_buffer, Buffer::Copy(cpu_buffer, mm_)); in TEST_F()
172 ASSERT_OK_AND_ASSIGN(other_buffer, Buffer::Copy(other_buffer, mm_)); in TEST_F()
181 ASSERT_OK_AND_ASSIGN(other_buffer, Buffer::Copy(cuda_buffer, mm_)); in TEST_F()
364 ASSERT_OK_AND_ASSIGN(auto device_buffer, Buffer::View(host_buffer, mm_)); in TEST_F()
366 ASSERT_EQ(device_buffer->memory_manager(), mm_); in TEST_F()
H A Dcuda_context.cc82 mm_ = checked_pointer_cast<CudaMemoryManager>(device->default_memory_manager()); in Init()
92 mm_ = checked_pointer_cast<CudaMemoryManager>(device->default_memory_manager()); in InitShared()
190 return checked_pointer_cast<CudaDevice>(mm_->device()); in device()
193 const std::shared_ptr<CudaMemoryManager>& memory_manager() const { return mm_; } in memory_manager()
198 std::shared_ptr<CudaMemoryManager> mm_; member in arrow::cuda::CudaContext::Impl
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/src/arrow/gpu/
H A Dcuda_test.cc74 ASSERT_OK_AND_ASSIGN(mm_, AsCudaMemoryManager(device_->default_memory_manager())); in SetUp()
109 std::shared_ptr<CudaMemoryManager> mm_; member in arrow::cuda::TestCudaBase
161 ASSERT_OK_AND_ASSIGN(auto other_buffer, Buffer::Copy(cpu_buffer, mm_)); in TEST_F()
172 ASSERT_OK_AND_ASSIGN(other_buffer, Buffer::Copy(other_buffer, mm_)); in TEST_F()
181 ASSERT_OK_AND_ASSIGN(other_buffer, Buffer::Copy(cuda_buffer, mm_)); in TEST_F()
364 ASSERT_OK_AND_ASSIGN(auto device_buffer, Buffer::View(host_buffer, mm_)); in TEST_F()
366 ASSERT_EQ(device_buffer->memory_manager(), mm_); in TEST_F()
H A Dcuda_context.cc82 mm_ = checked_pointer_cast<CudaMemoryManager>(device->default_memory_manager()); in Init()
92 mm_ = checked_pointer_cast<CudaMemoryManager>(device->default_memory_manager()); in InitShared()
190 return checked_pointer_cast<CudaDevice>(mm_->device()); in device()
193 const std::shared_ptr<CudaMemoryManager>& memory_manager() const { return mm_; } in memory_manager()
198 std::shared_ptr<CudaMemoryManager> mm_; member in arrow::cuda::CudaContext::Impl
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/arrow/gpu/
H A Dcuda_test.cc74 ASSERT_OK_AND_ASSIGN(mm_, AsCudaMemoryManager(device_->default_memory_manager())); in SetUp()
109 std::shared_ptr<CudaMemoryManager> mm_; member in arrow::cuda::TestCudaBase
161 ASSERT_OK_AND_ASSIGN(auto other_buffer, Buffer::Copy(cpu_buffer, mm_)); in TEST_F()
172 ASSERT_OK_AND_ASSIGN(other_buffer, Buffer::Copy(other_buffer, mm_)); in TEST_F()
181 ASSERT_OK_AND_ASSIGN(other_buffer, Buffer::Copy(cuda_buffer, mm_)); in TEST_F()
364 ASSERT_OK_AND_ASSIGN(auto device_buffer, Buffer::View(host_buffer, mm_)); in TEST_F()
366 ASSERT_EQ(device_buffer->memory_manager(), mm_); in TEST_F()
H A Dcuda_context.cc82 mm_ = checked_pointer_cast<CudaMemoryManager>(device->default_memory_manager()); in Init()
92 mm_ = checked_pointer_cast<CudaMemoryManager>(device->default_memory_manager()); in InitShared()
191 return checked_pointer_cast<CudaDevice>(mm_->device()); in device()
194 const std::shared_ptr<CudaMemoryManager>& memory_manager() const { return mm_; } in memory_manager()
199 std::shared_ptr<CudaMemoryManager> mm_; member in arrow::cuda::CudaContext::Impl
/dports/math/R-cran-MatchIt/MatchIt/src/
H A DRcppExports.cpp17 IntegerMatrix nn_matchC(const IntegerMatrix& mm_, const IntegerVector& treat_, const IntegerVector&…
22 Rcpp::traits::input_parameter< const IntegerMatrix& >::type mm_(mm_SEXP); in _MatchIt_nn_matchC() local
38 …rcpp_result_gen = Rcpp::wrap(nn_matchC(mm_, treat_, ord_, ratio, max_rat, discarded, reuse_max, di… in _MatchIt_nn_matchC()
/dports/devel/caf/actor-framework-0.18.5/libcaf_io/caf/detail/
H A Dremote_group_module.hpp62 io::middleman* mm_; member in caf::detail::remote_group_module
/dports/security/pam_ssh/pam_ssh-8.0/openssh/
H A Dmonitor_wrap.h32 #define PRIVSEP(x) (use_privsep ? mm_##x : x)
/dports/security/openssh-portable/openssh-8.8p1/
H A Dmonitor_wrap.h32 #define PRIVSEP(x) (use_privsep ? mm_##x : x)

1234567