Home
last modified time | relevance | path

Searched refs:tx0 (Results 1 – 25 of 1818) sorted by relevance

12345678910>>...73

/dports/math/sisl/SISL-SISL-4.6.0-44-g9114631/src/
H A Ds1323.c163 double tx0,ty0,tz0; /* Local version of point on axis */ local
212 tx0 = etop[0];
219 temp = (tx0*twx*twx + twx*(ty0*twy+tz0*twz))/tcost2 - tx0;
227 temp = (ty0*twy*twy + twy*(tz0*twz+tx0*twx))/tcost2 - ty0;
235 temp = (tz0*twz*twz + twz*(tx0*twx+ty0*twy))/tcost2 - tz0;
242 temp = tx0*tx0 + ty0*ty0 + tz0*tz0
243 - ( tx0*tx0*twx*twx + ty0*ty0*twy*twy + tz0*tz0*twz*twz
244 + (double)2.0*tx0*ty0*twx*twy + (double)2.0*ty0*tz0*twy*twz
245 + (double)2.0*tz0*tx0*twz*twx )/tcost2;
H A Ds1322.c135 double tx0,ty0,tz0; /* Local version of point on axis */ local
187 tx0 = epoint[0];
193 temp = tx0*(twx*twx-(double)1.0) + twx*(ty0*twy+tz0*twz);
200 temp = ty0*(twy*twy-(double)1.0) + twy*(tz0*twz+tx0*twx);
207 temp = tz0*(twz*twz-(double)1.0) + twz*(tx0*twx+ty0*twy);
214 temp = tx0*tx0*((double)1.0-twx*twx) + ty0*ty0*((double)1.0-twy*twy)
215 + tz0*tz0*((double)1.0-twz*twz) - (double)2.0*tx0*ty0*twx*twy
216 - (double)2.0*ty0*tz0*twy*twz - (double)2.0*tz0*tx0*twz*twx
/dports/science/cdcl/dcl-5.4.8-C/src/grph1/szpack/
H A Dszoplt.c28 static real vx, vy, xx, yy, bx0, by0, cx0, cy0, bx1, by1, cx1, cy1, tx0, in szoplt_0_() local
53 tx0 = xmplon_(tx); in szoplt_0_()
56 szpcly_(&tx0, &ty0, &tx0, &ty0, &lvldy, &c_true); in szoplt_0_()
57 szpclx_(&tx0, &ty0, &tx0, &ty0, &lvldx, &c_true); in szoplt_0_()
59 stftrn_(&tx0, &ty0, &vx, &vy); in szoplt_0_()
63 bx0 = tx0; in szoplt_0_()
65 cx0 = tx0; in szoplt_0_()
73 if (! lfirst && lreqa_(&tx1, &tx0, &c_b4) && lreqa_(&ty1, &ty0, &c_b4)) { in szoplt_0_()
76 szpipt_(&tx0, &ty0, &tx1, &ty1, &c__0); in szoplt_0_()
110 tx0 = tx1; in szoplt_0_()
H A Dszsgcl.c22 /* Subroutine */ int szsgcl_0_(int n__, real *tx0, real *ty0, real *tx1, real in szsgcl_0_() argument
47 txx = *tx0; in szsgcl_0_()
61 xla = atan2(tan1 * cos(*tx0) - tan0 * cos(*tx1), tan0 * sin(*tx1) in szsgcl_0_()
62 - tan1 * sin(*tx0)); in szsgcl_0_()
64 r__1 = *tx1 - *tx0; in szsgcl_0_()
66 r__1 = *tx0 + dx1 / 2 - xla; in szsgcl_0_()
68 cs0 = cos(*tx0 - xla); in szsgcl_0_()
116 /* Subroutine */ int szsgcl_(real *tx0, real *ty0, real *tx1, real *ty1) in szsgcl_() argument
118 return szsgcl_0_(0, tx0, ty0, tx1, ty1, (real *)0, (real *)0); in szsgcl_()
H A Dszpipt.c34 /* Subroutine */ int szpipt_0_(int n__, real *tx0, real *ty0, real *tx1, real in szpipt_0_() argument
77 xx0 = *tx0; in szpipt_0_()
86 r__1 = *tx1 - *tx0; in szpipt_0_()
108 xla = *tx0; in szpipt_0_()
111 xla = *tx0; in szpipt_0_()
122 szsgcl_(tx0, ty0, tx1, ty1); in szpipt_0_()
161 /* Subroutine */ int szpipt_(real *tx0, real *ty0, real *tx1, real *ty1, in szpipt_() argument
164 return szpipt_0_(0, tx0, ty0, tx1, ty1, mode, (real *)0, (real *)0, ( in szpipt_()
/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/src/
H A Dimgwarp.avx2.cpp66 __m256i tx0, tx1, ty0, ty1; in warpAffineBlockline() local
67 tx0 = _mm256_add_epi32(_mm256_loadu_si256((const __m256i*)(adelta + x1)), XX); in warpAffineBlockline()
72 tx0 = _mm256_srai_epi32(tx0, AB_BITS - INTER_BITS); in warpAffineBlockline()
77 __m256i fx_ = _mm256_packs_epi32(_mm256_and_si256(tx0, fxy_mask), in warpAffineBlockline()
81 tx0 = _mm256_packs_epi32(_mm256_srai_epi32(tx0, INTER_BITS), in warpAffineBlockline()
88 _mm256_storeu_si256((__m256i*)(xy + x1 * 2), _mm256_unpacklo_epi16(tx0, ty0)); in warpAffineBlockline()
89 _mm256_storeu_si256((__m256i*)(xy + x1 * 2 + 16), _mm256_unpackhi_epi16(tx0, ty0)); in warpAffineBlockline()
/dports/audio/surge-synthesizer-lv2/surge-release_1.9.0/src/common/vt_dsp/
H A Dhalfratefilter.cpp46 tx1 = tx0; in process_block()
47 tx0 = o[k]; in process_block()
57 tx1 = tx0; in process_block()
66 vx0[j] = tx0; in process_block()
174 tx1 = tx0; in process_block_D2()
175 tx0 = o[k]; in process_block_D2()
185 tx1 = tx0; in process_block_D2()
194 vx0[j] = tx0; in process_block_D2()
310 tx1 = tx0; in process_block_U2()
321 tx1 = tx0; in process_block_U2()
[all …]
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/extsrc/com/lightcrafts/media/jai/opimage/
H A DRotateCRIF.java341 float tx0 = 0; in getBounds2D() local
349 tx0 = s_height - y1 - 1; in getBounds2D()
353 return new Rectangle2D.Float(tx0, in getBounds2D()
359 tx0 = y0; in getBounds2D()
363 return new Rectangle2D.Float(tx0, in getBounds2D()
371 tx0 = s_width - x1 - 1; in getBounds2D()
376 return new Rectangle2D.Float(tx0, in getBounds2D()
385 tx0 = y0; in getBounds2D()
389 return new Rectangle2D.Float(tx0, in getBounds2D()
395 tx0 = s_height - y1 - 1; in getBounds2D()
[all …]
/dports/databases/mariadb103-server/mariadb-10.3.34/mysql-test/suite/versioning/r/
H A Dcommit_id.result12 select sys_trx_start from t1 where id = last_insert_id() into @tx0;
13 select transaction_id = @tx0 from mysql.transaction_registry
15 transaction_id = @tx0
33 trt_trx_id(@ts0) < @tx0 as A,
34 trt_trx_id(@ts0, true) = @tx0 as B,
35 trt_trx_id(@ts1) = @tx0 as C,
44 trt_commit_id(@ts0) < @tx0 as A,
45 trt_commit_id(@ts0, true) = trt_commit_id(null, @tx0) as B,
46 trt_commit_id(@ts1) = trt_commit_id(null, @tx0) as C,
55 trt_trx_sees(@tx1, @tx0) as A,
[all …]
/dports/databases/mariadb103-client/mariadb-10.3.34/mysql-test/suite/versioning/r/
H A Dcommit_id.result12 select sys_trx_start from t1 where id = last_insert_id() into @tx0;
13 select transaction_id = @tx0 from mysql.transaction_registry
15 transaction_id = @tx0
33 trt_trx_id(@ts0) < @tx0 as A,
34 trt_trx_id(@ts0, true) = @tx0 as B,
35 trt_trx_id(@ts1) = @tx0 as C,
44 trt_commit_id(@ts0) < @tx0 as A,
45 trt_commit_id(@ts0, true) = trt_commit_id(null, @tx0) as B,
46 trt_commit_id(@ts1) = trt_commit_id(null, @tx0) as C,
55 trt_trx_sees(@tx1, @tx0) as A,
[all …]
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/cpp-ethereum/test/unittests/libethereum/
H A DTransactionQueue.cpp26 Transaction tx0(streamRLP.out(), CheckTransaction::Everything); in BOOST_FIXTURE_TEST_SUITE() local
27 ImportResult result = txq.import(tx0); in BOOST_FIXTURE_TEST_SUITE()
42 Transaction tx0(0, gasCost, gas, dest, bytes(), 0, sec ); in BOOST_AUTO_TEST_CASE() local
48 txq.import(tx0); in BOOST_AUTO_TEST_CASE()
50 txq.import(tx0); in BOOST_AUTO_TEST_CASE()
81 txq.import(tx0); in BOOST_AUTO_TEST_CASE()
82 BOOST_CHECK(Transactions { tx0 } == txq.topTransactions(256)); in BOOST_AUTO_TEST_CASE()
83 txq.import(tx0); in BOOST_AUTO_TEST_CASE()
84 BOOST_CHECK(Transactions { tx0 } == txq.topTransactions(256)); in BOOST_AUTO_TEST_CASE()
131 txq.import(tx0); in BOOST_AUTO_TEST_CASE()
[all …]
/dports/databases/mariadb104-server/mariadb-10.4.24/mysql-test/suite/versioning/t/
H A Dcommit_id.test20 select sys_trx_start from t1 where id = last_insert_id() into @tx0;
21 select transaction_id = @tx0 from mysql.transaction_registry
39 trt_trx_id(@ts0) < @tx0 as A,
40 trt_trx_id(@ts0, true) = @tx0 as B,
41 trt_trx_id(@ts1) = @tx0 as C,
49 trt_commit_id(@ts0) < @tx0 as A,
50 trt_commit_id(@ts0, true) = trt_commit_id(null, @tx0) as B,
51 trt_commit_id(@ts1) = trt_commit_id(null, @tx0) as C,
59 trt_trx_sees(@tx1, @tx0) as A,
60 not trt_trx_sees(@tx0, @tx1) as B,
/dports/databases/mariadb105-client/mariadb-10.5.15/mysql-test/suite/versioning/t/
H A Dcommit_id.test20 select sys_trx_start from t1 where id = last_insert_id() into @tx0;
21 select transaction_id = @tx0 from mysql.transaction_registry
39 trt_trx_id(@ts0) < @tx0 as A,
40 trt_trx_id(@ts0, true) = @tx0 as B,
41 trt_trx_id(@ts1) = @tx0 as C,
49 trt_commit_id(@ts0) < @tx0 as A,
50 trt_commit_id(@ts0, true) = trt_commit_id(null, @tx0) as B,
51 trt_commit_id(@ts1) = trt_commit_id(null, @tx0) as C,
59 trt_trx_sees(@tx1, @tx0) as A,
60 not trt_trx_sees(@tx0, @tx1) as B,
/dports/databases/mariadb104-client/mariadb-10.4.24/mysql-test/suite/versioning/t/
H A Dcommit_id.test20 select sys_trx_start from t1 where id = last_insert_id() into @tx0;
21 select transaction_id = @tx0 from mysql.transaction_registry
39 trt_trx_id(@ts0) < @tx0 as A,
40 trt_trx_id(@ts0, true) = @tx0 as B,
41 trt_trx_id(@ts1) = @tx0 as C,
49 trt_commit_id(@ts0) < @tx0 as A,
50 trt_commit_id(@ts0, true) = trt_commit_id(null, @tx0) as B,
51 trt_commit_id(@ts1) = trt_commit_id(null, @tx0) as C,
59 trt_trx_sees(@tx1, @tx0) as A,
60 not trt_trx_sees(@tx0, @tx1) as B,
/dports/databases/mariadb103-server/mariadb-10.3.34/mysql-test/suite/versioning/t/
H A Dcommit_id.test20 select sys_trx_start from t1 where id = last_insert_id() into @tx0;
21 select transaction_id = @tx0 from mysql.transaction_registry
39 trt_trx_id(@ts0) < @tx0 as A,
40 trt_trx_id(@ts0, true) = @tx0 as B,
41 trt_trx_id(@ts1) = @tx0 as C,
49 trt_commit_id(@ts0) < @tx0 as A,
50 trt_commit_id(@ts0, true) = trt_commit_id(null, @tx0) as B,
51 trt_commit_id(@ts1) = trt_commit_id(null, @tx0) as C,
59 trt_trx_sees(@tx1, @tx0) as A,
60 not trt_trx_sees(@tx0, @tx1) as B,
/dports/databases/mariadb103-client/mariadb-10.3.34/mysql-test/suite/versioning/t/
H A Dcommit_id.test20 select sys_trx_start from t1 where id = last_insert_id() into @tx0;
21 select transaction_id = @tx0 from mysql.transaction_registry
39 trt_trx_id(@ts0) < @tx0 as A,
40 trt_trx_id(@ts0, true) = @tx0 as B,
41 trt_trx_id(@ts1) = @tx0 as C,
49 trt_commit_id(@ts0) < @tx0 as A,
50 trt_commit_id(@ts0, true) = trt_commit_id(null, @tx0) as B,
51 trt_commit_id(@ts1) = trt_commit_id(null, @tx0) as C,
59 trt_trx_sees(@tx1, @tx0) as A,
60 not trt_trx_sees(@tx0, @tx1) as B,
/dports/databases/mariadb105-server/mariadb-10.5.15/mysql-test/suite/versioning/t/
H A Dcommit_id.test20 select sys_trx_start from t1 where id = last_insert_id() into @tx0;
21 select transaction_id = @tx0 from mysql.transaction_registry
39 trt_trx_id(@ts0) < @tx0 as A,
40 trt_trx_id(@ts0, true) = @tx0 as B,
41 trt_trx_id(@ts1) = @tx0 as C,
49 trt_commit_id(@ts0) < @tx0 as A,
50 trt_commit_id(@ts0, true) = trt_commit_id(null, @tx0) as B,
51 trt_commit_id(@ts1) = trt_commit_id(null, @tx0) as C,
59 trt_trx_sees(@tx1, @tx0) as A,
60 not trt_trx_sees(@tx0, @tx1) as B,
/dports/audio/din/din-52/src/
H A Dcurve.h21 float tx0, ty0, tx1, ty1; // start/end tangents member
29 …curve (float x0, float y0, float x1, float y1, float tx0, float ty0, float tx1, float ty1, float d…
58 ptx0 = tx0 - x0; in vertex()
81 tx0 = xt; in tangent()
83 ptx0 = tx0 - x0; in tangent()
94 xt = tx0; in get_tangent()
/dports/databases/postgresql-libpqxx/libpqxx-7.2.0/test/
H A Dtest88.cxx16 pqxx::work tx0{conn}; in test_088() local
17 pqxx::test::create_pqxxevents(tx0); in test_088()
20 std::cout << tx0.exec1("SELECT 'tx0 starts'")[0].c_str() << std::endl; in test_088()
22 pqxx::subtransaction T0a(static_cast<pqxx::dbtransaction &>(tx0), "T0a"); in test_088()
25 pqxx::subtransaction T0b(static_cast<pqxx::dbtransaction &>(tx0), "T0b"); in test_088()
27 std::cout << tx0.exec1("SELECT 'tx0 ends'")[0].c_str() << std::endl; in test_088()
28 tx0.commit(); in test_088()
/dports/science/fisicalab/fisicalab-0.3.3/English.lproj/staticsExamples.rtfd/
H A DTXT.rtf3 \f0\fs28\pard\tx0\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\ql \p…
14 \pard\ql\pard\tx0\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\ql \p…
20 \pard\ql\pard\tx0\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\ql \p…
24 \pard\ql\pard\tx0\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\ql \p…
28 \pard\ql\pard\tx0\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\ql \p…
32 \pard\ql\pard\tx0\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\ql \p…
36 \pard\ql\pard\tx0\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\ql \p…
40 \pard\ql\pard\tx0\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\ql \p…
53 \pard\ql\pard\tx0\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\ql \p…
59 \pard\ql\pard\tx0\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\ql \p…
[all …]
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/futures-0.1.29/tests/
H A Dshared.rs89 let (tx0, rx0) = oneshot::channel::<u32>(); in peek()
100 tx0.send(42).unwrap(); in peek()
118 let (tx0, rx0) = oneshot::channel::<u32>(); in polled_then_ignored()
139 tx0.send(42).unwrap(); // Should cause f1, then rx3, and then rx1 to resolve. in polled_then_ignored()
150 let (tx0, rx0) = mpsc::unbounded::<Box<Future<Item=(),Error=()>>>(); in recursive_poll()
158 tx0.unbounded_send(Box::new( in recursive_poll()
170 drop(tx0); in recursive_poll()
180 let (tx0, rx0) = mpsc::unbounded::<Box<Future<Item=(),Error=()>>>(); in recursive_poll_with_unpark()
188 tx0.unbounded_send(Box::new(future::lazy(move || { in recursive_poll_with_unpark()
202 drop(tx0); in recursive_poll_with_unpark()
/dports/audio/lewton/lewton-0.10.2/cargo-crates/futures-0.1.29/tests/
H A Dshared.rs89 let (tx0, rx0) = oneshot::channel::<u32>(); in peek()
100 tx0.send(42).unwrap(); in peek()
118 let (tx0, rx0) = oneshot::channel::<u32>(); in polled_then_ignored()
139 tx0.send(42).unwrap(); // Should cause f1, then rx3, and then rx1 to resolve. in polled_then_ignored()
150 let (tx0, rx0) = mpsc::unbounded::<Box<Future<Item=(),Error=()>>>(); in recursive_poll()
158 tx0.unbounded_send(Box::new( in recursive_poll()
170 drop(tx0); in recursive_poll()
180 let (tx0, rx0) = mpsc::unbounded::<Box<Future<Item=(),Error=()>>>(); in recursive_poll_with_unpark()
188 tx0.unbounded_send(Box::new(future::lazy(move || { in recursive_poll_with_unpark()
202 drop(tx0); in recursive_poll_with_unpark()
/dports/net-mgmt/nfs-exporter/freebsd-nfs-exporter-0.3.0/cargo-crates/futures-0.1.29/tests/
H A Dshared.rs89 let (tx0, rx0) = oneshot::channel::<u32>(); in peek()
100 tx0.send(42).unwrap(); in peek()
118 let (tx0, rx0) = oneshot::channel::<u32>(); in polled_then_ignored()
139 tx0.send(42).unwrap(); // Should cause f1, then rx3, and then rx1 to resolve. in polled_then_ignored()
150 let (tx0, rx0) = mpsc::unbounded::<Box<Future<Item=(),Error=()>>>(); in recursive_poll()
158 tx0.unbounded_send(Box::new( in recursive_poll()
170 drop(tx0); in recursive_poll()
180 let (tx0, rx0) = mpsc::unbounded::<Box<Future<Item=(),Error=()>>>(); in recursive_poll_with_unpark()
188 tx0.unbounded_send(Box::new(future::lazy(move || { in recursive_poll_with_unpark()
202 drop(tx0); in recursive_poll_with_unpark()
/dports/lang/spidermonkey60/firefox-60.9.0/third_party/rust/futures/tests/
H A Dshared.rs89 let (tx0, rx0) = oneshot::channel::<u32>(); in peek()
100 tx0.send(42).unwrap(); in peek()
118 let (tx0, rx0) = oneshot::channel::<u32>(); in polled_then_ignored()
139 tx0.send(42).unwrap(); // Should cause f1, then rx3, and then rx1 to resolve. in polled_then_ignored()
150 let (tx0, rx0) = mpsc::unbounded::<Box<Future<Item=(),Error=()>>>(); in recursive_poll()
158 tx0.unbounded_send(Box::new( in recursive_poll()
170 drop(tx0); in recursive_poll()
180 let (tx0, rx0) = mpsc::unbounded::<Box<Future<Item=(),Error=()>>>(); in recursive_poll_with_unpark()
188 tx0.unbounded_send(Box::new(future::lazy(move || { in recursive_poll_with_unpark()
202 drop(tx0); in recursive_poll_with_unpark()
/dports/sysutils/vector/vector-0.10.0/cargo-crates/futures-0.1.29/tests/
H A Dshared.rs89 let (tx0, rx0) = oneshot::channel::<u32>(); in peek()
100 tx0.send(42).unwrap(); in peek()
118 let (tx0, rx0) = oneshot::channel::<u32>(); in polled_then_ignored()
139 tx0.send(42).unwrap(); // Should cause f1, then rx3, and then rx1 to resolve. in polled_then_ignored()
150 let (tx0, rx0) = mpsc::unbounded::<Box<Future<Item=(),Error=()>>>(); in recursive_poll()
158 tx0.unbounded_send(Box::new( in recursive_poll()
170 drop(tx0); in recursive_poll()
180 let (tx0, rx0) = mpsc::unbounded::<Box<Future<Item=(),Error=()>>>(); in recursive_poll_with_unpark()
188 tx0.unbounded_send(Box::new(future::lazy(move || { in recursive_poll_with_unpark()
202 drop(tx0); in recursive_poll_with_unpark()

12345678910>>...73