Home
last modified time | relevance | path

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

/dports/science/libefp/libefp-1.5.0/src/
H A Dpoldirect.c36 copy_matrix(double *dst, size_t n, size_t off_i, size_t off_j, const mat_t *m) in copy_matrix() argument
38 dst[n * (3 * off_i + 0) + 3 * off_j + 0] = m->xx; in copy_matrix()
39 dst[n * (3 * off_i + 0) + 3 * off_j + 1] = m->xy; in copy_matrix()
40 dst[n * (3 * off_i + 0) + 3 * off_j + 2] = m->xz; in copy_matrix()
41 dst[n * (3 * off_i + 1) + 3 * off_j + 0] = m->yx; in copy_matrix()
42 dst[n * (3 * off_i + 1) + 3 * off_j + 1] = m->yy; in copy_matrix()
43 dst[n * (3 * off_i + 1) + 3 * off_j + 2] = m->yz; in copy_matrix()
44 dst[n * (3 * off_i + 2) + 3 * off_j + 0] = m->zx; in copy_matrix()
45 dst[n * (3 * off_i + 2) + 3 * off_j + 1] = m->zy; in copy_matrix()
46 dst[n * (3 * off_i + 2) + 3 * off_j + 2] = m->zz; in copy_matrix()
/dports/math/blis/blis-0.8.1/frame/thread/
H A Dbli_thread.c525 dim_t off_j; in bli_thread_range_weighted_sub() local
569 off_j = 0; in bli_thread_range_weighted_sub()
594 *j_start_thr = off_j; in bli_thread_range_weighted_sub()
595 *j_end_thr = off_j + width_j; in bli_thread_range_weighted_sub()
605 off_j += width_j; in bli_thread_range_weighted_sub()
/dports/editors/texmacs/TeXmacs-1.99.4-src/src/Typeset/Table/
H A Dtable.cpp213 array<int> ex_j1 (nr_cols), ex_j2 (nr_cols), off_j (nr_cols); in handle_decorations() local
241 off_j[j]= jj; in handle_decorations()
260 jj= dj+ off_j[j]+ ex_j1[j]- C->D->j0; in handle_decorations()
266 jj= off_j[j]+ ex_j1[j]; in handle_decorations()
271 C->col_span= off_j[jj]+ ex_j1[jj]+ 1- off_j[j]- ex_j1[j]; in handle_decorations()
282 j0 = off_j[j0] + ex_j1[j0]; in handle_decorations()
/dports/math/py-yt/yt-4.0.1/yt/utilities/lib/
H A Dcontour_finding.pyx307 cdef int off_i, off_j, off_k, oi, ok, oj
333 off_j = oj - 1 + j
334 if not (0 <= off_j < nj): continue
339 if off_k > k and off_j > j and off_i > i:
341 offset = off_i*nj*nk + off_j*nk + off_k
403 cdef int i, j, off_i, off_j, oi, oj, ax, ax0, ax1, n1, n2
429 for off_j in range(3):
430 oj = off_j - 1
/dports/misc/vxl/vxl-3.3.2/contrib/mul/vil3d/file_formats/
H A Dvil3d_meta_image_format.h28 void set_offset(const double off_i, const double off_j, const double off_k);
H A Dvil3d_meta_image_format.cxx99 const double off_j, in set_offset() argument
103 offset_j_ = off_j; in set_offset()
/dports/math/vtk9/VTK-9.1.0/ThirdParty/ioss/vtkioss/
H A DIoss_StructuredBlock.C98 int index_dim, int ni, int nj, int nk, int off_i, int off_j, in StructuredBlock() argument
101 m_ni(ni), m_nj(nj), m_nk(nk), m_offsetI(off_i), m_offsetJ(off_j), m_offsetK(off_k), in StructuredBlock()
H A DIoss_StructuredBlock.h97 int nj, int nk, int off_i, int off_j, int off_k, int glo_ni, int glo_nj,