Home
last modified time | relevance | path

Searched refs:crystals (Results 1 – 25 of 1266) sorted by relevance

12345678910>>...51

/dports/games/fishsupper/fishsupper-0.1.6/src/
H A DPlayer_data.cpp117 crystals_iter = std::find(crystals.begin(), crystals.end(), (Crystal::Color) lc); in is_allowed_on_log()
152 crystals_iter = find(crystals.begin(), crystals.end(), Crystal::color_white_c); in is_allowed_on_log()
172 iter_0 = find(crystals.begin(), crystals.end(), color_0); in check_crystals()
173 iter_1 = find(crystals.begin(), crystals.end(), color_1); in check_crystals()
175 if ( iter_0 != crystals.end() && iter_1 != crystals.end() ) in check_crystals()
177 crystals.erase(iter_0); in check_crystals()
178 crystals.erase(iter_1); in check_crystals()
202 crystals.pop_front(); in add_crystal()
203 crystals.push_back(cc); in add_crystal()
226 crystals.clear(); in set_crystals_held()
[all …]
/dports/science/clipper/clipper-2.1/clipper/ccp4/
H A Dccp4_mtz_io.cpp316 crystals.clear(); in read_hierarchy()
323 crystals.push_back( newxtl ); in read_hierarchy()
477 cell_ = crystals[x].crystal; in open_read()
605 crystals.clear(); in close_read()
629 crystals.push_back(newxtl); in open_write()
732 crystals.clear(); in close_write()
763 cell_ = crystals[x].crystal; in open_append()
931 crystals.clear(); in close_append()
1052 cxtl = crystals[x].crystal; in import_crystal()
1086 crystals.push_back( newxtl ); in export_crystal()
[all …]
/dports/games/crimson/crimson-0.5.3/src/comet/
H A Dbuilding.h65 void SetCrystalProduction( unsigned char crystals ) { b_cprod = crystals; } in SetCrystalProduction() argument
66 void SetCrystals( unsigned short crystals ) { b_crystals = crystals; } in SetCrystals() argument
67 void SetMaxCrystals( unsigned short crystals ) { b_maxcrystals = crystals; } in SetMaxCrystals() argument
H A Dunit.h68 void SetCrystals( unsigned short crystals ) { u_crystals = crystals; } in SetCrystals() argument
/dports/games/crimson/crimson-0.5.3/src/cf/
H A Dbuilding.h53 void SetCrystalProduction( unsigned char crystals ) { b_cprod = crystals; } in SetCrystalProduction() argument
54 void ModifyCrystalProduction( short crystals );
55 void SetCrystals( unsigned short crystals );
56 void ModifyCrystals( short crystals );
H A Dbuilding.cpp102 void Building::SetCrystals( unsigned short crystals ) { in SetCrystals() argument
103 b_crystals = MIN( crystals, b_crystalstore ); in SetCrystals()
113 void Building::ModifyCrystals( short crystals ) { in ModifyCrystals() argument
114 short crys = crystals + b_crystals; in ModifyCrystals()
127 void Building::ModifyCrystalProduction( short crystals ) { in ModifyCrystalProduction() argument
128 short crys = crystals + b_cprod; in ModifyCrystalProduction()
H A Dunitwindow.cpp396 unsigned short crystals = b->Crystals(); in SwitchMode() local
404 n->ok = (n->type->Cost() <= crystals); in SwitchMode()
575 fullslots(t.FullSlots()), crystals(t.Crystals()), in UnitLoadWindow()
632 itoa( crystals, buf ), 4, in UnitLoadWindow()
730 fullslots -= (crystals + 9)/10 - (wd_slider->Level() + 9)/10; in WidgetActivated()
731 crystals = wd_slider->Level(); in WidgetActivated()
732 wd_crystals->SetString( itoa( crystals, buf ), true ); in WidgetActivated()
758 if ( history && (t.Crystals() != crystals) ) in WidgetActivated()
759 history->RecordTransportEvent( c, t, crystals - t.Crystals() ); in WidgetActivated()
761 c.SetCrystals( c.Crystals() - (crystals - t.Crystals()) ); in WidgetActivated()
[all …]
H A Devent.cpp143 unsigned short crystals = 0; in CheckTrigger() local
148 crystals = b->Crystals(); in CheckTrigger()
153 crystals += b->Crystals(); in CheckTrigger()
157 (((e_tdata[0] < 0) && (crystals < -e_tdata[0])) || in CheckTrigger()
158 ((e_tdata[0] > 0) && (crystals < e_tdata[0]))) ) { in CheckTrigger()
165 crystals += static_cast<Transport *>(u)->Crystals(); in CheckTrigger()
170 rc = ((e_tdata[0] < 0) && (crystals < -e_tdata[0])) || in CheckTrigger()
171 ((e_tdata[0] > 0) && (crystals >= e_tdata[0])); in CheckTrigger()
H A Dcontainer.h46 virtual void SetCrystals( unsigned short crystals ) = 0;
83 void SetCrystals( unsigned short crystals );
H A Dcontainer.cpp299 void Transport::SetCrystals( unsigned short crystals ) { in SetCrystals() argument
300 uc_slots_full -= (t_crystals + 9) / 10 - (crystals + 9) / 10; in SetCrystals()
301 t_crystals = crystals; in SetCrystals()
/dports/science/elmerfem/elmerfem-release-9.0/meshgen2d/src/
H A DSSSFVoronoiSegment.cpp109 vtx->radiate( actives, crystals ); in makeSeed()
127 while( actives.size() > 0 || crystals.size() > 0) in generate()
132 if( crystals.size() > 0) in generate()
135 vtx = static_cast<SSSFVertex *>( crystals.first() ); in generate()
154 vtx->radiate( actives, crystals ); in generate()
164 crystals.remove( vs ); in generate()
197 vs->testIfActive( actives, crystals ); in generate()
201 vs->radiate( actives, crystals ); in generate()
/dports/science/elmerfem/elmerfem-release-9.0/meshgen2d/src/include/
H A DSSSFVertex.h12 bool testIfActive( pq& actives, pq& crystals ) in testIfActive() argument
24 crystals.insert( this ); in testIfActive()
30 void radiate( pq& actives, pq& crystals ) in radiate() argument
42 crystals.insert( v1 ); in radiate()
50 crystals.insert( v2 ); in radiate()
58 crystals.insert( v3 ); in radiate()
/dports/games/fishsupper/fishsupper-0.1.6/
H A DREADME70 when he's carrying a crystal of the same colour (or two crystals that together
72 he can always land on, and white crystals, with which he can land on any log.
74 Usually there'll be some crystals on the river bank to get him started;
76 many crystals he can carry at any one time as well: each river is
77 different. If he can't carry any more crystals and he walks over one, it'll
82 with crystals alone. In these cases he will need to collect special
110 Sometimes you might want to watch the logs for a while to see which crystals
130 Bottom-left are the crystals that you're currently holding.
/dports/science/openkim-models/openkim-models-2021-01-28/portable-models/EAM_Dynamo_RaveloGermannGuerrero_2013Ta2_Ta__MO_330376344314_000/
H A Dkimspec.edn5 …cular dynamics simulations of shock wave compression in tantalum single crystals. Two new embedded…
24 …"title" "Shock-induced plasticity in tantalum single crystals: Interatomic potentials and large-sc…
36 …"title" "Erratum: Shock-induced plasticity in tantalum single crystals: Interatomic potentials and…
H A Dkimcite-MO_330376344314_000.bib58 …title = {Shock-induced plasticity in tantalum single crystals: Interatomic potentials and large-sc…
69 …title = {Erratum: Shock-induced plasticity in tantalum single crystals: Interatomic potentials and…
/dports/science/openkim-models/openkim-models-2021-01-28/portable-models/EAM_Dynamo_RaveloGermannGuerrero_2013Ta1_Ta__MO_816821594689_000/
H A Dkimspec.edn5 …cular dynamics simulations of shock wave compression in tantalum single crystals. Two new embedded…
24 …"title" "Shock-induced plasticity in tantalum single crystals: Interatomic potentials and large-sc…
36 …"title" "Erratum: Shock-induced plasticity in tantalum single crystals: Interatomic potentials and…
H A Dkimcite-MO_816821594689_000.bib58 …title = {Shock-induced plasticity in tantalum single crystals: Interatomic potentials and large-sc…
69 …title = {Erratum: Shock-induced plasticity in tantalum single crystals: Interatomic potentials and…
/dports/science/mcstas-comps/mcstas-comps-2.5-src/
H A DREADME22 * data: data files to be used by components (crystals structures,
29 * samples: sample components (Vanadium, powders, crystals, ...)
/dports/science/mcxtrace/mcxtrace-1.2-src/lib/
H A DREADME22 * data: data files to be used by components (crystals structures,
29 * samples: sample components (Vanadium, powders, crystals, ...)
/dports/games/crimson/crimson-0.5.3/levels/
H A DIslandHoppers.src661 crystals = 100
669 crystals = 100
677 crystals = 100
685 crystals = 100
693 crystals = 100
701 crystals = 100
709 crystals = 100
717 crystals = 100
H A DLostFactories.src512 crystals = 100
520 crystals = 200
528 crystals = 1000
536 crystals = 50
544 crystals = 50
553 crystals = 200
568 crystals = 50
579 crystals = 100
594 crystals = 200
749 …e by Kandelian secret service, seems to indicate that a great amount of crystals is stored in the …
[all …]
/dports/games/fillets-ng/fillets-ng-data-1.0.1/script/alibaba/
H A Dcode.lua229 local crystals = {}
232 crystals[pom1] = item
240 for key, item in pairs(crystals) do
/dports/science/mcstas-comps/mcstas-comps-2.5-src/data/
H A DREADME35 * trm : transmission file, typically for monochromator crystals and filters.
38 * rfl : reflectivity file, typically for mirrors and monochromator crystals.
/dports/science/lammps/lammps-stable_29Sep2021/doc/src/
H A Dcompute_cna_atom.rst48 E.g. 12 nearest neighbor for perfect FCC and HCP crystals, 14 nearest
49 neighbors for perfect BCC crystals. These formulas can be used to
60 for HCP crystals.
/dports/games/supertux2/SuperTux-v0.6.3-Source/data/levels/world1/
H A Dbetween_glaciers.stl109 #This level contains four coloured crystals. Can you find them?
111 #Note: These crystals do not serve any purpose at the moment but they might will in a future releas…
822 (sprite "/images/objects/crystals/crystal_2.sprite")
829 (sprite "/images/objects/crystals/crystal_3.sprite")
836 (sprite "/images/objects/crystals/crystal_4.sprite")
843 (sprite "/images/objects/crystals/crystal_1.sprite")

12345678910>>...51