Home
last modified time | relevance | path

Searched refs:scen (Results 1 – 25 of 363) sorted by relevance

12345678910>>...15

/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/wiredtiger/test/java/com/wiredtiger/test/
H A DPackTest03.java200 if ((value < scen.low || value > scen.high) && scen.low < scen.high) in packSingle()
206 if (scen.low == 0 && value > (scen.high / 2)) { in packSingle()
212 scen.adaptor.addval(packer, value); in packSingle()
219 if (scen.low < 0 && unpacked < 0) { in packSingle()
220 unpacked = (unpacked & scen.mask) | ~scen.mask; in packSingle()
223 unpacked = unpacked & scen.mask; in packSingle()
281 scen.format); in tryPackRange()
285 if (lowRange < scen.low) in tryPackRange()
286 lowRange = scen.low; in tryPackRange()
287 if (highRange > scen.high && scen.high != -1L) in tryPackRange()
[all …]
/dports/net/boinc-client/boinc-client_release-7.8-7.8.6/doc/sim/
H A Dsim_web.php49 function nsims($scen) { argument
50 $d = opendir("scenarios/$scen/simulations");
274 $dir = "scenarios/$scen/simulations/$sim";
363 $scen = get_str("scen");
420 $scen = post_str("scen");
421 if (!is_dir("scenarios/$scen")) {
424 $sim_dir = "scenarios/$scen/simulations";
460 $scen = get_str("scen");
462 $dir = "scenarios/$scen/simulations/$sim";
472 row2("Scenario", "<a href=sim_web.php?action=show_scenario&name=$scen>$scen</a>");
[all …]
/dports/games/simutrans/simutrans-121.0/network/
H A Dnetwork_cmd_scenario.cc44 scenario_t *scen = welt->get_scenario(); in execute() local
45 if (scen == NULL || !scen->is_scripted()) { in execute()
48 script_vm_t *script = scen->script; in execute()
52 scen->open_info_win(function); in execute()
85 scen->update_won_lost(won, lost); in execute()
97 scenario_t *scen = welt->get_scenario(); in do_command() local
99 scen->intern_forbid(rule, forbid); in do_command()
/dports/devel/bsdelf/elftoolchain-0.7.1/test/tet/bin/
H A Dmunge-ts52 scen="tet_scen"
72 scen="${2}";
94 awk -v scen=${scen} -v prefix=${prefix} '
166 rm ${output} ${scen}
/dports/devel/elftoolchain/elftoolchain-0.7.1/test/tet/bin/
H A Dmunge-ts52 scen="tet_scen"
72 scen="${2}";
94 awk -v scen=${scen} -v prefix=${prefix} '
166 rm ${output} ${scen}
/dports/net/liblinphone/linphone-3.12.0/tester/
H A Dcomplex_sip_case_tester.c129 char *scen; in sip_update_within_icoming_reinvite_with_no_sdp() local
155 char *scen; in call_with_audio_mline_before_video_in_sdp() local
168 scen = bc_tester_res("sipp/call_with_audio_mline_before_video_in_sdp.xml"); in call_with_audio_mline_before_video_in_sdp()
196 char *scen; in call_with_video_mline_before_audio_in_sdp() local
209 scen = bc_tester_res("sipp/call_with_video_mline_before_audio_in_sdp.xml"); in call_with_video_mline_before_audio_in_sdp()
237 char *scen; in call_with_multiple_audio_mline_in_sdp() local
250 scen = bc_tester_res("sipp/call_with_multiple_audio_mline_in_sdp.xml"); in call_with_multiple_audio_mline_in_sdp()
278 char *scen; in call_with_multiple_video_mline_in_sdp() local
291 scen = bc_tester_res("sipp/call_with_multiple_video_mline_in_sdp.xml"); in call_with_multiple_video_mline_in_sdp()
320 char *scen; in call_invite_200ok_without_contact_header() local
[all …]
/dports/textproc/kf5-syntax-highlighting/syntax-highlighting-5.89.0/autotests/input/
H A Dhighlight.tcsh32 foreach scen ( a b )
33 echo $scen
35 if ($scen == a) then
36 echo $scen
37 else if ($scen == x) then
/dports/dns/unbound/unbound-1.14.0/testcode/
H A Dreplay.c422 if(!scen) in make_scenario()
424 memset(scen, 0, sizeof(*scen)); in make_scenario()
426 if(!scen->title) { in make_scenario()
427 free(scen); in make_scenario()
430 return scen; in make_scenario()
456 if(scen) in replay_scenario_read()
459 if(!scen) in replay_scenario_read()
463 if(!scen) in replay_scenario_read()
494 return scen; in replay_scenario_read()
507 if(!scen) in replay_scenario_delete()
[all …]
H A Dtestbound.c322 struct replay_scenario* scen = NULL; in setup_playback() local
332 scen = replay_scenario_read(in, filename, &lineno); in setup_playback()
334 if(!scen) in setup_playback()
338 log_info("Scenario: %s", scen->title); in setup_playback()
339 return scen; in setup_playback()
367 struct replay_scenario* scen = NULL; in main() local
476 scen = setup_playback(playback_file, &pass_argc, pass_argv); in main()
478 fake_event_init(scen); in main()
/dports/games/simutrans/simutrans-121.0/gui/
H A Dscenario_info.cc78 scenario_t *scen = welt->get_scenario(); in update_scenario_texts() local
81 scen->update_scenario_texts(); in update_scenario_texts()
83 update_dynamic_texts( info, scen->info_text, border_size, init); in update_scenario_texts()
84 update_dynamic_texts( goal, scen->goal_text, border_size, init); in update_scenario_texts()
85 update_dynamic_texts( rule, scen->rule_text, border_size, init); in update_scenario_texts()
86 update_dynamic_texts( about, scen->about_text, border_size, init); in update_scenario_texts()
87 update_dynamic_texts( result, scen->result_text, border_size, init); in update_scenario_texts()
88 update_dynamic_texts( debug_msg, scen->debug_text, border_size, init); in update_scenario_texts()
/dports/games/lordsawar/lordsawar-0.3.2/src/
H A Dscenario-list.cpp50 ScenarioDetails *scen = in ScenarioList() local
53 push_back (scen); in ScenarioList()
55 delete scen; in ScenarioList()
60 ScenarioDetails *scen = in ScenarioList() local
63 push_back (scen); in ScenarioList()
65 delete scen; in ScenarioList()
H A Drecently-played-game.cpp124 RecentlyPlayedHotseatGame::RecentlyPlayedHotseatGame(GameScenario *scen, in RecentlyPlayedHotseatGame() argument
126 :RecentlyPlayedGame(scen, p), d_filename("") in RecentlyPlayedHotseatGame()
161 RecentlyPlayedNetworkedGame::RecentlyPlayedNetworkedGame(GameScenario *scen, in RecentlyPlayedNetworkedGame() argument
163 :RecentlyPlayedGame(scen, p), d_host(""), d_port(LORDSAWAR_PORT) in RecentlyPlayedNetworkedGame()
/dports/converters/wkhtmltopdf/qt-5db36ec/tests/auto/xmlpatternssdk/
H A DTestCase.cpp139 const Scenario scen(scenario()); in execute() local
205 if(scen == ParseError) /* We're supposed to have received an error in execute()
246 Q_ASSERT(scen == Standard || scen == RuntimeError); in execute()
306 QString scen; in toXML() local
311 scen = QLatin1String("standard"); in toXML()
316 scen = QLatin1String("parse-error"); in toXML()
321 scen = QLatin1String("runtime-error"); in toXML()
326 scen = QLatin1String("trivial"); in toXML()
332 test_caseAtts.append(QLatin1String("scenario"), QString(), QLatin1String("scenario"), scen); in toXML()
366 QString TestCase::displayName(const Scenario scen) in displayName() argument
[all …]
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/wiredtiger/test/suite/
H A Dwtscenario.py271 scen = wtscenario()
272 scen.ioverflow = max(imin / 40, 40)
273 scen.imax = imax
274 scen.loverflow = max(lmin / 40, 40)
275 scen.lmax = lmax
276 scen.cache_size = cache
277 s.append((scen.shortName(), dict(session_create_scenario=scen)))
/dports/games/openclonk/openclonk-release-8.1-src/tests/
H A Dstart_all_scenarios.rs67 fn test(scen : &Path, oc : &str, verbosity : u64) { in test()
70 println!("Testing {}", scen.display()); in test()
85 .arg(scen) in test()
102 println!("Timeout: Could not finish test of {}, shutting down", scen.display()); in test()
106 println!("Error testing {}, OC seems to have died.", scen.display()); in test()
113 println!("{}: {}", scen.display(), caps.get(1).unwrap().as_str()) in test()
135 println!("Error testing {}: Did not shut down within deadline. Killing.", scen.display()); in test()
/dports/net/kea/kea-2.0.1/src/bin/perfdhcp/
H A Dmain.cc42 BasicScen scen(command_options, socket); in main() local
43 ret_code = scen.run(); in main()
45 AvalancheScen scen(command_options, socket); in main() local
46 ret_code = scen.run(); in main()
/dports/textproc/kf5-syntax-highlighting/syntax-highlighting-5.89.0/autotests/folding/
H A Dhighlight.tcsh.fold32 <beginfold id='3'>foreach</beginfold id='3'> scen <beginfold id='4'>(</beginfold id='4'> a b <endfo…
33 echo $scen
35 …if <beginfold id='2'>(</beginfold id='2'>$scen == a<endfold id='2'>)</endfold id='2'> <beginfold i…
36 echo $scen
37 else if <beginfold id='2'>(</beginfold id='2'>$scen == x<endfold id='2'>)</endfold id='2'> then
/dports/games/cataclysm-dda-tiles/Cataclysm-DDA-0.F/src/
H A Dscenario.cpp142 const scenario &scen = random_entry_ref( list ); in weighted_random() local
144 if( x_in_y( 2, std::abs( scen.point_cost() ) + 2 ) ) { in weighted_random()
145 return &scen; in weighted_random()
163 for( const auto &scen : all_scenarios.get_all() ) { in check_definitions() local
164 scen.check_definition(); in check_definitions()
302 for( const scenario &scen : scenario::get_all() ) { in finalize() local
303 all_scens.emplace_back( scen.ident() ); in finalize()
314 for( const scenario &scen : scenario::get_all() ) { in finalize() local
315 sc_blacklist.scenarios.insert( scen.ident() ); in finalize()
/dports/games/cataclysm-dda/Cataclysm-DDA-0.F/src/
H A Dscenario.cpp142 const scenario &scen = random_entry_ref( list ); in weighted_random() local
144 if( x_in_y( 2, std::abs( scen.point_cost() ) + 2 ) ) { in weighted_random()
145 return &scen; in weighted_random()
163 for( const auto &scen : all_scenarios.get_all() ) { in check_definitions() local
164 scen.check_definition(); in check_definitions()
302 for( const scenario &scen : scenario::get_all() ) { in finalize() local
303 all_scens.emplace_back( scen.ident() ); in finalize()
314 for( const scenario &scen : scenario::get_all() ) { in finalize() local
315 sc_blacklist.scenarios.insert( scen.ident() ); in finalize()
/dports/games/openglad/openglad-0.98/
H A DMakefile.am4 scen.txt AUTHORS COPYING INSTALL
7 EXTRA_DIST = scen/*.fss start.tex glad.hlp openglad.cfg cheats.txt pix/*.pix \
23 cd scen; ../util/gladpack p ../levels.001 *.fss
/dports/games/wesnoth/wesnoth-1.14.17/src/game_initialization/
H A Ddepcheck.cpp526 elem scen = elem(id, "scenario"); in change_scenario() local
527 std::string scen_name = find_name_for(scen); in change_scenario()
530 std::vector<std::string> req = get_required_not_enabled(scen); in change_scenario()
531 std::vector<std::string> con = get_conflicting_enabled(scen); in change_scenario()
556 if(!conflicts(scen, elem(era_, "era"))) { in change_scenario()
562 if(!conflicts(scen, elem(i["id"], "era"))) { in change_scenario()
715 elem scen(c["id"], "scenario"); in change_modifications() local
718 ok = ok && !conflicts(scen, elem(s, "modification")); in change_modifications()
722 compatible.push_back(scen.id); in change_modifications()
/dports/math/py-Pyomo/Pyomo-6.1.2/pyomo/contrib/parmest/
H A Dcreate_ef.py121 all([hasattr(scen, '_mpisppy_probability') for scen in scen_dict.values()])
123 for scen in scen_dict.values():
124 scen._mpisppy_probability = 1 / len(scen_dict)
/dports/games/openglad/openglad-0.98/src/
H A DMakefile.am11 pixien.h radar.h scen.h screen.h smooth.h soundob.h sounds.h stats.h text.h \
14 openscen_SOURCES = scen.cpp effect.cpp game.cpp gladpack.cpp \
21 pixien.h radar.h scen.h screen.h smooth.h soundob.h sounds.h stats.h text.h \
/dports/devel/git-town/git-town-7.6.0/vendor/github.com/cucumber/godog/godog-0.9.0/features/
H A Doutline.feature114 | BeforeScenario | <scen> |
118 | path | scen | step |
144 | BeforeScenario | <scen> |
150 | path | scen |
/dports/devel/godot2-tools/godot-2.1.6-stable/editor/plugins/
H A Dcube_grid_theme_editor_plugin.cpp149 RID scen = VS::get_singleton()->scenario_create(); in _import_scene() local
150 VS::get_singleton()->viewport_set_scenario(vp, scen); in _import_scene()
155 RID lightinst = VS::get_singleton()->instance_create2(light, scen); in _import_scene()
184 RID inst = VS::get_singleton()->instance_create2(mesh->get_rid(), scen); in _import_scene()
203 VS::get_singleton()->free(scen); in _import_scene()

12345678910>>...15