Home
last modified time | relevance | path

Searched refs:t_in (Results 1 – 25 of 333) sorted by relevance

12345678910>>...14

/dports/science/qmcpack/qmcpack-3.11.0/src/mpi/
H A Dcollectives.h49 container_proxy<T> t_in(in), t_out(out);
51 MPI_Reduce(t_in.data(), t_out.data(), t_in.size(), type_id, MPI_SUM, dest, comm);
70 container_proxy<T> t_in(in); in all_gather()
73 …int ierr = MPI_Allgather(t_in.data(), t_in.size(), type_id, t_out.data(), t_in.size(),… in all_gather()
83 container_proxy<CT> t_in(in), t_out(out); in all_gatherv()
96 container_proxy<CT> t_in(in), t_out(out);
99 …int ierr = MPI_Gatherv(t_in.data(), t_in.size(), type_id, t_out.data(), t_counts.data(), t_displ.d…
110 container_proxy<CT> t_in(in), t_out(out);
112 …int ierr = MPI_Gather(t_in.data(), t_in.size(), type_id, t_out.data(), t_in.size(), ty…
149 container_proxy<CT> t_in(inout);
[all …]
/dports/net-im/icqlib/icqlib-1.0.0/icqlib/
H A Dcyrillic.c69 void icq_RusConv(const char to[4], char *t_in) in icq_RusConv() argument
94 for(i=0;t_in[i]!=0;i++) in icq_RusConv()
96 t_in[i] &= 0377; in icq_RusConv()
97 if(t_in[i] & 0200) in icq_RusConv()
98 t_in[i] = table[t_in[i] & 0177]; in icq_RusConv()
103 void icq_RusConv_n(const char to[4], char *t_in, int len) in icq_RusConv_n() argument
130 t_in[i] &= 0377; in icq_RusConv_n()
131 if(t_in[i] & 0200) in icq_RusConv_n()
132 t_in[i] = table[t_in[i] & 0177]; in icq_RusConv_n()
/dports/cad/py-gdspy/gdspy-1.6.8/gdspy/
H A Dhobby.py85 if numpy.isscalar(t_in):
86 t_in = t_in * numpy.ones(n)
88 t_in = numpy.array(t_in)
101 t_in = numpy.hstack((numpy.roll(t_in, -rotate), t_in[rotate : rotate + 1]))
120 m[ni, i] = d[i1] * t_in[i2] * t_in[i1] ** 2
124 m[ni, ni] = d[i1] * t_in[i2] * t_in[i1] ** 2 * (1 - 3 * t_out[i])
146 ) / (3 * numpy.roll(t_in, -1))
184 m[ni, ii] = d[i1] * t_in[i2] * t_in[i1] ** 2
188 m[ni, ni] = d[i1] * t_in[i2] * t_in[i1] ** 2 * (1 - 3 * t_out[i0])
203 ti3 = t_in[n] ** 3
[all …]
/dports/sysutils/lnav/lnav-0.10.1/test/
H A Dtest_reltime.cc107 time_t t_in = 1438948860; variable
109 tm.et_tm = *gmtime(&t_in);
120 time_t t_in = 1438948860; variable
133 time_t t_in = 1438948860; variable
146 time_t t_in = 1438948860; variable
159 time_t t_in = 1438948860; variable
172 time_t t_in = 1615727900; variable
200 t_in = 4 * 60 + 15;
213 time_t t_in = 1615841352; variable
241 time_t t_in = 30; variable
[all …]
/dports/security/py-pycryptodome/pycryptodome-3.10.1/src/test/
H A Dmake_tests_addmul128.py17 t_in = split64(t)
24 for x in xrange(result_len - len(t_in)):
25 t_in.append("0")
32 print " uint64_t t[] = {" + ", ".join(t_in) + ", 0xAAAAAAAAAAAAAAAAULL};"
33 print " uint64_t scratchpad[%d];" % (len(t_in) + len(a))
36 print " addmul128(t, scratchpad, a, 0x%x, 0x%x, %d, %d);" % (b0, b1, len(t_in), len(a))
H A Dmake_tests_addmul.py17 t_in = split64(t)
24 for x in xrange(result_len - len(t_in)):
25 t_in.append("0")
34 print " uint64_t t[] = {" + ", ".join(t_in) + ", 0xAAAAAAAAAAAAAAAAULL};"
/dports/security/py-pycryptodomex/pycryptodome-3.10.1/src/test/
H A Dmake_tests_addmul128.py17 t_in = split64(t)
24 for x in xrange(result_len - len(t_in)):
25 t_in.append("0")
32 print " uint64_t t[] = {" + ", ".join(t_in) + ", 0xAAAAAAAAAAAAAAAAULL};"
33 print " uint64_t scratchpad[%d];" % (len(t_in) + len(a))
36 print " addmul128(t, scratchpad, a, 0x%x, 0x%x, %d, %d);" % (b0, b1, len(t_in), len(a))
H A Dmake_tests_addmul.py17 t_in = split64(t)
24 for x in xrange(result_len - len(t_in)):
25 t_in.append("0")
34 print " uint64_t t[] = {" + ", ".join(t_in) + ", 0xAAAAAAAAAAAAAAAAULL};"
/dports/science/octopus/octopus-10.5/src/basic/
H A Dio_binary.c102 static void convert ( multi * in, multi * out, int t_in, int t_out);
408 if(t_in == TYPE_FLOAT && t_out == TYPE_DOUBLE ) { in convert()
412 if(t_in == TYPE_DOUBLE && t_out == TYPE_FLOAT ){ in convert()
429 if(t_in == TYPE_FLOAT && t_out == TYPE_FLOAT_COMPLEX ){ in convert()
435 if(t_in == TYPE_DOUBLE && t_out == TYPE_FLOAT_COMPLEX ){ in convert()
441 if(t_in == TYPE_FLOAT && t_out == TYPE_DOUBLE_COMPLEX ){ in convert()
447 if(t_in == TYPE_DOUBLE && t_out == TYPE_DOUBLE_COMPLEX ){ in convert()
454 if(t_in == TYPE_FLOAT_COMPLEX && t_out == TYPE_FLOAT ){ in convert()
459 if(t_in == TYPE_DOUBLE_COMPLEX && t_out == TYPE_FLOAT ){ in convert()
464 if(t_in == TYPE_FLOAT_COMPLEX && t_out == TYPE_DOUBLE ){ in convert()
[all …]
/dports/science/mcstas/mcstas-2.5-src/nlib/share/
H A Dmcstas-r.c268 double D, t_in, t_out, y_in, y_out; in cylinder_intersect() local
277 t_in = (-(2*vz*z + 2*vx*x) - sqrt(D))/(2*(vz*vz + vx*vx)); in cylinder_intersect()
280 t_in = (-h/2-y)/vy; in cylinder_intersect()
282 if (t_in>t_out){ in cylinder_intersect()
283 double tmp=t_in; in cylinder_intersect()
284 t_in=t_out;t_out=tmp; in cylinder_intersect()
287 y_in = vy*t_in + y; in cylinder_intersect()
295 { t_in = ((h/2)-y)/vy; ret += 2; } in cylinder_intersect()
297 { t_in = ((-h/2)-y)/vy; ret += 4; } in cylinder_intersect()
303 *t0 = t_in; in cylinder_intersect()
/dports/cad/gmsh/gmsh-4.9.2-source/contrib/Revoropt/include/Revoropt/Neighbours/
H A Dneighbourhood_def.hpp132 unsigned int t_in = 0 ; in filter_triangle_indices() local
135 while(t_in <= t_out) { in filter_triangle_indices()
136 if(box.clips_triangle_bbox(t_indices_[t_in], mesh_)) { in filter_triangle_indices()
137 ++t_in ; in filter_triangle_indices()
140 if(t_in != t_out) { in filter_triangle_indices()
141 std::swap(t_indices_[t_in],t_indices_[t_out]) ; in filter_triangle_indices()
150 return t_in ; in filter_triangle_indices()
/dports/math/stanmath/math-4.2.0/test/unit/math/prim/functor/
H A Dharmonic_oscillator.hpp16 operator()(const T0& t_in, const std::vector<T1>& y_in, in operator ()()
33 inline auto operator()(const T0& t_in, const T1& y_in, std::ostream* msgs, in operator ()()
57 operator()(const T0& t_in, const std::vector<T1>& y_in, in operator ()()
75 inline auto operator()(const T0& t_in, const T1& y_in, std::ostream* msgs, in operator ()()
101 operator()(const T0& t_in, const std::vector<T1>& y_in, in operator ()()
125 operator()(const T0& t_in, const std::vector<T1>& y_in, in operator ()()
H A Dlorenz.hpp13 lorenz_ode(const T0& t_in, const std::vector<T1>& y_in, in lorenz_ode() argument
32 operator()(const T0& t_in, const std::vector<T1>& y_in, in operator ()()
35 return lorenz_ode(t_in, y_in, theta, x, x_int); in operator ()()
/dports/devel/p5-Alzabo/Alzabo-0.92/install_helpers/
H A Dpod_merge.pl33 my ($file, $t_in, $t_out, $class) = @_;
37 open TO, $t_in or die "Can't read '$t_in': $!";
43 close TO or die "Can't close '$t_in': $!";
/dports/editors/texmacs/TeXmacs-1.99.4-src/src/Style/Evaluate/
H A Devaluate_rewrite.cpp29 tree t_in; member in rewrite_memorizer_rep
35 env_in (env), t_in (t), env_out (), t_out (no_tree) {} in rewrite_memorizer_rep()
37 out << "rewrite_memorizer (" << t_in << ")"; } in print()
40 int hash () { return weak_hash (env_in) ^ weak_hash (t_in); } in hash()
43 return weak_equal (env_in, rep->env_in) && weak_equal (t_in, rep->t_in); } in equal()
/dports/misc/vxl/vxl-3.3.2/core/vgl/io/tests/
H A Dtest_point_2d_io.cxx26 std::ifstream t_in(point_with_spaces.c_str()); in test_point_2d_double_io() local
28 t_in >> tmp; in test_point_2d_double_io()
30 TEST("Finished reading space delimited point file successfully", (!t_in.fail()), true); in test_point_2d_double_io()
/dports/cad/py-gdspy/gdspy-1.6.8/tests/
H A Dcurve.py131 c.i([(1, 2), (2, 1), (3, 2), (4, 0)], t_in=2)
137 c.i([(1, 2), (2, 1), (3, 2), (4, 0)], t_in=2, t_out=2)
140 c.i([(1, 2), (2, 1), (3, 2), (4, 0)], t_in=[2, 1, 1, 1, 1], t_out=[1, 1, 1, 1, 2])
143 c.i([(1, 2), (2, 1), (3, 2), (4, 0)], t_in=[1, 1, 2, 1, 1], t_out=[1, 2, 1, 1, 1])
156 t_in=[2, 1, 1, 1, 1],
164 t_in=[1, 1, 2, 1, 1],
173 t_in=[2, 1, 1, 1, 1],
182 t_in=[1, 1, 1, 1, 1],
/dports/audio/muse-sequencer/muse-4.0.0/src/share/scoreglyphs/feta-original/
H A Dparmesan-macros.mf79 save t_in, t_out;
81 t_in := directiontime dir_in of curve;
84 if t_in > t_out:
88 (subpath (t_in, t_out) of curve) shifted offset
108 save t_in, t_out;
110 t_in := directiontime dir_in of curve;
113 if t_in > t_out:
117 (subpath (floor (t_in + 0.5), floor (t_out + 0.5)) of curve)
/dports/textproc/R-cran-openxlsx/openxlsx/R/
H A Dsheet_data_class.R56 Sheet_Data$methods(write = function(rows_in, cols_in, t_in, v_in, f_in, any_functions = TRUE) { argument
77 t_in[!is.na(f_in)] <- 3L ## "str"
89 t <<- c(t[-inds], t_in)
95 t <<- c(t, t_in)
/dports/print/lilypond-devel/lilypond-2.23.5/mf/
H A Dparmesan-macros.mf90 save t_in, t_out;
92 t_in := directiontime dir_in of curve;
95 if t_in > t_out:
99 (subpath (t_in, t_out) of curve) shifted offset
119 save t_in, t_out;
121 t_in := directiontime dir_in of curve;
124 if t_in > t_out:
128 (subpath (floor (t_in + 0.5), floor (t_out + 0.5)) of curve)
/dports/print/lilypond/lilypond-2.22.1/mf/
H A Dparmesan-macros.mf90 save t_in, t_out;
92 t_in := directiontime dir_in of curve;
95 if t_in > t_out:
99 (subpath (t_in, t_out) of curve) shifted offset
119 save t_in, t_out;
121 t_in := directiontime dir_in of curve;
124 if t_in > t_out:
128 (subpath (floor (t_in + 0.5), floor (t_out + 0.5)) of curve)
/dports/comms/gnuradio/gnuradio-3.8.4.0/gr-filter/examples/
H A Dresampler.py110 t_in = numpy.arange(0, len(tb.snk_in.data())*Ts_in, Ts_in)
115 sp21.plot(t_in, tb.snk_in.data())
117 sp21.set_xlim([t_in[100], t_in[200]])
/dports/science/agrum/aGrUM-29e540d8169268e8fe5d5c69bc4b2b1290f12320/src/testunits/module_BASE/
H A DMultiDimPartialInstantiationTestSuite.h168 const gum::Potential< T >& t_in, in manual_instantiate()
188 gum::Instantiation inst_in(t_in); in manual_instantiate()
195 t_out->set(inst_out, t_in[inst_in]); in manual_instantiate()
207 const gum::Potential< T* >& t_in, in manual_instantiate()
227 gum::Instantiation inst_in(t_in); in manual_instantiate()
234 t_out->set(inst_out, new T(*(t_in[inst_in]))); in manual_instantiate()
246 const gum::MultiDimArray< T >& t_in, in manual_instantiate()
266 gum::Instantiation inst_in(t_in); in manual_instantiate()
273 t_out->set(inst_out, t_in[inst_in]); in manual_instantiate()
305 gum::Instantiation inst_in(t_in); in manual_instantiate()
[all …]
/dports/math/polymake/polymake-4.5/apps/tropical/src/
H A Dnearest_point.cc30 …Vector<TropicalNumber<Addition, Scalar> > nearest_point(BigObject t_in, const Vector<TropicalNumbe… in nearest_point() argument
33 Matrix<TNumber> V = t_in.give("POINTS"); in nearest_point()
/dports/games/cataclysm-dda-tiles/Cataclysm-DDA-0.F/src/
H A Dcata_utility.h555 explicit restore_on_out_of_scope( T &t_in ) : t( t_in ), orig_t( t_in ), in restore_on_out_of_scope() argument
559 explicit restore_on_out_of_scope( T &&t_in ) : t( t_in ), orig_t( std::move( t_in ) ), in restore_on_out_of_scope() argument

12345678910>>...14