Home
last modified time | relevance | path

Searched refs:mres2 (Results 1 – 6 of 6) sorted by relevance

/dports/biology/mafft/mafft-7.267-without-extensions/core/
H A Dmakedirectionlist.c411 int ires, mres, mres2; in main() local
701 mres = mres2 = 0; in main()
707 if( ires>mres2 ) in main()
711 mres2 = mres; in main()
715 mres2 = ires; in main()
718 res_forward = (double)( mres + mres2 ) / 2; in main()
770 mres = mres2 = 0; in main()
774 if( ires>mres2 ) in main()
778 mres2 = mres; in main()
782 mres2 = ires; in main()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/Test/System.Runtime.CompilerServices/
H A DTaskAwaiterTest.cs255 var mres2 = new ManualResetEvent (false); in FinishedTaskOnCompleted()
266 mres2.Set (); in FinishedTaskOnCompleted()
272 Assert.AreEqual (Thread.CurrentThread.IsBackground, mres2.WaitOne (2000), "#2");; in FinishedTaskOnCompleted()
/dports/science/chrono/chrono-7.0.1/src/chrono/parallel/
H A DChThreadsWIN32.cpp150 unsigned int mres2; in flush() local
151 waitForResponse(&mtaskid, &mres2); in flush()
H A DChThreadsPOSIX.cpp192 unsigned int mres2; in flush() local
193 waitForResponse(&mtaskid, &mres2); in flush()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Threading.Tasks/tests/Task/
H A DTaskContinueWithTests.cs1102 ManualResetEventSlim mres2 = new ManualResetEventSlim(false); in RunLazyCancellationTests()
1108 …c1 = t1.ContinueWith(_ => { mres1.Set(); mres2.Wait(); }, cts.Token, options, TaskScheduler.Defaul… in RunLazyCancellationTests()
1112 …c1 = Task.Factory.ContinueWhenAny(new Task[] { t1 }, _ => { mres1.Set(); mres2.Wait(); }, cts.Toke… in RunLazyCancellationTests()
1116 …c1 = Task.Factory.ContinueWhenAll(new Task[] { t1 }, _ => { mres1.Set(); mres2.Wait(); }, cts.Toke… in RunLazyCancellationTests()
1122 mres2.Set(); // Allow continuation to end in RunLazyCancellationTests()
/dports/www/wuzz/wuzz-0.5.0/vendor/github.com/tidwall/gjson/
H A Dgjson_test.go1192 var mres2 []Result
1194 mres2 = append(mres2, Get(json, rkey))
1196 if len(mres1) != len(mres2) {
1197 t.Fatalf("expected %d, got %d", len(mres2), len(mres1))
1201 mres2[i].Index = 0
1203 v2 := fmt.Sprintf("%#v", mres2[i])