Home
last modified time | relevance | path

Searched refs:ridx (Results 1 – 25 of 1131) sorted by relevance

12345678910>>...46

/dports/math/vtk8/VTK-8.2.0/Common/DataModel/Testing/Python/
H A DTestICPTransform.py70 for ridx in range(1, 4):
72 ren[ridx].SetViewport((ridx - 1) / 3.0, 0.0, ridx / 3.0, 1.0)
76 renWin.AddRenderer(ren[ridx])
85 if ridx == 1 or sidx == 1 or ridx == sidx:
90 sa[ridx][sidx].SetMapper(sm[ridx][sidx])
107 fem[ridx][sidx].SetInputConnection(fe[ridx][sidx].GetOutputPort())
111 fea[ridx][sidx].SetMapper(fem[ridx][sidx])
113 ren[ridx].AddActor(fea[ridx][sidx])
116 ren[ridx].AddActor(sa[ridx][sidx])
119 if ridx > 1 and ridx == sidx:
[all …]
/dports/math/vtk9/VTK-9.1.0/Common/DataModel/Testing/Python/
H A DTestICPTransform.py70 for ridx in range(1, 4):
72 ren[ridx].SetViewport((ridx - 1) / 3.0, 0.0, ridx / 3.0, 1.0)
76 renWin.AddRenderer(ren[ridx])
85 if ridx == 1 or sidx == 1 or ridx == sidx:
90 sa[ridx][sidx].SetMapper(sm[ridx][sidx])
107 fem[ridx][sidx].SetInputConnection(fe[ridx][sidx].GetOutputPort())
111 fea[ridx][sidx].SetMapper(fem[ridx][sidx])
113 ren[ridx].AddActor(fea[ridx][sidx])
116 ren[ridx].AddActor(sa[ridx][sidx])
119 if ridx > 1 and ridx == sidx:
[all …]
/dports/math/vtk6/VTK-6.2.0/Common/DataModel/Testing/Python/
H A DTestICPTransform.py70 for ridx in range(1, 4):
72 ren[ridx].SetViewport((ridx - 1) / 3.0, 0.0, ridx / 3.0, 1.0)
76 renWin.AddRenderer(ren[ridx])
85 if ridx == 1 or sidx == 1 or ridx == sidx:
90 sa[ridx][sidx].SetMapper(sm[ridx][sidx])
107 fem[ridx][sidx].SetInputConnection(fe[ridx][sidx].GetOutputPort())
111 fea[ridx][sidx].SetMapper(fem[ridx][sidx])
113 ren[ridx].AddActor(fea[ridx][sidx])
116 ren[ridx].AddActor(sa[ridx][sidx])
119 if ridx > 1 and ridx == sidx:
[all …]
/dports/math/vtk6/VTK-6.2.0/Common/DataModel/Testing/Tcl/
H A DTestICPTransform.tcl42 for {set ridx 1} {$ridx <= 3} {incr ridx} {
44 vtkRenderer ren${ridx}
45 ren${ridx} SetViewport [expr ($ridx-1)/3.0] 0.0 [expr ($ridx)/3.0] 1.0
49 renWin AddRenderer ren${ridx}
58 if {$ridx == 1 || $sidx == 1 || $ridx == $sidx} {
63 ren${ridx}s${sidx}a SetMapper ren${ridx}s${sidx}m
86 ren${ridx}s${sidx}fea SetMapper ren${ridx}s${sidx}fem
88 ren${ridx} AddActor ren${ridx}s${sidx}fea
91 ren${ridx} AddActor ren${ridx}s${sidx}a
94 if {$ridx > 1 && $ridx == $sidx} {
[all …]
/dports/math/topcom/topcom-0.17.8/lib-src/
H A DStairCaseMatrix.cc18 if (is_zero((*this)(ridx,ridx))) { in _eliminate()
20 …std::cerr << "eraser = " << (*this)(ridx,ridx) << " == ZERO -> try colperm; row : " << ridx << ", … in _eliminate()
24 (*this).swap_cols(ridx,k); in _eliminate()
27 …td::cerr << "eraser = " << (*this)(ridx,ridx) << " == ZERO -> colperm successful; row : " << ridx in _eliminate()
32 if (is_zero((*this)(ridx,ridx))) { in _eliminate()
34 …d::cerr << "eraser = " << (*this)(ridx,ridx) << " == ZERO -> colperm unsuccessful; row : " << ridx in _eliminate()
40 …std::cerr << "eraser = " << (*this)(ridx,ridx) << " != ZERO; row : " << ridx << ", col: " << ridx in _eliminate()
46 …std::cerr << "eraser = " << (*this)(ridx,ridx) << " != ZERO; row : " << ridx << ", col: " << ridx in _eliminate()
49 const Field& eraser = (*this)(ridx,ridx); in _eliminate()
51 std::cerr << "eraser = " << eraser << "; row : " << ridx << ", col: " << ridx << std::endl; in _eliminate()
[all …]
/dports/www/thttpd/thttpd-2.29/
H A Dfdwatch.c87 #define GET_FD( ridx ) kqueue_get_fd( ridx ) argument
105 #define GET_FD( ridx ) devpoll_get_fd( ridx ) argument
123 #define GET_FD( ridx ) poll_get_fd( ridx ) argument
141 #define GET_FD( ridx ) select_get_fd( ridx ) argument
386 if ( ridx < 0 || ridx >= nfiles ) in kqueue_check_fd()
409 if ( ridx < 0 || ridx >= nfiles ) in kqueue_get_fd()
513 if ( ridx < 0 || ridx >= nfiles ) in devpoll_check_fd()
536 if ( ridx < 0 || ridx >= nfiles ) in devpoll_get_fd()
620 ridx = 0; in poll_watch()
658 if ( ridx < 0 || ridx >= nfiles ) in poll_get_fd()
[all …]
/dports/net/nbd-server/nbd-3.23/
H A Dbuffer.c36 ssize_t ridx; member
108 *addr = &(b->buf[b->ridx]); in bufGetReadSpan()
111 len = b->size - b->ridx; in bufGetReadSpan()
123 b->ridx = 0; in bufGetWriteSpan()
127 if (b->ridx == b->widx) in bufGetWriteSpan()
148 len = b->size - b->ridx; in bufDoneRead()
154 b->ridx += len; in bufDoneRead()
155 if (b->ridx >= b->size) in bufDoneRead()
156 b->ridx = 0; in bufDoneRead()
160 b->ridx = 0; in bufDoneRead()
[all …]
/dports/security/gnutls/gnutls-3.6.16/doc/examples/tlsproxy/
H A Dbuffer.c37 ssize_t ridx; member
111 *addr = &(b->buf[b->ridx]); in bufGetReadSpan()
114 len = b->size - b->ridx; in bufGetReadSpan()
126 b->ridx = 0; in bufGetWriteSpan()
130 if (b->ridx == b->widx) in bufGetWriteSpan()
151 len = b->size - b->ridx; in bufDoneRead()
157 b->ridx += len; in bufDoneRead()
158 if (b->ridx >= b->size) in bufDoneRead()
159 b->ridx = 0; in bufDoneRead()
163 b->ridx = 0; in bufDoneRead()
[all …]
/dports/math/R-cran-igraph/igraph/src/
H A Dspmatrix.c83 igraph_vector_destroy(&m->ridx); in igraph_spmatrix_destroy()
109 IGRAPH_CHECK(igraph_vector_copy(&to->ridx, &from->ridx)); in igraph_spmatrix_copy()
160 if (VECTOR(m->ridx)[start] != row && VECTOR(m->ridx)[end] == row) { in igraph_spmatrix_e()
411 VECTOR(m->ridx)[j] = VECTOR(m->ridx)[ei]; in igraph_spmatrix_resize()
541 igraph_vector_clear(&m->ridx); in igraph_spmatrix_null()
785 if (ridx != 0) { in igraph_spmatrix_max_nonzero()
786 *ridx = VECTOR(m->ridx)[maxidx]; in igraph_spmatrix_max_nonzero()
823 if (ridx != 0) { in igraph_spmatrix_max()
824 *ridx = VECTOR(m->ridx)[maxidx]; in igraph_spmatrix_max()
840 if (cidx != 0 || ridx != 0) { in igraph_spmatrix_max()
[all …]
/dports/math/igraph/igraph-0.9.5/src/core/
H A Dspmatrix.c81 igraph_vector_destroy(&m->ridx); in igraph_spmatrix_destroy()
107 IGRAPH_CHECK(igraph_vector_copy(&to->ridx, &from->ridx)); in igraph_spmatrix_copy()
158 if (VECTOR(m->ridx)[start] != row && VECTOR(m->ridx)[end] == row) { in igraph_spmatrix_e()
415 VECTOR(m->ridx)[j] = VECTOR(m->ridx)[ei]; in igraph_spmatrix_resize()
545 igraph_vector_clear(&m->ridx); in igraph_spmatrix_null()
799 if (ridx != 0) { in igraph_spmatrix_max_nonzero()
800 *ridx = VECTOR(m->ridx)[maxidx]; in igraph_spmatrix_max_nonzero()
837 if (ridx != 0) { in igraph_spmatrix_max()
838 *ridx = VECTOR(m->ridx)[maxidx]; in igraph_spmatrix_max()
854 if (cidx != 0 || ridx != 0) { in igraph_spmatrix_max()
[all …]
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/indexes/numeric/
H A Dtest_join.py21 tm.assert_numpy_array_equal(ridx, exp_ridx)
35 ridx = ridx.take(ind)
44 tm.assert_numpy_array_equal(ridx, eridx)
106 assert ridx is None
115 assert ridx is None
213 ridx = ridx.take(ind)
225 res, lidx, ridx = index_large.join(
293 assert ridx is None
296 res, lidx, ridx = index_large.join(
305 assert ridx is None
[all …]
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/indexes/ranges/
H A Dtest_join.py33 tm.assert_numpy_array_equal(ridx, eridx)
46 tm.assert_numpy_array_equal(ridx, eridx)
59 ridx = ridx.take(ind)
68 tm.assert_numpy_array_equal(ridx, eridx)
78 tm.assert_numpy_array_equal(ridx, eridx)
92 tm.assert_numpy_array_equal(ridx, eridx)
102 tm.assert_numpy_array_equal(ridx, eridx)
116 assert ridx is None
127 assert ridx is None
161 res, lidx, ridx = index.join(other, return_indexers=True)
[all …]
/dports/games/dMagnetic/dMagnetic_0.32/src/loader/
H A Dloader_appleii.c230 int ridx; in loader_appleii_decode_addrbuf() local
233 ridx=0; in loader_appleii_decode_addrbuf()
279 int ridx; in loader_appleii_decodenibtrack() local
284 ridx=0; in loader_appleii_decodenibtrack()
344 ridx++; in loader_appleii_decodenibtrack()
354 ridx++; in loader_appleii_decodenibtrack()
511 int ridx; in loader_appleii_readsection() local
515 ridx=0; in loader_appleii_readsection()
524 ridx=2; in loader_appleii_readsection()
528 for (;ridx<SECTORBYTES;ridx++) in loader_appleii_readsection()
[all …]
/dports/math/octave/octave-6.4.0/liboctave/array/
H A DMSparse.cc63 r.ridx (jx) = a.ridx (ja); in plus_or_minus()
70 || (b.ridx (jb) < a.ridx (ja))) in plus_or_minus()
72 r.ridx (jx) = b.ridx (jb); in plus_or_minus()
83 r.ridx (jx) = a.ridx (ja); in plus_or_minus()
158 r.ridx (i) = a.ridx (i); in times_or_divide()
224 r.ridx (i) = a.ridx (i); in times_or_divides()
329 r.ridx (jx) = a.ridx (ja); in plus_or_minus()
336 || (b.ridx (jb) < a.ridx (ja))) in plus_or_minus()
338 r.ridx (jx) = b.ridx (jb); in plus_or_minus()
349 r.ridx (jx) = a.ridx (ja); in plus_or_minus()
[all …]
/dports/games/pvpgn/pvpgn-1.8.5/src/common/
H A Dfdwatch_kqueue.c116 static int ridx; in fdw_kqueue_add_fd() local
127 ridx = _rridx[idx]; in fdw_kqueue_add_fd()
130 ridx = nochanges++; in fdw_kqueue_add_fd()
131 _rridx[idx] = ridx; in fdw_kqueue_add_fd()
140 ridx = _rridx[idx]; in fdw_kqueue_add_fd()
143 ridx = nochanges++; in fdw_kqueue_add_fd()
144 _rridx[idx] = ridx; in fdw_kqueue_add_fd()
155 ridx = _wridx[idx]; in fdw_kqueue_add_fd()
158 ridx = nochanges++; in fdw_kqueue_add_fd()
159 _wridx[idx] = ridx; in fdw_kqueue_add_fd()
[all …]
/dports/databases/py-hiredis/hiredis-0.2.0/vendor/hiredis/
H A Dread.c62 r->ridx = -1; in __redisReaderSetError()
192 while (r->ridx >= 0) { in moveToNextTask()
195 r->ridx--; in moveToNextTask()
203 r->ridx--; in moveToNextTask()
310 if (r->ridx == 8) { in processMultiBulkItem()
347 r->ridx++; in processMultiBulkItem()
433 r->ridx = -1; in redisReaderCreateWithFunctions()
491 if (r->ridx == -1) { in redisReaderGetReply()
498 r->ridx = 0; in redisReaderGetReply()
502 while (r->ridx >= 0) in redisReaderGetReply()
[all …]
/dports/databases/redis5/redis-5.0.14/deps/hiredis/
H A Dread.c62 r->ridx = -1; in __redisReaderSetError()
192 while (r->ridx >= 0) { in moveToNextTask()
195 r->ridx--; in moveToNextTask()
203 r->ridx--; in moveToNextTask()
310 if (r->ridx == 8) { in processMultiBulkItem()
347 r->ridx++; in processMultiBulkItem()
433 r->ridx = -1; in redisReaderCreateWithFunctions()
491 if (r->ridx == -1) { in redisReaderGetReply()
498 r->ridx = 0; in redisReaderGetReply()
502 while (r->ridx >= 0) in redisReaderGetReply()
[all …]
/dports/mail/rspamd/rspamd-3.1/contrib/hiredis/
H A Dread.c62 r->ridx = -1; in __redisReaderSetError()
192 while (r->ridx >= 0) { in moveToNextTask()
195 r->ridx--; in moveToNextTask()
203 r->ridx--; in moveToNextTask()
310 if (r->ridx == 8) { in processMultiBulkItem()
347 r->ridx++; in processMultiBulkItem()
433 r->ridx = -1; in redisReaderCreateWithFunctions()
491 if (r->ridx == -1) { in redisReaderGetReply()
498 r->ridx = 0; in redisReaderGetReply()
502 while (r->ridx >= 0) in redisReaderGetReply()
[all …]
/dports/mail/rspamd-devel/rspamd-93430bb/contrib/hiredis/
H A Dread.c62 r->ridx = -1; in __redisReaderSetError()
192 while (r->ridx >= 0) { in moveToNextTask()
195 r->ridx--; in moveToNextTask()
203 r->ridx--; in moveToNextTask()
310 if (r->ridx == 8) { in processMultiBulkItem()
347 r->ridx++; in processMultiBulkItem()
433 r->ridx = -1; in redisReaderCreateWithFunctions()
491 if (r->ridx == -1) { in redisReaderGetReply()
498 r->ridx = 0; in redisReaderGetReply()
502 while (r->ridx >= 0) in redisReaderGetReply()
[all …]
/dports/mail/rmilter/rmilter-1.10.0/hiredis/
H A Dread.c62 r->ridx = -1; in __redisReaderSetError()
192 while (r->ridx >= 0) { in moveToNextTask()
195 r->ridx--; in moveToNextTask()
203 r->ridx--; in moveToNextTask()
310 if (r->ridx == 8) { in processMultiBulkItem()
347 r->ridx++; in processMultiBulkItem()
433 r->ridx = -1; in redisReaderCreateWithFunctions()
491 if (r->ridx == -1) { in redisReaderGetReply()
498 r->ridx = 0; in redisReaderGetReply()
502 while (r->ridx >= 0) in redisReaderGetReply()
[all …]
/dports/databases/hiredis/hiredis-0.13.3/
H A Dread.c62 r->ridx = -1; in __redisReaderSetError()
192 while (r->ridx >= 0) { in moveToNextTask()
195 r->ridx--; in moveToNextTask()
203 r->ridx--; in moveToNextTask()
310 if (r->ridx == 8) { in processMultiBulkItem()
347 r->ridx++; in processMultiBulkItem()
433 r->ridx = -1; in redisReaderCreateWithFunctions()
491 if (r->ridx == -1) { in redisReaderGetReply()
498 r->ridx = 0; in redisReaderGetReply()
502 while (r->ridx >= 0) in redisReaderGetReply()
[all …]
/dports/www/h2o-devel/h2o-dcc7134/deps/hiredis/
H A Dread.c62 r->ridx = -1; in __redisReaderSetError()
192 while (r->ridx >= 0) { in moveToNextTask()
195 r->ridx--; in moveToNextTask()
203 r->ridx--; in moveToNextTask()
310 if (r->ridx == 8) { in processMultiBulkItem()
347 r->ridx++; in processMultiBulkItem()
433 r->ridx = -1; in redisReaderCreateWithFunctions()
491 if (r->ridx == -1) { in redisReaderGetReply()
498 r->ridx = 0; in redisReaderGetReply()
502 while (r->ridx >= 0) in redisReaderGetReply()
[all …]
/dports/math/octave/octave-6.4.0/liboctave/operators/
H A DSparse-op-defs.h110 r.ridx (nel) = m.ridx (i); \
157 r.ridx (nel) = m.ridx (i); \
191 r.ridx (nel) = m.ridx (i); \
283 r.ridx (nel) = m.ridx (i); \
330 r.ridx (nel) = m.ridx (i); \
364 r.ridx (nel) = m.ridx (i); \
459 (ja_lt_max && (m1.ridx (ja) < m2.ridx (jb)))) \
461 r.ridx (jx) = m1.ridx (ja); \
468 (jb_lt_max && (m2.ridx (jb) < m1.ridx (ja)))) \
470 r.ridx (jx) = m2.ridx (jb); \
[all …]
/dports/databases/redisdesktopmanager/RedisDesktopManager-2021.8/3rdparty/qredisclient/3rdparty/hiredis/
H A Dread.c61 r->ridx = -1; in __redisReaderSetError()
237 while (r->ridx >= 0) { in moveToNextTask()
240 r->ridx--; in moveToNextTask()
248 r->ridx--; in moveToNextTask()
373 if (r->ridx == 8) { in processMultiBulkItem()
421 r->ridx++; in processMultiBulkItem()
505 r->ridx = -1; in redisReaderCreateWithFunctions()
564 if (r->ridx == -1) { in redisReaderGetReply()
571 r->ridx = 0; in redisReaderGetReply()
575 while (r->ridx >= 0) in redisReaderGetReply()
[all …]
/dports/net/zerotier/ZeroTierOne-1.8.3/ext/hiredis-0.14.1/
H A Dread.c61 r->ridx = -1; in __redisReaderSetError()
237 while (r->ridx >= 0) { in moveToNextTask()
240 r->ridx--; in moveToNextTask()
248 r->ridx--; in moveToNextTask()
373 if (r->ridx == 8) { in processMultiBulkItem()
421 r->ridx++; in processMultiBulkItem()
505 r->ridx = -1; in redisReaderCreateWithFunctions()
564 if (r->ridx == -1) { in redisReaderGetReply()
571 r->ridx = 0; in redisReaderGetReply()
575 while (r->ridx >= 0) in redisReaderGetReply()
[all …]

12345678910>>...46