Home
last modified time | relevance | path

Searched refs:cps2 (Results 1 – 25 of 69) sorted by relevance

123

/dports/games/libretro-mame2000/mame2000-libretro-e364a15/src/drivers/
H A Dcps2.c1502 GAME( 1994, armwara, 0, cps2, cps2, cps2, ROT0, "Capcom", "Armoured Warriors (Asia 940920)" )
1503 GAME( 1994, avsp, 0, cps2, cps2, cps2, ROT0, "Capcom", "Aliens Vs. Predator (USA 940520)"…
1504 GAME( 1997, batcirj, 0, cps2, cps2, cps2, ROT0, "Capcom", "Battle Circuit (Japan 970319)" )
1505 GAME( 1997, batcira, batcirj, cps2, cps2, cps2, ROT0, "Capcom", "Battle Circuit (Asia 970319)" )
1514 GAME( 1993, ecofe, 0, cps2, cps2, cps2, ROT0, "Capcom", "Eco Fighters (Etc 931203)" )
1515 GAME( 1995, msh, 0, cps2, cps2, cps2, ROT0, "Capcom", "Marvel Super Heroes (USA 951024)"…
1524 GAME( 1995, sfzj, sfa, cps2, cps2, cps2, ROT0, "Capcom", "Street Fighter Zero (Japan 950627…
1525 GAME( 1995, sfzjr1, sfa, cps2, cps2, cps2, ROT0, "Capcom", "Street Fighter Zero (Japan 950727…
1526 GAME( 1996, sfz2j, 0, cps2, cps2, cps2, ROT0, "Capcom", "Street Fighter Zero 2 (Japan 9602…
1528 GAME( 1998, sfa3, 0, cps2, cps2, cps2, ROT0, "Capcom", "Street Fighter Alpha 3 (USA 98062…
[all …]
/dports/lang/p5-ePerl/eperl-2.2.14/
H A Deperl_parse.c354 char *cps2, *cpe2; in ePerl_Bristled2Plain() local
397 cps2 = cps; in ePerl_Bristled2Plain()
399 while (cps2 < cpEND && (cpe2 = strnchr(cps2, '\n', cpEND-cps2)) != NULL) { in ePerl_Bristled2Plain()
403 cpOut = ePerl_Efwrite(cps2, cpe2-1-cps2, 1, cpOut); in ePerl_Bristled2Plain()
410 cpOut = ePerl_Efwrite(cps2, cpe2-cps2, 1, cpOut); in ePerl_Bristled2Plain()
419 cpOut = ePerl_Efwrite(cps2, cpEND-cps2, 1, cpOut); in ePerl_Bristled2Plain()
433 cps2 = cps; in ePerl_Bristled2Plain()
434 while ((cpe2 = strnchr(cps2, '\n', cpe-cps2)) != NULL) { in ePerl_Bristled2Plain()
438 cpOut = ePerl_Efwrite(cps2, cpe2-1-cps2, 1, cpOut); in ePerl_Bristled2Plain()
445 cpOut = ePerl_Efwrite(cps2, cpe2-cps2, 1, cpOut); in ePerl_Bristled2Plain()
[all …]
/dports/devel/hyperscan/hyperscan-5.4.0/unit/internal/
H A Dunicode_set.cpp74 CodePointSet cps2 = cps; in TEST() local
76 EXPECT_TRUE(cps2.none()); in TEST()
78 cps2 = cps; in TEST()
80 cps2.unsetRange(0, 'y'); in TEST()
81 EXPECT_TRUE(cps2.none()); in TEST()
83 cps2 = cps; in TEST()
86 EXPECT_TRUE(cps2.none()); in TEST()
98 CodePointSet cps2 = cps; in TEST() local
99 cps2.setRange('E', 'K'); in TEST()
100 EXPECT_TRUE(cps == cps2); in TEST()
[all …]
/dports/finance/R-cran-AER/AER/demo/
H A DCh-Intro.R86 cps2 <- data.frame(education = mean(cps$education), dataframe
88 cps2 <- cbind(cps2, predict(cps_lm, newdata = cps2, globalVar
90 cps2 <- cbind(cps2, globalVar
91 predict(cps_rq, newdata = cps2, type = ""))
106 for(i in 6:10) lines(cps2[,i] ~ experience,
107 data = cps2, col = "red")
149 lines(fit ~ experience, data = cps2)
150 lines(lwr ~ experience, data = cps2, lty = 2)
151 lines(upr ~ experience, data = cps2, lty = 2)
/dports/finance/R-cran-AER/AER/tests/
H A DCh-Intro.R86 cps2 <- data.frame(education = mean(cps$education), dataframe
88 cps2 <- cbind(cps2, predict(cps_lm, newdata = cps2, globalVar
90 cps2 <- cbind(cps2, globalVar
91 predict(cps_rq, newdata = cps2, type = ""))
106 for(i in 6:10) lines(cps2[,i] ~ experience,
107 data = cps2, col = "red")
149 lines(fit ~ experience, data = cps2)
150 lines(lwr ~ experience, data = cps2, lty = 2)
151 lines(upr ~ experience, data = cps2, lty = 2)
H A DCh-Intro.Rout.save154 R> cps2 <- cbind(cps2, predict(cps_lm, newdata = cps2,
156 R> cps2 <- cbind(cps2,
157 + predict(cps_rq, newdata = cps2, type = ""))
164 R> ## for(i in 6:10) lines(cps2[,i] ~ experience,
165 R> ## data = cps2, col = "red")
172 R> for(i in 6:10) lines(cps2[,i] ~ experience,
173 + data = cps2, col = "red")
210 R> ## lines(fit ~ experience, data = cps2)
222 R> lines(fit ~ experience, data = cps2)
223 R> lines(lwr ~ experience, data = cps2, lty = 2)
[all …]
/dports/java/icedtea-web/icedtea-web-1.6.2/tests/netx/unit/net/sourceforge/jnlp/util/
H A DClasspathMatcherTest.java585 Assert.assertFalse(cps2.matches(new URL("http://bb.cz"))); in matchersTest()
586 Assert.assertTrue(cps2.matches(new URL("http://aa.cz"))); in matchersTest()
587 Assert.assertFalse(cps2.matches(new URL("http://bb.cz"))); in matchersTest()
612 Assert.assertFalse(cps2.matches(new URL("http://bb.cz"))); in matchersTestWithPathsNix()
613 Assert.assertFalse(cps2.matches(new URL("http://aa.cz"))); in matchersTestWithPathsNix()
614 Assert.assertFalse(cps2.matches(new URL("http://bb.cz"))); in matchersTestWithPathsNix()
627 Assert.assertFalse(cps2.matches(new URL("http://bb.cz"))); in matchersTestWithPathsNix()
628 Assert.assertFalse(cps2.matches(new URL("http://aa.cz"))); in matchersTestWithPathsNix()
650 Assert.assertFalse(cps2.matches(new URL("http://bb.cz"))); in matchersTestWithPathsWin()
651 Assert.assertFalse(cps2.matches(new URL("http://aa.cz"))); in matchersTestWithPathsWin()
[all …]
/dports/math/eclib/eclib-20210318/tests/
H A Dthtconst.cc82 double cps2 = cps_bound(CD2); in main() local
84 cout << "CPS bound 2 = " << cps2 << "\n"; in main()
85 bigint kmin=k; double cpsmin=cps2; long kkmin=0; in main()
100 if(cpsup<cps2-margin) in main()
103 if(cpsdown<cps2-margin) in main()
111 cout << "Best CPS bound = " << cps2 << "\n"; in main()
115 double cpsk, lastcps=cps2; in main()
132 cps2=cpsmin; kkmintotal+=kkmin; in main()
134 cout << "Best CPS bound = " << cps2 << "\n"; in main()
139 cps2total+=cps2; in main()
/dports/games/libretro-mame2003_plus/mame2003-plus-libretro-17e9889/src/drivers/
H A Dcps2.c123 extern VIDEO_START( cps2 );
200 static NVRAM_HANDLER( cps2 ) in NVRAM_HANDLER() argument
774 INPUT_PORTS_START( cps2 )
871 static MACHINE_DRIVER_START( cps2 )
887 MDRV_NVRAM_HANDLER(cps2)
896 MDRV_VIDEO_START(cps2)
6238 GAME( 1993, ecofghtr, 0, cps2, sgemf, cps2, ROT0, "Capcom", "Eco Fighters (World 931203)"…
6254 GAME( 1994, armwaru, armwar, cps2, avsp, cps2, ROT0, "Capcom", "Armored Warriors (USA 941024…
6330 GAME( 1997, batcir, 0, cps2, batcir, cps2, ROT0, "Capcom", "Battle Circuit (Euro 970319)…
6332 GAME( 1997, batcirj, batcir, cps2, batcir, cps2, ROT0, "Capcom", "Battle Circuit (Japan 970319…
[all …]
/dports/games/libretro-mame2003/mame2003-libretro-4358db4/src/drivers/
H A Dcps2.c123 extern VIDEO_START( cps2 );
200 static NVRAM_HANDLER( cps2 ) in NVRAM_HANDLER() argument
774 INPUT_PORTS_START( cps2 )
871 static MACHINE_DRIVER_START( cps2 )
887 MDRV_NVRAM_HANDLER(cps2)
896 MDRV_VIDEO_START(cps2)
6116 GAME( 1993, ecofghtr, 0, cps2, sgemf, cps2, ROT0, "Capcom", "Eco Fighters (World 931203)"…
6132 GAME( 1994, armwaru, armwar, cps2, avsp, cps2, ROT0, "Capcom", "Armored Warriors (US 941024)…
6208 GAME( 1997, batcir, 0, cps2, batcir, cps2, ROT0, "Capcom", "Battle Circuit (Euro 970319)…
6210 GAME( 1997, batcirj, batcir, cps2, batcir, cps2, ROT0, "Capcom", "Battle Circuit (Japan 970319…
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/toolkit/mozapps/downloads/
H A DDownloadLastDir.jsm59 let cps2 = Cc["@mozilla.org/content-pref/service;1"].getService(
63 cps2.removeByName(LAST_DIR_PREF, nonPrivateLoadContext);
64 cps2.removeByName(LAST_DIR_PREF, privateLoadContext);
146 let cps2 = Cc["@mozilla.org/content-pref/service;1"].getService(
150 cps2.getByDomainAndName(uri, LAST_DIR_PREF, this.fakeContext, {
173 let cps2 = Cc["@mozilla.org/content-pref/service;1"].getService(
177 cps2.set(uri, LAST_DIR_PREF, aFile.path, this.fakeContext);
179 cps2.removeByDomainAndName(uri, LAST_DIR_PREF, this.fakeContext);
/dports/lang/spidermonkey60/firefox-60.9.0/toolkit/mozapps/downloads/
H A DDownloadLastDir.jsm61 let cps2 = Cc["@mozilla.org/content-pref/service;1"].
64 cps2.removeByName(LAST_DIR_PREF, nonPrivateLoadContext);
65 cps2.removeByName(LAST_DIR_PREF, privateLoadContext);
135 let cps2 = Cc["@mozilla.org/content-pref/service;1"]
138 cps2.getByDomainAndName(uri, LAST_DIR_PREF, this.fakeContext, {
160 let cps2 = Cc["@mozilla.org/content-pref/service;1"]
163 cps2.set(uri, LAST_DIR_PREF, aFile.path, this.fakeContext);
165 cps2.removeByDomainAndName(uri, LAST_DIR_PREF, this.fakeContext);
/dports/www/firefox/firefox-99.0/toolkit/mozapps/downloads/
H A DDownloadLastDir.jsm59 let cps2 = Cc["@mozilla.org/content-pref/service;1"].getService(
63 cps2.removeByName(LAST_DIR_PREF, nonPrivateLoadContext);
64 cps2.removeByName(LAST_DIR_PREF, privateLoadContext);
146 let cps2 = Cc["@mozilla.org/content-pref/service;1"].getService(
150 cps2.getByDomainAndName(uri, LAST_DIR_PREF, this.fakeContext, {
173 let cps2 = Cc["@mozilla.org/content-pref/service;1"].getService(
177 cps2.set(uri, LAST_DIR_PREF, aFile.path, this.fakeContext);
179 cps2.removeByDomainAndName(uri, LAST_DIR_PREF, this.fakeContext);
/dports/mail/thunderbird/thunderbird-91.8.0/toolkit/mozapps/downloads/
H A DDownloadLastDir.jsm59 let cps2 = Cc["@mozilla.org/content-pref/service;1"].getService(
63 cps2.removeByName(LAST_DIR_PREF, nonPrivateLoadContext);
64 cps2.removeByName(LAST_DIR_PREF, privateLoadContext);
146 let cps2 = Cc["@mozilla.org/content-pref/service;1"].getService(
150 cps2.getByDomainAndName(uri, LAST_DIR_PREF, this.fakeContext, {
173 let cps2 = Cc["@mozilla.org/content-pref/service;1"].getService(
177 cps2.set(uri, LAST_DIR_PREF, aFile.path, this.fakeContext);
179 cps2.removeByDomainAndName(uri, LAST_DIR_PREF, this.fakeContext);
/dports/www/firefox-esr/firefox-91.8.0/toolkit/mozapps/downloads/
H A DDownloadLastDir.jsm59 let cps2 = Cc["@mozilla.org/content-pref/service;1"].getService(
63 cps2.removeByName(LAST_DIR_PREF, nonPrivateLoadContext);
64 cps2.removeByName(LAST_DIR_PREF, privateLoadContext);
146 let cps2 = Cc["@mozilla.org/content-pref/service;1"].getService(
150 cps2.getByDomainAndName(uri, LAST_DIR_PREF, this.fakeContext, {
173 let cps2 = Cc["@mozilla.org/content-pref/service;1"].getService(
177 cps2.set(uri, LAST_DIR_PREF, aFile.path, this.fakeContext);
179 cps2.removeByDomainAndName(uri, LAST_DIR_PREF, this.fakeContext);
/dports/emulators/mess/mame-mame0226/src/mame/drivers/
H A Dcps2.cpp1291 MACHINE_START_MEMBER(cps2_state,cps2) in INPUT_PORTS_START()
1298 void cps2_state::cps2(machine_config &config) in cps2() function in cps2_state
1312 MCFG_MACHINE_START_OVERRIDE(cps2_state, cps2) in cps2()
1339 cps2(config); in dead_cps2()
1346 cps2(config); in gigaman2()
10419 GAME( 2000, mpang, 0, cps2, cps2_2p1b, cps2_state, init_cps2, ROT0, "Mitchell (Ca…
10420 GAME( 2000, mpangr1, mpang, cps2, cps2_2p1b, cps2_state, init_cps2, ROT0, "Mitchell (Ca…
10421 GAME( 2000, mpangu, mpang, cps2, cps2_2p1b, cps2_state, init_cps2, ROT0, "Mitchell (Ca…
10439 GAME( 2001, progear, 0, cps2, cps2_2p3b, cps2_state, init_cps2, ROT0, "Cave (Capcom…
10440 GAME( 2001, progearj, progear, cps2, cps2_2p3b, cps2_state, init_cps2, ROT0, "Cave (Capcom…
[all …]
/dports/emulators/mame/mame-mame0226/src/mame/drivers/
H A Dcps2.cpp1291 MACHINE_START_MEMBER(cps2_state,cps2) in INPUT_PORTS_START()
1298 void cps2_state::cps2(machine_config &config) in cps2() function in cps2_state
1312 MCFG_MACHINE_START_OVERRIDE(cps2_state, cps2) in cps2()
1339 cps2(config); in dead_cps2()
1346 cps2(config); in gigaman2()
10419 GAME( 2000, mpang, 0, cps2, cps2_2p1b, cps2_state, init_cps2, ROT0, "Mitchell (Ca…
10420 GAME( 2000, mpangr1, mpang, cps2, cps2_2p1b, cps2_state, init_cps2, ROT0, "Mitchell (Ca…
10421 GAME( 2000, mpangu, mpang, cps2, cps2_2p1b, cps2_state, init_cps2, ROT0, "Mitchell (Ca…
10439 GAME( 2001, progear, 0, cps2, cps2_2p3b, cps2_state, init_cps2, ROT0, "Cave (Capcom…
10440 GAME( 2001, progearj, progear, cps2, cps2_2p3b, cps2_state, init_cps2, ROT0, "Cave (Capcom…
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/toolkit/components/contentprefs/
H A DContentPrefServiceParent.jsm43 cps2.removeObserverForName(i, this._observer);
68 cps2.addObserverForName(prefName, this._observer);
76 cps2.removeObserverForName(prefName, this._observer);
137 cps2[data.call](...args);
163 "cps2",
/dports/www/firefox/firefox-99.0/toolkit/components/contentprefs/
H A DContentPrefServiceParent.jsm43 cps2.removeObserverForName(i, this._observer);
68 cps2.addObserverForName(prefName, this._observer);
76 cps2.removeObserverForName(prefName, this._observer);
137 cps2[data.call](...args);
163 "cps2",
/dports/www/firefox-esr/firefox-91.8.0/toolkit/components/contentprefs/
H A DContentPrefServiceParent.jsm43 cps2.removeObserverForName(i, this._observer);
68 cps2.addObserverForName(prefName, this._observer);
76 cps2.removeObserverForName(prefName, this._observer);
137 cps2[data.call](...args);
163 "cps2",
/dports/www/firefox-legacy/firefox-52.8.0esr/toolkit/mozapps/downloads/
H A DDownloadLastDir.jsm56 let cps2 = Components.classes["@mozilla.org/content-pref/service;1"].
59 cps2.removeByName(LAST_DIR_PREF, {usePrivateBrowsing: false});
60 cps2.removeByName(LAST_DIR_PREF, {usePrivateBrowsing: true});
156 let cps2 = Components.classes["@mozilla.org/content-pref/service;1"]
159 cps2.getByDomainAndName(uri, LAST_DIR_PREF, this.fakeContext, {
177 let cps2 = Components.classes["@mozilla.org/content-pref/service;1"]
180 cps2.set(uri, LAST_DIR_PREF, aFile.path, this.fakeContext);
182 cps2.removeByDomainAndName(uri, LAST_DIR_PREF, this.fakeContext);
/dports/misc/vxl/vxl-3.3.2/contrib/mul/mbl/tests/
H A Dtest_clamped_plate_spline_2d.cxx38 mbl_clamped_plate_spline_2d cps2 = cps; in test_cps_at_fixed_points() local
39 TEST("Comparison operator",cps,cps2); in test_cps_at_fixed_points()
/dports/math/cgal/CGAL-5.3/examples/Triangulation_on_sphere_2/
H A Dtriang_on_sphere_geo.cpp39 typename Traits::Construct_point_on_sphere_2 cps2 = traits.construct_point_on_sphere_2_object(); in main() local
47 Point ps = cps2(cp); in main()
/dports/math/R/R-4.1.2/src/library/grid/R/
H A Dcurve.R353 cps2 <- calcSquareControlPoints(xm, ym, x2, y2, functionVar
362 cps2$end)
368 cps2 <- calcControlPoints(xm, ym, x2, y2,
375 cbDiagram(xm, ym, x2, y2, cps2)
380 xsplineGrob(c(x1, cps1$x, xm, cps2$x, x2),
381 c(y1, cps1$y, ym, cps2$y, y2),
/dports/math/libRmath/R-4.1.1/src/library/grid/R/
H A Dcurve.R353 cps2 <- calcSquareControlPoints(xm, ym, x2, y2, functionVar
362 cps2$end)
368 cps2 <- calcControlPoints(xm, ym, x2, y2,
375 cbDiagram(xm, ym, x2, y2, cps2)
380 xsplineGrob(c(x1, cps1$x, xm, cps2$x, x2),
381 c(y1, cps1$y, ym, cps2$y, y2),

123