Home
last modified time | relevance | path

Searched refs:mv2 (Results 1 – 25 of 572) sorted by relevance

12345678910>>...23

/dports/www/mediawiki137/mediawiki-1.37.1/tests/phpunit/unit/includes/libs/Message/
H A DMessageValueTest.php63 $this->assertSame( $mv, $mv2 );
73 $this->assertSame( $mv, $mv2 );
84 $this->assertSame( $mv, $mv2 );
96 $this->assertSame( $mv, $mv2 );
101 $mv2 = $mv->numParams( 1, 2 );
107 $this->assertSame( $mv, $mv2 );
118 $this->assertSame( $mv, $mv2 );
129 $this->assertSame( $mv, $mv2 );
157 $mv2 = $mv->dateParams( $ts );
168 $mv2 = $mv->timeParams( $ts );
[all …]
/dports/www/mediawiki136/mediawiki-1.36.3/tests/phpunit/unit/includes/libs/Message/
H A DMessageValueTest.php63 $this->assertSame( $mv, $mv2 );
73 $this->assertSame( $mv, $mv2 );
84 $this->assertSame( $mv, $mv2 );
96 $this->assertSame( $mv, $mv2 );
101 $mv2 = $mv->numParams( 1, 2 );
107 $this->assertSame( $mv, $mv2 );
118 $this->assertSame( $mv, $mv2 );
129 $this->assertSame( $mv, $mv2 );
157 $mv2 = $mv->dateParams( $ts );
168 $mv2 = $mv->timeParams( $ts );
[all …]
/dports/www/mediawiki135/mediawiki-1.35.5/tests/phpunit/includes/libs/Message/
H A DMessageValueTest.php63 $this->assertSame( $mv, $mv2 );
73 $this->assertSame( $mv, $mv2 );
84 $this->assertSame( $mv, $mv2 );
96 $this->assertSame( $mv, $mv2 );
101 $mv2 = $mv->numParams( 1, 2 );
107 $this->assertSame( $mv, $mv2 );
118 $this->assertSame( $mv, $mv2 );
129 $this->assertSame( $mv, $mv2 );
140 $this->assertSame( $mv, $mv2 );
145 $mv2 = $mv->sizeParams( 1, 2 );
[all …]
/dports/audio/rhvoice/RHVoice-1.2.4/src/third-party/mage/
H A Dfft-sptk.cpp85 int mv2, mm1; in fft() local
159 mv2 = m / 2; in fft()
170 li = mv2; in fft()
230 int mv2, n, tblsize; in fftr() local
234 mv2 = m / 2; in fftr()
284 for (i=mv2,j=mv2-2; --i ; j-=2) { in fftr()
302 for (i=mv2; --i; ) { in fftr()
325 mv2 = m / 2; in ifftr()
364 for (i=mv2,j=mv2-2; --i ; j-=2) { in ifftr()
392 xp = x + mv2; in ifftr()
[all …]
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-core-math/src/main/java/de/lmu/ifi/dbs/elki/math/statistics/tests/
H A DWelchTTest.java54 MeanVariance mv1 = new MeanVariance(), mv2 = new MeanVariance(); in deviation() local
59 mv2.put(d); in deviation()
62 final double t = calculateTestStatistic(mv1, mv2); in deviation()
63 final int v = calculateDOF(mv1, mv2); in deviation()
75 public static double calculateTestStatistic(MeanVariance mv1, MeanVariance mv2) { in calculateTestStatistic() argument
76 final double delta = mv1.getMean() - mv2.getMean(); in calculateTestStatistic()
78 final double relvar2 = mv2.getSampleVariance() / mv2.getCount(); in calculateTestStatistic()
89 public static int calculateDOF(MeanVariance mv1, MeanVariance mv2) { in calculateDOF() argument
91 final double relvar2 = mv2.getSampleVariance() / mv2.getCount(); in calculateDOF()
93 …final double div = relvar1 * relvar1 / (mv1.getCount() - 1) + relvar2 * relvar2 / (mv2.getCount() … in calculateDOF()
/dports/lang/cython/Cython-0.29.24/tests/memoryview/
H A Dmemoryviewattrs.pyx193 mv1[...] = mv2
246 mv2 = mv1.copy()
251 print (<int*>mv2._data)[1] , (<int*>mv2._data)[2]
253 mv3 = mv2
264 assert len(mv2) == 3
301 mv2 = mv1
309 mv3 = mv2.copy()
311 …print (<long*>mv2._data)[0] , (<long*>mv2._data)[1] , (<long*>mv2._data)[2] , (<long*>mv2._data)[3]
342 mv2 = mv1
350 mv3 = mv2.copy()
[all …]
/dports/lang/cython-devel/cython-2b1e743/tests/memoryview/
H A Dmemoryviewattrs.pyx175 mv1[...] = mv2
226 mv2 = mv1.copy()
231 print (<int*>mv2._data)[1] , (<int*>mv2._data)[2]
233 mv3 = mv2
244 assert len(mv2) == 3
280 mv2 = mv1
288 mv3 = mv2.copy()
290 …print (<long*>mv2._data)[0] , (<long*>mv2._data)[1] , (<long*>mv2._data)[2] , (<long*>mv2._data)[3]
320 mv2 = mv1
328 mv3 = mv2.copy()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/buildtools/third_party/libc++/trunk/test/std/containers/associative/map/map.modifiers/
H A Dinsert_or_assign.pass.cpp91 Moveable mv2(9, 9.0); in main() local
92 r = m.insert_or_assign(3, std::move(mv2)); in main()
95 assert(mv2.moved()); // was moved from in main()
127 Moveable mv2(5, 5.0); in main() local
128 r = m.try_emplace(std::move(mvkey2), std::move(mv2)); in main()
131 assert(mv2.moved()); // was moved from in main()
152 Moveable mv2(5, 5.0); in main() local
153 r = m.insert_or_assign(it, 3, std::move(mv2)); in main()
155 assert(mv2.moved()); // was moved from in main()
178 Moveable mv2(5, 5.0); in main() local
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/libcxx/test/std/containers/associative/map/map.modifiers/
H A Dinsert_or_assign.pass.cpp91 Moveable mv2(9, 9.0); in main() local
92 r = m.insert_or_assign(3, std::move(mv2)); in main()
95 assert(mv2.moved()); // was moved from in main()
127 Moveable mv2(5, 5.0); in main() local
128 r = m.try_emplace(std::move(mvkey2), std::move(mv2)); in main()
131 assert(mv2.moved()); // was moved from in main()
152 Moveable mv2(5, 5.0); in main() local
153 r = m.insert_or_assign(it, 3, std::move(mv2)); in main()
155 assert(mv2.moved()); // was moved from in main()
178 Moveable mv2(5, 5.0); in main() local
[all …]
/dports/devel/libc++/libcxx-10.0.1.src/test/std/containers/associative/map/map.modifiers/
H A Dinsert_or_assign.pass.cpp91 Moveable mv2(9, 9.0); in main() local
92 r = m.insert_or_assign(3, std::move(mv2)); in main()
95 assert(mv2.moved()); // was moved from in main()
127 Moveable mv2(5, 5.0); in main() local
128 r = m.try_emplace(std::move(mvkey2), std::move(mv2)); in main()
131 assert(mv2.moved()); // was moved from in main()
152 Moveable mv2(5, 5.0); in main() local
153 r = m.insert_or_assign(it, 3, std::move(mv2)); in main()
155 assert(mv2.moved()); // was moved from in main()
178 Moveable mv2(5, 5.0); in main() local
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/libcxx/test/std/containers/associative/map/map.modifiers/
H A Dinsert_or_assign.pass.cpp91 Moveable mv2(9, 9.0); in main() local
92 r = m.insert_or_assign(3, std::move(mv2)); in main()
95 assert(mv2.moved()); // was moved from in main()
127 Moveable mv2(5, 5.0); in main() local
128 r = m.try_emplace(std::move(mvkey2), std::move(mv2)); in main()
131 assert(mv2.moved()); // was moved from in main()
152 Moveable mv2(5, 5.0); in main() local
153 r = m.insert_or_assign(it, 3, std::move(mv2)); in main()
155 assert(mv2.moved()); // was moved from in main()
178 Moveable mv2(5, 5.0); in main() local
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/
H A Dinsert_or_assign.pass.cpp97 Moveable mv2(9, 9.0); in main() local
98 r = m.insert_or_assign(3, std::move(mv2)); in main()
101 assert(mv2.moved()); // was moved from in main()
133 Moveable mv2(5, 5.0); in main() local
134 r = m.try_emplace(std::move(mvkey2), std::move(mv2)); in main()
137 assert(mv2.moved()); // was moved from in main()
158 Moveable mv2(5, 5.0); in main() local
159 r = m.insert_or_assign(it, 3, std::move(mv2)); in main()
161 assert(mv2.moved()); // was moved from in main()
184 Moveable mv2(5, 5.0); in main() local
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/buildtools/third_party/libc++/trunk/test/std/containers/unord/unord.map/unord.map.modifiers/
H A Dinsert_or_assign.pass.cpp97 Moveable mv2(9, 9.0); in main() local
98 r = m.insert_or_assign(3, std::move(mv2)); in main()
101 assert(mv2.moved()); // was moved from in main()
133 Moveable mv2(5, 5.0); in main() local
134 r = m.try_emplace(std::move(mvkey2), std::move(mv2)); in main()
137 assert(mv2.moved()); // was moved from in main()
158 Moveable mv2(5, 5.0); in main() local
159 r = m.insert_or_assign(it, 3, std::move(mv2)); in main()
161 assert(mv2.moved()); // was moved from in main()
184 Moveable mv2(5, 5.0); in main() local
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/
H A Dinsert_or_assign.pass.cpp97 Moveable mv2(9, 9.0); in main() local
98 r = m.insert_or_assign(3, std::move(mv2)); in main()
101 assert(mv2.moved()); // was moved from in main()
133 Moveable mv2(5, 5.0); in main() local
134 r = m.try_emplace(std::move(mvkey2), std::move(mv2)); in main()
137 assert(mv2.moved()); // was moved from in main()
158 Moveable mv2(5, 5.0); in main() local
159 r = m.insert_or_assign(it, 3, std::move(mv2)); in main()
161 assert(mv2.moved()); // was moved from in main()
184 Moveable mv2(5, 5.0); in main() local
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/
H A Dinsert_or_assign.pass.cpp97 Moveable mv2(9, 9.0); in main() local
98 r = m.insert_or_assign(3, std::move(mv2)); in main()
101 assert(mv2.moved()); // was moved from in main()
133 Moveable mv2(5, 5.0); in main() local
134 r = m.try_emplace(std::move(mvkey2), std::move(mv2)); in main()
137 assert(mv2.moved()); // was moved from in main()
158 Moveable mv2(5, 5.0); in main() local
159 r = m.insert_or_assign(it, 3, std::move(mv2)); in main()
161 assert(mv2.moved()); // was moved from in main()
184 Moveable mv2(5, 5.0); in main() local
[all …]
/dports/devel/llvm12/llvm-project-12.0.1.src/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/
H A Dinsert_or_assign.pass.cpp97 Moveable mv2(9, 9.0); in main() local
98 r = m.insert_or_assign(3, std::move(mv2)); in main()
101 assert(mv2.moved()); // was moved from in main()
133 Moveable mv2(5, 5.0); in main() local
134 r = m.try_emplace(std::move(mvkey2), std::move(mv2)); in main()
137 assert(mv2.moved()); // was moved from in main()
158 Moveable mv2(5, 5.0); in main() local
159 r = m.insert_or_assign(it, 3, std::move(mv2)); in main()
161 assert(mv2.moved()); // was moved from in main()
184 Moveable mv2(5, 5.0); in main() local
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/
H A Dinsert_or_assign.pass.cpp97 Moveable mv2(9, 9.0); in main() local
98 r = m.insert_or_assign(3, std::move(mv2)); in main()
101 assert(mv2.moved()); // was moved from in main()
133 Moveable mv2(5, 5.0); in main() local
134 r = m.try_emplace(std::move(mvkey2), std::move(mv2)); in main()
137 assert(mv2.moved()); // was moved from in main()
158 Moveable mv2(5, 5.0); in main() local
159 r = m.insert_or_assign(it, 3, std::move(mv2)); in main()
161 assert(mv2.moved()); // was moved from in main()
184 Moveable mv2(5, 5.0); in main() local
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/
H A Dinsert_or_assign.pass.cpp97 Moveable mv2(9, 9.0); in main() local
98 r = m.insert_or_assign(3, std::move(mv2)); in main()
101 assert(mv2.moved()); // was moved from in main()
133 Moveable mv2(5, 5.0); in main() local
134 r = m.try_emplace(std::move(mvkey2), std::move(mv2)); in main()
137 assert(mv2.moved()); // was moved from in main()
158 Moveable mv2(5, 5.0); in main() local
159 r = m.insert_or_assign(it, 3, std::move(mv2)); in main()
161 assert(mv2.moved()); // was moved from in main()
184 Moveable mv2(5, 5.0); in main() local
[all …]
/dports/devel/libc++/libcxx-10.0.1.src/test/std/containers/unord/unord.map/unord.map.modifiers/
H A Dinsert_or_assign.pass.cpp97 Moveable mv2(9, 9.0); in main() local
98 r = m.insert_or_assign(3, std::move(mv2)); in main()
101 assert(mv2.moved()); // was moved from in main()
133 Moveable mv2(5, 5.0); in main() local
134 r = m.try_emplace(std::move(mvkey2), std::move(mv2)); in main()
137 assert(mv2.moved()); // was moved from in main()
158 Moveable mv2(5, 5.0); in main() local
159 r = m.insert_or_assign(it, 3, std::move(mv2)); in main()
161 assert(mv2.moved()); // was moved from in main()
184 Moveable mv2(5, 5.0); in main() local
[all …]
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/
H A Dinsert_or_assign.pass.cpp97 Moveable mv2(9, 9.0); in main() local
98 r = m.insert_or_assign(3, std::move(mv2)); in main()
101 assert(mv2.moved()); // was moved from in main()
133 Moveable mv2(5, 5.0); in main() local
134 r = m.try_emplace(std::move(mvkey2), std::move(mv2)); in main()
137 assert(mv2.moved()); // was moved from in main()
158 Moveable mv2(5, 5.0); in main() local
159 r = m.insert_or_assign(it, 3, std::move(mv2)); in main()
161 assert(mv2.moved()); // was moved from in main()
184 Moveable mv2(5, 5.0); in main() local
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/
H A Dinsert_or_assign.pass.cpp97 Moveable mv2(9, 9.0); in main() local
98 r = m.insert_or_assign(3, std::move(mv2)); in main()
101 assert(mv2.moved()); // was moved from in main()
133 Moveable mv2(5, 5.0); in main() local
134 r = m.try_emplace(std::move(mvkey2), std::move(mv2)); in main()
137 assert(mv2.moved()); // was moved from in main()
158 Moveable mv2(5, 5.0); in main() local
159 r = m.insert_or_assign(it, 3, std::move(mv2)); in main()
161 assert(mv2.moved()); // was moved from in main()
184 Moveable mv2(5, 5.0); in main() local
[all …]
/dports/devel/llvm13/llvm-project-13.0.1.src/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/
H A Dinsert_or_assign.pass.cpp97 Moveable mv2(9, 9.0); in main() local
98 r = m.insert_or_assign(3, std::move(mv2)); in main()
101 assert(mv2.moved()); // was moved from in main()
133 Moveable mv2(5, 5.0); in main() local
134 r = m.try_emplace(std::move(mvkey2), std::move(mv2)); in main()
137 assert(mv2.moved()); // was moved from in main()
158 Moveable mv2(5, 5.0); in main() local
159 r = m.insert_or_assign(it, 3, std::move(mv2)); in main()
161 assert(mv2.moved()); // was moved from in main()
184 Moveable mv2(5, 5.0); in main() local
[all …]
/dports/devel/stack/stack-2.7.3/_cabal_deps/conduit-1.3.4.1/benchmarks/
H A Doptimize-201408.hs245 go !i !t !end _mv mv2 | end == bufSz = newBuf >>= go i t sz mv2
259 mv2 <- newBuf
260 go 1 t0 0 mv mv2
353 mv2 <- newBuf
354 go 0 mv mv2
359 go !end _mv mv2 | end == bufSz = newBuf >>= go sz mv2
360 go !end mv mv2 = do
374 go end' mv mv2
386 mv2 <- newBuf
387 return (s, 0, mv, mv2)
[all …]
/dports/games/hedgewars-server/hedgewars-src-1.0.0/gameServer/_cabal_deps/conduit-1.3.2/benchmarks/
H A Doptimize-201408.hs245 go !i !t !end _mv mv2 | end == bufSz = newBuf >>= go i t sz mv2
259 mv2 <- newBuf
260 go 1 t0 0 mv mv2
353 mv2 <- newBuf
354 go 0 mv mv2
359 go !end _mv mv2 | end == bufSz = newBuf >>= go sz mv2
360 go !end mv mv2 = do
374 go end' mv mv2
386 mv2 <- newBuf
387 return (s, 0, mv, mv2)
[all …]
/dports/finance/hs-hledger-web/hledger-web-1.19/_cabal_deps/conduit-1.3.2.1/benchmarks/
H A Doptimize-201408.hs245 go !i !t !end _mv mv2 | end == bufSz = newBuf >>= go i t sz mv2
259 mv2 <- newBuf
260 go 1 t0 0 mv mv2
353 mv2 <- newBuf
354 go 0 mv mv2
359 go !end _mv mv2 | end == bufSz = newBuf >>= go sz mv2
360 go !end mv mv2 = do
374 go end' mv mv2
386 mv2 <- newBuf
387 return (s, 0, mv, mv2)
[all …]

12345678910>>...23