Home
last modified time | relevance | path

Searched refs:oldnd (Results 1 – 8 of 8) sorted by relevance

/dports/devel/py-numba/numba-0.51.2/numba/
H A D_helperlib.c425 int oldnd; in numba_attempt_nocopy_reshape() local
431 oldnd = 0; in numba_attempt_nocopy_reshape()
438 olddims[oldnd] = dims[oi]; in numba_attempt_nocopy_reshape()
439 oldstrides[oldnd] = strides[oi]; in numba_attempt_nocopy_reshape()
440 oldnd++; in numba_attempt_nocopy_reshape()
449 for (oi = 0; oi < oldnd; oi++) { in numba_attempt_nocopy_reshape()
469 while (ni < newnd && oi < oldnd) { in numba_attempt_nocopy_reshape()
/dports/math/py-numpy/numpy-1.20.3/numpy/core/src/multiarray/
H A Dshape.c367 int oldnd; in _attempt_nocopy_reshape() local
373 oldnd = 0; in _attempt_nocopy_reshape()
380 olddims[oldnd] = PyArray_DIMS(self)[oi]; in _attempt_nocopy_reshape()
381 oldstrides[oldnd] = PyArray_STRIDES(self)[oi]; in _attempt_nocopy_reshape()
382 oldnd++; in _attempt_nocopy_reshape()
391 while (ni < newnd && oi < oldnd) { in _attempt_nocopy_reshape()
H A Dctors.c274 npy_intp *newstrides, int oldnd) in _update_descr_and_dimensions() argument
287 mydim = newdims + oldnd; in _update_descr_and_dimensions()
297 newnd = oldnd + numnew; in _update_descr_and_dimensions()
315 mystrides = newstrides + oldnd; in _update_descr_and_dimensions()
/dports/devel/py-numba/numba-0.51.2/numba/misc/
H A Ddummyarray.py263 oldnd = self.ndim
300 oldnd,
/dports/cad/gmsh/gmsh-4.9.2-source/contrib/Netgen/libsrc/meshing/
H A Dmeshclass.cpp1250 int oldnd = GetNDomains(); in Merge() local
1281 if(domin > 0) domin += oldnd; in Merge()
1282 if(domout > 0) domout += oldnd; in Merge()
1399 el.SetIndex(hi+oldnd); in Merge()
1444 SetMaterial (nr+oldnd, mat.c_str()); in Merge()
/dports/science/elmerfem/elmerfem-release-9.0/ElmerGUI/netgen/libsrc/meshing/
H A Dmeshclass.cpp1170 int oldnd = GetNDomains(); in Merge() local
1201 if(domin > 0) domin += oldnd; in Merge()
1202 if(domout > 0) domout += oldnd; in Merge()
1319 el.SetIndex(hi+oldnd); in Merge()
1364 SetMaterial (nr+oldnd, mat.c_str()); in Merge()
/dports/cad/netgen/netgen-6.2.2105/libsrc/meshing/
H A Dmeshclass.cpp1803 int oldnd = GetNDomains(); in Merge() local
1834 if(domin > 0) domin += oldnd; in Merge()
1835 if(domout > 0) domout += oldnd; in Merge()
1954 el.SetIndex(hi+oldnd); in Merge()
1999 SetMaterial (nr+oldnd, mat.c_str()); in Merge()
/dports/devel/py-pyopencl/pyopencl-2018.2/pyopencl/
H A Darray.py1519 oldnd = len(olddims)
1528 while ni < newnd and oi < oldnd: