Home
last modified time | relevance | path

Searched defs:astep (Results 1 – 25 of 123) sorted by relevance

12345

/dports/graphics/opencv/opencv-4.5.3/modules/core/src/
H A Dmatrix_decomp.cpp15 LUImpl(_Tp* A, size_t astep, int m, _Tp* b, size_t bstep, int n, _Tp eps) in LUImpl()
73 int LU32f(float* A, size_t astep, int m, float* b, size_t bstep, int n) in LU32f()
84 int LU64f(double* A, size_t astep, int m, double* b, size_t bstep, int n) in LU64f()
95 CholImpl(_Tp* A, size_t astep, int m, _Tp* b, size_t bstep, int n) in CholImpl()
173 bool Cholesky32f(float* A, size_t astep, int m, float* b, size_t bstep, int n) in Cholesky32f()
182 bool Cholesky64f(double* A, size_t astep, int m, double* b, size_t bstep, int n) in Cholesky64f()
201 QRImpl(_Tp* A, size_t astep, int m, int n, int k, _Tp* b, size_t bstep, _Tp* hFactors, _Tp eps) in QRImpl()
317 int LU(float* A, size_t astep, int m, float* b, size_t bstep, int n) in LU()
322 int LU(double* A, size_t astep, int m, double* b, size_t bstep, int n) in LU()
327 bool Cholesky(float* A, size_t astep, int m, float* b, size_t bstep, int n) in Cholesky()
[all …]
H A Dlapack.cpp68 int LU(float* A, size_t astep, int m, float* b, size_t bstep, int n) in LU()
75 int LU(double* A, size_t astep, int m, double* b, size_t bstep, int n) in LU()
82 bool Cholesky(float* A, size_t astep, int m, float* b, size_t bstep, int n) in Cholesky()
89 bool Cholesky(double* A, size_t astep, int m, double* b, size_t bstep, int n) in Cholesky()
115 JacobiImpl_( _Tp* A, size_t astep, _Tp* W, _Tp* V, size_t vstep, int n, uchar* buf ) in JacobiImpl_()
413 JacobiSVDImpl_(_Tp* At, size_t astep, _Tp* _W, _Tp* Vt, size_t vstep, in JacobiSVDImpl_()
591 static void JacobiSVD(float* At, size_t astep, float* W, float* Vt, size_t vstep, int m, int n, int… in JacobiSVD()
596 static void JacobiSVD(double* At, size_t astep, double* W, double* Vt, size_t vstep, int m, int n, … in JacobiSVD()
1236 size_t astep = method == DECOMP_SVD && !is_normal ? alignSize(m*esz, 16) : vstep; in solve() local
1440 size_t elemSize = src.elemSize(), astep = alignSize(n*elemSize, 16); in eigen() local
[all …]
/dports/science/afni/afni-AFNI_21.3.16/src/
H A Dexx.c31 int astep,bstep,cstep , na,nb,nc ; in getplane_byte() local
53 int astep,bstep,cstep , na,nb,nc ; in putplane_byte() local
75 int astep,bstep,cstep , na,nb,nc ; in swaptest() local
H A Dextor.c110 int astep,bstep,cstep , na,nb,nc , nxy=nx*ny ; in extract_assign_directions() local
129 int astep,bstep,cstep , na,nb,nc ; in extract_byte_nn() local
174 int astep,bstep,cstep , na,nb,nc ; in extract_byte_lifl() local
233 int astep,bstep,cstep , na,nb,nc ; in extract_byte_liby() local
306 int astep,bstep,cstep , na,nb,nc , nts,dts1,dts2 ; in extract_byte_ts() local
419 int astep,bstep,cstep , na,nb,nc , nfs,dfs1,dfs2,dfs3,dfs4 , ap,bp ; in extract_byte_fs() local
609 int astep,bstep,cstep , na,nb,nc ; in extract_byte_speedtest() local
662 int astep,bstep,cstep , na,nb,nc ; in getplane_byte() local
684 int astep,bstep,cstep , na,nb,nc ; in putplane_byte() local
721 int astep,bstep,cstep , na,nb,nc , use_tmask ; in main() local
H A Dthd_shearwarp.c65 int astep,bstep,cstep , na,nb,nc , nxy=nx*ny ; in extract_assign_directions() local
84 int astep,bstep,cstep , na,nb,nc ; in extract_byte_nn() local
140 int astep,bstep,cstep , na,nb,nc , nts,dts1,dts2 ; in extract_byte_ts() local
H A Dcox_render.c821 int astep,bstep,cstep , na,nb,nc , nxy=nx*ny ; in extract_assign_directions() local
840 int astep,bstep,cstep , na,nb,nc ; in extract_byte_nn() local
896 int astep,bstep,cstep , na,nb,nc ; in extract_rgba_nn() local
1057 int astep,bstep,cstep , na,nb,nc , nts,dts1=0,dts2=0 , nn ; in extract_byte_tsx() local
1189 int astep,bstep,cstep , na,nb,nc , nn ; in extract_byte_lix() local
1279 int astep,bstep,cstep , na,nb,nc , nn ; in extract_byte_lixx() local
/dports/graphics/opencv/opencv-4.5.3/3rdparty/openvx/hal/
H A Dopenvx_hal.cpp180 int ovx_hal_mul(const T *a, size_t astep, const T *b, size_t bstep, T *c, size_t cstep, int w, int … in ovx_hal_mul()
250 int ovx_hal_not(const uchar *a, size_t astep, uchar *c, size_t cstep, int w, int h) in ovx_hal_not()
585 int ovx_hal_filter(cvhalFilter2D *filter_context, uchar *a, size_t astep, uchar *b, size_t bstep, i… in ovx_hal_filter()
811 int ovx_hal_morph(cvhalFilter2D *filter_context, uchar *a, size_t astep, uchar *b, size_t bstep, in… in ovx_hal_morph()
854 int ovx_hal_cvtBGRtoBGR(const uchar * a, size_t astep, uchar * b, size_t bstep, int w, int h, int d… in ovx_hal_cvtBGRtoBGR()
890 int ovx_hal_cvtGraytoBGR(const uchar * a, size_t astep, uchar * b, size_t bstep, int w, int h, int … in ovx_hal_cvtGraytoBGR()
925 int ovx_hal_cvtTwoPlaneYUVtoBGR(const uchar * a, size_t astep, uchar * b, size_t bstep, int w, int … in ovx_hal_cvtTwoPlaneYUVtoBGR()
971 int ovx_hal_cvtThreePlaneYUVtoBGR(const uchar * a, size_t astep, uchar * b, size_t bstep, int w, in… in ovx_hal_cvtThreePlaneYUVtoBGR()
1021 int ovx_hal_cvtBGRtoThreePlaneYUV(const uchar * a, size_t astep, uchar * b, size_t bstep, int w, in… in ovx_hal_cvtBGRtoThreePlaneYUV()
1069 int ovx_hal_cvtOnePlaneYUVtoBGR(const uchar * a, size_t astep, uchar * b, size_t bstep, int w, int … in ovx_hal_cvtOnePlaneYUVtoBGR()
[all …]
/dports/math/py-pymc3/pymc-3.11.4/pymc3/step_methods/
H A Dmetropolis.py196 def astep(self, q0): member in Metropolis
318 def astep(self, q0, logp): member in BinaryMetropolis
398 def astep(self, q0, logp): member in BinaryGibbsMetropolis
645 def astep(self, q0): member in DEMetropolis
806 def astep(self, q0): member in DEMetropolisZ
H A Dmlda.py93 def astep(self, q0): member in MetropolisMLDA
159 def astep(self, q0): member in DEMetropolisZMLDA
705 def astep(self, q0): member in MLDA
H A Dslicer.py63 def astep(self, q0, logp): member in Slice
H A Delliptical_slice.py97 def astep(self, q0, logp): member in EllipticalSlice
H A Dsgmcmc.py197 def astep(self, q0): member in BaseStochasticGradient
/dports/devel/gitlab-shell/gitlab-shell-65b8ec55bebd0aea64ac52b9878bafcc2ad992d3/vendor/gitlab.com/gitlab-org/gitaly/v14/internal/gitaly/service/smarthttp/
H A Dinforefs.go71 return status.Errorf(codes.Internal, "GetInfoRefs: cmd: %v", err)
/dports/science/qmcpack/qmcpack-3.11.0/src/Numerics/
H A DOneDimGridFactory.cpp28 RealType astep = 1.25e-2; in createGrid() local
/dports/math/sisl/SISL-SISL-4.6.0-44-g9114631/src/
H A Ds9adstep.c57 double etang[],double eptan1[],double eptan2[],double astep,int *jstat) in s9adstep()
H A Ds9adsimp.c56 double epgd1[],double etang[],double eptan[],double astep,int *jstat) in s9adsimp()
H A Ds9iterimp.c54 double eimpli[],int ideg,double astep,double aepsge, in s9iterimp()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/tracking/src/
H A Dprecomp.hpp93 inline choleskyDecomposition( const _Tp* A, size_t astep, int asize, _Tp* L, size_t lstep ) in choleskyDecomposition()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudev/include/opencv2/cudev/ptr2d/detail/
H A Dgpumat.hpp113 __host__ GpuMat_<T>::GpuMat_(int arows, int acols, T* adata, size_t astep) in GpuMat_()
119 __host__ GpuMat_<T>::GpuMat_(Size asize, T* adata, size_t astep) in GpuMat_()
/dports/math/py-pymc3/pymc-3.11.4/pymc3/step_methods/hmc/
H A Dbase_hmc.py133 def astep(self, q0): member in BaseHMC
/dports/audio/infamous-plugins-lv2/infamousPlugins-0.3.0-7-g778e591/src/casynth/
H A Dcasynth.c174 double astep = synth->waves.func_domain*(*synth->amod_freq_p)/synth->sample_rate; in run_casynth() local
/dports/databases/mariadb104-client/mariadb-10.4.24/storage/rocksdb/mysql-test/rocksdb/t/
H A Dconsistent_snapshot.inc1 #
2 # TRANSACTION WITH CONSISTENT SNAPSHOT
3 #
4
5 --enable_connect_log
6
7 # Save the initial number of concurrent sessions
8 --source include/count_sessions.inc
9
10 --disable_warnings
[all …]
/dports/games/bzflag-server/bzflag-2.4.22/src/geometry/
H A DAnimatedTreads.cxx162 const float astep = (float)((M_PI * 2.0) / divs); in buildTread() local
408 const float astep = (float)((M_PI * 2.0) / (double)divs); in buildWheel() local
/dports/games/bzflag/bzflag-2.4.22/src/geometry/
H A DAnimatedTreads.cxx162 const float astep = (float)((M_PI * 2.0) / divs); in buildTread() local
408 const float astep = (float)((M_PI * 2.0) / (double)divs); in buildWheel() local
/dports/science/libefp/libefp-1.5.0/efpmd/src/
H A Dgtest.c91 double astep = cfg_get_double(state->cfg, "num_step_angle"); in test_fgrad() local

12345