Home
last modified time | relevance | path

Searched refs:dimx (Results 1 – 25 of 390) sorted by relevance

12345678910>>...16

/dports/science/gnudatalanguage/gdl-1.0.1/src/
H A DsmoothPolyDnans.hpp50 SizeT dimy = nEl / dimx;
68 for (SizeT i = j * dimx; i < j * dimx + (2 * w + 1); ++i) {
93 v = src[dimx - i - 1 + j * dimx];
117 …for (SizeT i = w + j * dimx, ibef = j * dimx, iend = 2 * w + 1 + j * dimx; i < dimx - w - 1 + j *
137 …dest[transposed1Index(dimx - 1 - w + j*dimx, srcDim, destStride, rank)] = (n > 0) ? mean : src[dim…
143 for (SizeT i = dimx - 1 - w; i < dimx - 1; ++i) {
156 v = src[i - dimx + w + 1 + j * dimx];
159 v = src[dimx - 1 + j * dimx];
162 v = src[2 * dimx - i - w - 2 + j * dimx];
174 …dest[transposed1Index(dimx - 1 + j*dimx, srcDim, destStride, rank)] = (n > 0) ? mean2 : src[dimx -…
[all …]
H A DsmoothPolyD.hpp50 SizeT dimy = nEl / dimx;
68 for (SizeT i = j * dimx; i < j * dimx + (2 * w + 1); ++i) {
85 v = src[dimx - i - 1 + j * dimx];
101 …for (SizeT i = w + j * dimx, ibef = j * dimx, iend = 2 * w + 1 + j * dimx; i < dimx - w - 1 + j *
108 dest[transposed1Index(dimx - 1 - w + j*dimx, srcDim, destStride, rank)] = mean;
112 for (SizeT i = dimx - 1 - w; i < dimx - 1; ++i) {
118 v = src[i - dimx + w + 1 + j * dimx];
120 v = src[dimx - 1 + j * dimx];
122 v = src[2 * dimx - i - w - 2 + j * dimx];
128 dest[transposed1Index(dimx - 1 + j*dimx, srcDim, destStride, rank)] = mean;
[all …]
H A Dsmooth2d.hpp22 SizeT nEl = dimx*dimy;
31 for (SizeT i = j * dimx; i < j * dimx + (2 * w1 + 1);) {
47 v = src[dimx - i - 1 + j * dimx];
49 v = src[0 + j * dimx];
51 v = src[i + j * dimx];
75 for (SizeT i = dimx - 1 - w1; i < dimx - 1; ++i) {
81 v = src[i - dimx + w1 + 1 + j * dimx];
83 v = src[dimx - 1 + j * dimx];
85 v = src[2 * dimx - i - w1 - 2 + j * dimx];
93 for (SizeT i = dimx - w1; i < dimx; ++i) tmp[j + i * dimy] = src[i + j * dimx];
[all …]
H A Dsmooth2dnans.hpp23 SizeT nEl = dimx*dimy;
32 for (SizeT i = j * dimx; i < j * dimx + (2 * w1 + 1);) {
58 v = src[dimx - i - 1 + j * dimx];
61 v = src[0 + j * dimx];
64 v = src[i + j * dimx];
101 tmp[j + (dimx - w1 - 1) * dimy] = (n > 0) ? mean : src[ dimx - w1 - 1 + j * dimx];
107 for (SizeT i = dimx - 1 - w1; i < dimx - 1; ++i) {
120 v = src[i - dimx + w1 + 1 + j * dimx];
123 v = src[dimx - 1 + j * dimx];
126 v = src[2 * dimx - i - w1 - 2 + j * dimx];
[all …]
H A Dsmooth_inc.cpp62 void Smooth1D(SMOOTH_Ty* data, SMOOTH_Ty* res, SizeT dimx, SizeT w) { in Smooth1D() argument
67 void Smooth1DWrap(SMOOTH_Ty* data, SMOOTH_Ty* res, SizeT dimx, SizeT w) { in Smooth1DWrap() argument
72 void Smooth1DTruncate(SMOOTH_Ty* data, SMOOTH_Ty* res, SizeT dimx, SizeT w) { in Smooth1DTruncate() argument
77 void Smooth1DMirror(SMOOTH_Ty* data, SMOOTH_Ty* res, SizeT dimx, SizeT w) { in Smooth1DMirror() argument
82 void Smooth1DZero(SMOOTH_Ty* data, SMOOTH_Ty* res, SizeT dimx, SizeT w) { in Smooth1DZero() argument
92 void Smooth1DNan(SMOOTH_Ty* data, SMOOTH_Ty* res, SizeT dimx, SizeT w) { in Smooth1DNan() argument
97 void Smooth1DWrapNan(SMOOTH_Ty* data, SMOOTH_Ty* res, SizeT dimx, SizeT w) { in Smooth1DWrapNan() argument
211 SizeT dimx = nA; in Smooth() local
225 SizeT dimx = data->Dim(0); in Smooth() local
264 SizeT dimx = nA; in Smooth() local
[all …]
H A Dsmooth1d.hpp40 v = data[dimx - i - 1];
55 for (SizeT i = w, ivm = 0, ivp = 2 * w + 1; i < dimx - w - 1; ++i, ++ivm, ++ivp) {
62 res[dimx - 1 - w] = mean;
66 for (SizeT i = dimx - 1 - w; i < dimx - 1; ++i) {
71 v = data[i - dimx + w + 1];
73 v = data[dimx - 1];
75 v = data[2 * dimx - i - w - 2];
81 res[dimx - 1] = mean;
H A Dsmooth1dnans.hpp50 v = data[dimx - i - 1];
73 for (SizeT i = w, ivm = 0, ivp = 2 * w + 1; i < dimx - w - 1; ++i, ++ivm, ++ivp) {
93 if (n > 0) res[dimx - 1 - w] = mean;
99 for (SizeT i = dimx - 1 - w; i < dimx - 1; ++i) {
112 v = data[i - dimx + w + 1];
115 v = data[dimx - 1];
118 v = data[2 * dimx - i - w - 2];
130 if (n > 0) res[dimx - 1] = mean2;
/dports/science/afni/afni-AFNI_21.3.16/src/3DEdge/src/
H A Diopnm.c67 tbuf[ y*dimx + x ] = ttmp [ 3*(y*dimx + x) ]; in _convertVectBufferTo3DBuffer()
68 tbuf[ s + y*dimx + x ] = ttmp [ 3*(y*dimx + x) + 1]; in _convertVectBufferTo3DBuffer()
69 tbuf[ 2*s + y*dimx + x ] = ttmp [ 3*(y*dimx + x) + 2]; in _convertVectBufferTo3DBuffer()
79 tbuf[ y*dimx + x ] = ttmp [ 3*(y*dimx + x) ]; in _convertVectBufferTo3DBuffer()
80 tbuf[ s + y*dimx + x ] = ttmp [ 3*(y*dimx + x) + 1]; in _convertVectBufferTo3DBuffer()
161 res[ 3*(y*dimx + x) ] = the [ y*dimx + x ]; in _convertGreyBufferToVectBuffer()
162 res[ 3*(y*dimx + x) + 1] = the [ y*dimx + x ]; in _convertGreyBufferToVectBuffer()
163 res[ 3*(y*dimx + x) + 2] = the [ y*dimx + x ]; in _convertGreyBufferToVectBuffer()
173 res[ 3*(y*dimx + x) ] = the [ y*dimx + x ]; in _convertGreyBufferToVectBuffer()
174 res[ 3*(y*dimx + x) + 1] = the [ y*dimx + x ]; in _convertGreyBufferToVectBuffer()
[all …]
H A Dextrema.c704 fl_pt1 = maxima + dimx; in Remove_Gradient_NonMaxima_Slice_2D()
705 fl_pt2 = maxima + dimx + dimx - 1; in Remove_Gradient_NonMaxima_Slice_2D()
706 for (y=1; y<dimy-1; y++, fl_pt1+=dimx, fl_pt2+=dimx ) in Remove_Gradient_NonMaxima_Slice_2D()
717 fl_pt1 = gx + dimx + 1; in Remove_Gradient_NonMaxima_Slice_2D()
718 fl_pt2 = gy + dimx + 1; in Remove_Gradient_NonMaxima_Slice_2D()
970 fl_pt1 = maxima + dimx; in Remove_Gradient_NonMaxima_Slice_3D()
971 fl_pt2 = maxima + dimx + dimx - 1; in Remove_Gradient_NonMaxima_Slice_3D()
972 for (y=1; y<dimy-1; y++, fl_pt1+=dimx, fl_pt2+=dimx ) in Remove_Gradient_NonMaxima_Slice_3D()
983 fl_pt1 = gx + dimx + 1; in Remove_Gradient_NonMaxima_Slice_3D()
984 fl_pt2 = gy + dimx + 1; in Remove_Gradient_NonMaxima_Slice_3D()
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Core/ImageFunction/include/
H A DitkCovarianceImageFunction.hxx84 for ( unsigned int dimx = 0; dimx < VectorDimension; dimx++ ) in EvaluateAtIndex() local
86 mean[dimx] += pixel[dimx]; in EvaluateAtIndex()
89 covariance[dimx][dimy] += in EvaluateAtIndex()
90 static_cast< PixelComponentRealType >( pixel[dimx] ) in EvaluateAtIndex()
100 for ( unsigned int dimx = 0; dimx < VectorDimension; dimx++ ) in EvaluateAtIndex() local
104 covariance[dimx][dimy] /= rsize; in EvaluateAtIndex()
105 covariance[dimx][dimy] -= mean[dimx] * mean[dimy]; in EvaluateAtIndex()
H A DitkScatterMatrixImageFunction.hxx95 for ( unsigned int dimx = 0; dimx < VectorDimension; dimx++ ) in EvaluateAtIndex() local
99 covariance[dimx][dimy] += in EvaluateAtIndex()
100 static_cast< PixelComponentRealType >( it.GetPixel(i)[dimx] ) in EvaluateAtIndex()
105 for ( unsigned int dimx = 0; dimx < VectorDimension; dimx++ ) in EvaluateAtIndex() local
109 covariance[dimx][dimy] /= double(size); in EvaluateAtIndex()
/dports/devel/notcurses/notcurses-3.0.1/src/tests/
H A Derase.cpp10 unsigned dimy, dimx; variable
25 for(unsigned x = 0 ; x < dimx ; ++x){
28 if(x <= dimx / 2){
42 for(unsigned x = 0 ; x < dimx ; ++x){
45 if(x >= dimx / 2){
59 for(unsigned x = 0 ; x < dimx ; ++x){
76 for(unsigned x = 0 ; x < dimx ; ++x){
93 for(unsigned x = 0 ; x < dimx ; ++x){
96 if(y == dimy / 2 && x >= dimx / 2){
110 for(unsigned x = 0 ; x < dimx ; ++x){
[all …]
H A Dmedia.cpp58 unsigned dimy, dimx; variable
78 unsigned dimy, dimx; variable
94 unsigned dimy, dimx; variable
118 unsigned dimy, dimx; variable
138 CHECK(ndimx == dimx);
143 unsigned dimy, dimx; variable
168 unsigned dimy, dimx; variable
193 unsigned dimy, dimx; variable
217 unsigned dimy, dimx; variable
240 unsigned dimy, dimx; variable
[all …]
H A Dselector.cpp64 unsigned dimy, dimx; variable
65 ncplane_dim_yx(ncsp, &dimy, &dimx);
67 CHECK(5 == dimx);
85 unsigned dimy, dimx; variable
86 ncplane_dim_yx(ncsp, &dimy, &dimx);
106 unsigned dimy, dimx; variable
127 unsigned dimy, dimx; variable
153 unsigned dimy, dimx; variable
156 CHECK(15 < dimx);
264 unsigned dimy, dimx; variable
[all …]
/dports/devel/notcurses/notcurses-3.0.1/src/demo/
H A Dhighcon.c67 unsigned dimy, dimx; in highcon_demo() local
68 struct ncplane* n = notcurses_stddim_yx(nc, &dimy, &dimx); in highcon_demo()
69 int totcells = (dimy - 1) * dimx; in highcon_demo()
88 if(ncplane_putc_yx(n, (out + dimx) / dimx, out % dimx, &c) < 0){ in highcon_demo()
104 const int f = offset - 1 + dimx; in highcon_demo()
105 const int l = totcells + dimx - offset; in highcon_demo()
106 ncplane_at_yx_cell(n, f / dimx, f % dimx, &c); in highcon_demo()
110 if(ncplane_putc_yx(n, f / dimx, f % dimx, &c) < 0){ in highcon_demo()
113 ncplane_at_yx_cell(n, l / dimx, l % dimx, &c); in highcon_demo()
117 if(ncplane_putc_yx(n, l / dimx, l % dimx, &c) < 0){ in highcon_demo()
/dports/lang/ocaml-nox11/ocaml-4.05.0/testsuite/tests/lib-bigarray-2/
H A Dbigarrf.f3 integer dimx, dimy local
4 parameter (dimx = 8, dimy = 6)
5 real ftab(dimx, dimy)
9 do 100 x = 1, dimx
16 subroutine printtab(tab, dimx, dimy) argument
18 integer dimx, dimy local
19 real tab(dimx, dimy)
22 do 200 x = 1, dimx
/dports/lang/ocaml/ocaml-4.05.0/testsuite/tests/lib-bigarray-2/
H A Dbigarrf.f3 integer dimx, dimy local
4 parameter (dimx = 8, dimy = 6)
5 real ftab(dimx, dimy)
9 do 100 x = 1, dimx
16 subroutine printtab(tab, dimx, dimy) argument
18 integer dimx, dimy local
19 real tab(dimx, dimy)
22 do 200 x = 1, dimx
/dports/devel/py-xarray/xarray-0.20.1/doc/_static/
H A Ddataset-diagram-square-logo.tex56 \define@key{tikzcuboid}{dimx}[\tikzcuboid@dimx]{\renewcommand{\tikzcuboid@dimx}{#1}}
94 \newcommand{\dimx}{\tikzcuboid@dimx}
119 …oid@fillright,draw=\tikzcuboid@lineright] (\dimx,\lowy,\lowz) -- (\dimx,\lowy,\z) -- (\dimx,\y,\z)…
125 …\draw[\tikzcuboid@emphstyle](\dimx,0,0) -- (\dimx,\dimy,0) -- (\dimx,\dimy,\dimz) -- (\dimx,0,\dim…
144 dimx=4,%
164 dimx=4,%
184 dimx=0,%
204 dimx=0,%
224 % dimx=0,%
252 dimx=0,%
[all …]
H A Ddataset-diagram-logo.tex56 \define@key{tikzcuboid}{dimx}[\tikzcuboid@dimx]{\renewcommand{\tikzcuboid@dimx}{#1}}
94 \newcommand{\dimx}{\tikzcuboid@dimx}
119 …oid@fillright,draw=\tikzcuboid@lineright] (\dimx,\lowy,\lowz) -- (\dimx,\lowy,\z) -- (\dimx,\y,\z)…
125 …\draw[\tikzcuboid@emphstyle](\dimx,0,0) -- (\dimx,\dimy,0) -- (\dimx,\dimy,\dimz) -- (\dimx,0,\dim…
144 dimx=4,%
164 dimx=4,%
184 dimx=0,%
204 dimx=0,%
224 % dimx=0,%
252 dimx=0,%
[all …]
H A Ddataset-diagram.tex56 \define@key{tikzcuboid}{dimx}[\tikzcuboid@dimx]{\renewcommand{\tikzcuboid@dimx}{#1}}
94 \newcommand{\dimx}{\tikzcuboid@dimx}
119 …oid@fillright,draw=\tikzcuboid@lineright] (\dimx,\lowy,\lowz) -- (\dimx,\lowy,\z) -- (\dimx,\y,\z)…
125 …\draw[\tikzcuboid@emphstyle](\dimx,0,0) -- (\dimx,\dimy,0) -- (\dimx,\dimy,\dimz) -- (\dimx,0,\dim…
144 dimx=4,%
164 dimx=4,%
184 dimx=0,%
204 dimx=0,%
225 dimx=4,%
239 dimx=0,%
[all …]
/dports/emulators/mess/mame-mame0226/src/devices/video/
H A Depic12in.hxx44 src_x += (dimx-1); in FUNCNAME()
62 if ((src_x & 0x1fff) < ((src_x-(dimx-1)) & 0x1fff)) in FUNCNAME()
68 if ((src_x & 0x1fff) > ((src_x+(dimx-1)) & 0x1fff)) in FUNCNAME()
76 const int dst_x_end = dst_x_start + dimx; in FUNCNAME()
82 dimx -= (dst_x_end-1) - clip->max_x; in FUNCNAME()
85 if (dimy > starty && dimx > startx) in FUNCNAME()
87 blit_delay += (dimy - starty) * (dimx - startx); in FUNCNAME()
128 const u32* end = bmp + (dimx - startx); in FUNCNAME()
132 const int width = dimx-startx; in FUNCNAME()
/dports/emulators/mame/mame-mame0226/src/devices/video/
H A Depic12in.hxx44 src_x += (dimx-1); in FUNCNAME()
62 if ((src_x & 0x1fff) < ((src_x-(dimx-1)) & 0x1fff)) in FUNCNAME()
68 if ((src_x & 0x1fff) > ((src_x+(dimx-1)) & 0x1fff)) in FUNCNAME()
76 const int dst_x_end = dst_x_start + dimx; in FUNCNAME()
82 dimx -= (dst_x_end-1) - clip->max_x; in FUNCNAME()
85 if (dimy > starty && dimx > startx) in FUNCNAME()
87 blit_delay += (dimy - starty) * (dimx - startx); in FUNCNAME()
128 const u32* end = bmp + (dimx - startx); in FUNCNAME()
132 const int width = dimx-startx; in FUNCNAME()
/dports/math/octave/octave-6.4.0/libinterp/corefcn/
H A Ddot.cc104 dim_vector dimx = argx.dims (); variable
106 bool match = dimx == dimy;
110 dimx = dimx.redim (1);
111 argx = argx.reshape (dimx);
114 match = dimx == dimy;
122 dim = dimx.first_non_singleton ();
301 int nd = dimx.ndims (); in get_blkmm_dims()
303 m = octave::to_f77_int (dimx(0)); in get_blkmm_dims()
304 k = octave::to_f77_int (dimx(1)); in get_blkmm_dims()
317 match = (dimx(i) == dimy(i)); in get_blkmm_dims()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/tony/
H A Dgfxcore.h66 RMGfxBuffer(int dimx, int dimy, int nBpp);
74 void create(int dimx, int dimy, int nBpp);
192 virtual int init(uint32 resID, int dimx, int dimy, bool bLoadPalette = false);
193 virtual int init(const byte *buf, int dimx, int dimy, bool bLoadPalette = false);
219 RMGfxSourceBuffer16(int dimx, int dimy);
223 void create(int dimx, int dimy);
262 RMGfxSourceBuffer8(int dimx, int dimy);
266 void create(int dimx, int dimy);
424 RMGfxSourceBuffer4(int dimx, int dimy);
427 void create(int dimx, int dimy);
[all …]
/dports/math/xlife++/xlifepp-sources-v2.0.1-2018-05-09/src/arpackppSupport/
H A DARInterface.hpp802 ARInterfaceRSVDmGEnReg(TermMatrix& A, int dimn, int dimx) in ARInterfaceRSVDmGEnReg() argument
803 : ARInterfaceRSVD(A, dimn, dimx, "ARInterfaceRSVDmGEnReg") {} in ARInterfaceRSVDmGEnReg()
813 ARInterfaceRSVDmLTnReg(TermMatrix& A, int dimn, int dimx) in ARInterfaceRSVDmLTnReg() argument
814 : ARInterfaceRSVD(A, dimn, dimx, "ARInterfaceRSVDmLTnReg") {} in ARInterfaceRSVDmLTnReg()
825 : ARInterfaceRSVD(A, dimn, dimx, "ARInterfaceRSVDmGEnShf", sigma) {} in ARInterfaceRSVDmGEnShf()
836 : ARInterfaceRSVD(A, dimn, dimx, "ARInterfaceRSVDmLTnShf", sigma) {} in ARInterfaceRSVDmLTnShf()
876 ARInterfaceCSVDmGEnReg(TermMatrix& A, int dimn, int dimx) in ARInterfaceCSVDmGEnReg() argument
877 : ARInterfaceCSVD(A, dimn, dimx, "ARInterfaceCSVDmGEnReg") {} in ARInterfaceCSVDmGEnReg()
887 ARInterfaceCSVDmLTnReg(TermMatrix& A, int dimn, int dimx) in ARInterfaceCSVDmLTnReg() argument
888 : ARInterfaceCSVD(A, dimn, dimx, "ARInterfaceCSVDmLTnReg") {} in ARInterfaceCSVDmLTnReg()
[all …]

12345678910>>...16