Home
last modified time | relevance | path

Searched refs:numstates (Results 1 – 25 of 154) sorted by relevance

1234567

/dports/textproc/reflex/reflex-20210808/
H A Ddfa.c266 t[numstates] = state; \ in epsclosure()
331 *ns_addr = numstates; in epsclosure()
517 numstates = 1; in ntod()
532 totnst += numstates; in ntod()
742 bubble(sns, numstates); in snstods()
750 if (j > numstates) { in snstods()
777 bubble(sns, numstates); in snstods()
847 numstates = 0; in symfollowset()
884 nset[++numstates] = tsp; in symfollowset()
895 nset[++numstates] = tsp; in symfollowset()
[all …]
/dports/textproc/flex/flex-2.6.4/src/
H A Ddfa.c271 t[numstates] = state; \ in epsclosure()
334 *ns_addr = numstates; in epsclosure()
558 numstates = 1; in ntod()
567 nset[numstates] = in ntod()
575 totnst += numstates; in ntod()
618 numstates = in ntod()
622 &numstates, in ntod()
630 numstates; in ntod()
637 numstates, in ntod()
931 numstates = 0; in symfollowset()
[all …]
/dports/misc/rump/buildrump.sh-b914579/src/external/bsd/flex/dist/src/
H A Ddfa.c282 t[numstates] = state; \
345 *ns_addr = numstates;
576 numstates = 1; in ntod()
585 nset[numstates] = in ntod()
593 totnst += numstates; in ntod()
636 numstates = in ntod()
640 &numstates, in ntod()
648 numstates; in ntod()
655 numstates, in ntod()
951 numstates = 0;
[all …]
/dports/math/gap/gap-4.11.0/pkg/automgrp-1.3.2/gap/
H A Dautomfam.gi56 numstates := Length(list);
61 numstates := numstates - 1;
99 for i in [1..numstates] do
101 list[i+numstates] := [];
110 list[i+numstates][j] := list[i+numstates][j] + numstates;
156 numstates := tmp[2];
164 for i in [1..numstates] do
189 family!.numstates := numstates;
211 i > numstates or IsBound(list[i+numstates]));
325 if fam!.numstates > 0 then
[all …]
H A Dselfsimfam.gi57 numstates := Length(list);
61 for i in [1..numstates] do
75 numstates := numstates - 1;
138 for i in [1..numstates] do
188 numstates := tmp[2];
196 for i in [1..numstates] do
221 family!.numstates := numstates;
243 i > numstates or IsBound(list[i + numstates]));
334 if fam!.numstates > 0 then
362 if fam!.numstates = 0 then
[all …]
H A Dautomsg.gi595 local fam, numstates, automatonlist, d, i, j;
597 numstates := fam!.numstates;
603 # in case we have 1 in the list we move it to the numstates+1 postion
604 if Length(automatonlist)=2*numstates+1 then
605 for i in [1..numstates] do
607 if automatonlist[i][j]=2*numstates+1 then automatonlist[i][j] := numstates+1; fi;
610 automatonlist[numstates+1] := List([1..d], x -> numstates+1);
611 Add(automatonlist[numstates+1], automatonlist[2*numstates+1][d+1]);
612 numstates := numstates+1;
614 return MealyAutomaton(automatonlist{[1..numstates]});
H A Dautom.gi75 return fam!.automgens[GeneratorSyllable(w, 1) + fam!.numstates];
82 if exp[i] < 0 then exp[i] := -exp[i] + fam!.numstates; fi;
97 if newstate > fam!.numstates then
98 newstate := -(newstate - fam!.numstates);
121 if i <= fam!.numstates and not IsInvertibleAutom(fam!.automgens[i]) then
358 exp[i] := -exp[i] + FamilyObj(a)!.numstates;
427 if exp[1][i] < 0 then exp[1][i] := -exp[1][i] + FamilyObj(a1)!.numstates; fi;
430 if exp[2][i] < 0 then exp[2][i] := -exp[2][i] + FamilyObj(a2)!.numstates; fi;
448 if exp[1][i] < 0 then exp[1][i] := -exp[1][i] + FamilyObj(a1)!.numstates; fi;
451 if exp[2][i] < 0 then exp[2][i] := -exp[2][i] + FamilyObj(a2)!.numstates; fi;
[all …]
/dports/games/golly/golly-3.3-src/gui-android/Golly/app/src/main/java/net/sf/golly/
H A DStateActivity.java42 int numstates = nativeNumStates(); in onCreate() local
47 if (numstates <= 90) { in onCreate()
48 params.height = ((numstates + 9) / 10) * 64 + 2; in onCreate()
53 } else if (numstates <= 90) { in onCreate()
55 params.height = ((numstates + 9) / 10) * 32 + 1; in onCreate()
/dports/games/openlierox/OpenLieroX/src/client/DeprecatedGUI/
H A DCBar.cpp59 int numstates = NumForeStates + NumBgStates; in Draw() local
61 int bar_h = (bmpBar.get()->h - NumForeStates) / (numstates); in Draw()
62 int bar_w = (bmpBar.get()->w - NumForeStates) / (numstates); in Draw()
132 int numstates = NumForeStates + NumBgStates; in GetWidth() local
139 return (bmpBar.get()->w-numstates)/(numstates + 1); in GetWidth()
153 int numstates = NumForeStates + NumBgStates; in GetHeight() local
157 return (bmpBar.get()->h-NumForeStates)/(numstates); in GetHeight()
H A DCButton.cpp55 int numstates = iButtonType == BUT_TWOSTATES ? 2: 3; in Draw() local
59 x2 = (numstates - 2) * bmpImage.get()->w / numstates; in Draw()
61 x2 = (numstates - 1) * bmpImage.get()->w / numstates; in Draw()
63 DrawImageAdv(bmpDest, bmpImage, x2, 0, iX, iY, bmpImage.get()->w / numstates, bmpImage.get()->h); in Draw()
/dports/ftp/ftpsesame/ftpsesame-0.95/
H A Dstate.c40 static int numstates; variable
75 numstates = 0; in SPLAY_PROTOTYPE()
84 if (numstates >= MAXSTATES) in state_new()
104 numstates++; in state_new()
151 numstates--; in state_remove()
190 return (numstates); in state_purge()
/dports/science/lammps/lammps-stable_29Sep2021/lib/poems/
H A Donsolver.cpp105 int numstates=0; in CreateStateMatrixMaps() local
107 numstates += bodyarray[i]->q->GetNumRows(); in CreateStateMatrixMaps()
109 state.Dim(numstates); in CreateStateMatrixMaps()
110 statedot.Dim(numstates); in CreateStateMatrixMaps()
111 statedoubledot.Dim(numstates); in CreateStateMatrixMaps()
/dports/science/liggghts/LIGGGHTS-PUBLIC-3.8.0-26-g6e873439/lib/poems/
H A Donsolver.cpp85 int numstates=0; in CreateStateMatrixMaps() local
87 numstates += bodyarray[i]->q->GetNumRows(); in CreateStateMatrixMaps()
89 state.Dim(numstates); in CreateStateMatrixMaps()
90 statedot.Dim(numstates); in CreateStateMatrixMaps()
91 statedoubledot.Dim(numstates); in CreateStateMatrixMaps()
/dports/biology/migrate/migrate-3.6.11/src/
H A Dmutationmodel.c98 const int numstates = mumod->numstates; in set_mutationmodel_eigenmaterial() local
99 const int numstates2 = numstates * numstates; in set_mutationmodel_eigenmaterial()
100 mumod->eigenvalues = (double*) mycalloc(numstates,sizeof(double)); in set_mutationmodel_eigenmaterial()
175 mumod->numstates = 0L; // number of states in model: DNA=4, DNA+gap=5, msat>2 in init_mutationmodel()
H A Dcalculator.c44 …beagle->numallocpartials = 4 * world->sumtips*world->mutationmodels[0].numstates*world->mutatio… in init_beagle()
77 world->mutationmodels[ii].numstates, // number of states (nucleotides etc) in set_beagle_instances()
291 unsigned int numstates; in fill_beagle_instances() local
302 numstates = world->mutationmodels[ii].numstates; in fill_beagle_instances()
318 beagle->numallocpartials += numsites * numstates; in fill_beagle_instances()
323 sizeof(double) * numstates); in fill_beagle_instances()
328 for(zz=1;zz<world->mutationmodels[ii].numstates;zz++) in fill_beagle_instances()
335 z += numstates; in fill_beagle_instances()
340 &beagle->partials[z - numsites*numstates]);// inPartials in fill_beagle_instances()
/dports/games/golly/golly-3.3-src/Scripts/Lua/
H A D1D.lua39 local numstates = 2 -- ditto
137 numstates = 2
143 numstates = k
148 return nil, canonrule, wd, ht, numstates
231 local multistate = numstates > 2
320 if g.numstates() == 2 then
347 g.setcell(x, miny, rand(1,g.numstates()-1))
/dports/net/samba412/samba-4.12.15/source4/torture/raw/
H A Doffline.c37 static int numstates; variable
341 for (i=0;i<numstates;i++) { in report_rate()
372 for (i=0;i<numstates;i++) { in report_rate()
405 numstates = nconnections * torture_entries; in torture_test_offline()
407 state = talloc_zero_array(mem_ctx, struct offline_state, numstates); in torture_test_offline()
409 …nections with %d simultaneous operations and %u files\n", nconnections, numstates, torture_numops); in torture_test_offline()
424 for (i=nconnections;i<numstates;i++) { in torture_test_offline()
469 for (i=0;i<numstates;i++) { in torture_test_offline()
492 for (i=0;i<numstates;i++) { in torture_test_offline()
/dports/misc/librepo/librepo-1.14.2/librepo/
H A Dxmlparser.c32 lr_xml_parser_data_new(unsigned int numstates) in lr_xml_parser_data_new() argument
37 pd->swtab = g_malloc0(sizeof(LrStatesSwitch *) * numstates); in lr_xml_parser_data_new()
38 pd->sbtab = g_malloc(sizeof(unsigned int) * numstates); in lr_xml_parser_data_new()
/dports/games/openlierox/OpenLieroX/include/DeprecatedGUI/
H A DCProgressbar.h31 …sBar( SmartPointer<SDL_Surface> bmp, int label_x, int label_y, bool label_visible, int numstates) { in CProgressBar() argument
32 cProgressBar = CBar(bmp, 0, 0, label_x, label_y, BAR_LEFTTORIGHT, numstates); in CProgressBar()
/dports/math/gap/gap-4.11.0/pkg/kan-1.29/lib/
H A Ddckbmag.gi27 numstates, lr, len, sublr, pos, pos2, shG, shH, shK, shHK,
123 numstates := shG + numstG + npfH + nsfK + npfHK;
124 row := ListWithIdenticalEntries( numstates, 0 );
127 for j in [shH+1..numstates] do transmx[1][j] := [ ]; od;
128 for j in [1..numstates] do transmx[2][j] := [ ]; od;
142 for j in [shG+1..numstates] do
254 accept := Difference( [1..numstates], [done] );
255 nfa := Automaton( "nondet", numstates, alpht2, transmx, [init], accept );
/dports/games/nexuiz/Nexuiz/sources/darkplaces/
H A Dprotocol.h399 qboolean EntityFrameQuake_WriteFrame(sizebuf_t *msg, int maxsize, int numstates, const entity_state…
588 …_WriteFrame(sizebuf_t *msg, int maxsize, entityframe_database_t *d, int numstates, const entity_st…
642 …WriteFrame(sizebuf_t *msg, int maxsize, entityframe4_database_t *d, int numstates, const entity_st…
739 int numstates; member
799 …WriteFrame(sizebuf_t *msg, int maxsize, entityframe5_database_t *d, int numstates, const entity_st…
/dports/math/R-cran-prodlim/prodlim/R/
H A Dplot.Hist.R232 numstates <- as.numeric(as.character(factor(states,levels=states,labels=1:NS))) functionVar
235 numstateLabels <- numstates-1
237 numstateLabels <- numstates
431 names(ybox.position) <- paste("box",numstates,sep="")
458 names(xbox.position) <- paste("box",numstates,sep="")
508 from.state <- factor(ordered.transitions[trans,1],levels=states,labels=numstates)
509 to.state <- factor(ordered.transitions[trans,2],levels=states,labels=numstates)
/dports/games/xonotic/Xonotic/source/darkplaces/
H A Dprotocol.h434 qboolean EntityFrameQuake_WriteFrame(sizebuf_t *msg, int maxsize, int numstates, const entity_state…
624 …_WriteFrame(sizebuf_t *msg, int maxsize, entityframe_database_t *d, int numstates, const entity_st…
678 …WriteFrame(sizebuf_t *msg, int maxsize, entityframe4_database_t *d, int numstates, const entity_st…
780 int numstates; member
840 …WriteFrame(sizebuf_t *msg, int maxsize, entityframe5_database_t *d, int numstates, const entity_st…
/dports/games/darkplaces/darkplaces/
H A Dprotocol.h434 qboolean EntityFrameQuake_WriteFrame(sizebuf_t *msg, int maxsize, int numstates, const entity_state…
624 …_WriteFrame(sizebuf_t *msg, int maxsize, entityframe_database_t *d, int numstates, const entity_st…
678 …WriteFrame(sizebuf_t *msg, int maxsize, entityframe4_database_t *d, int numstates, const entity_st…
780 int numstates; member
840 …WriteFrame(sizebuf_t *msg, int maxsize, entityframe5_database_t *d, int numstates, const entity_st…
/dports/games/golly/golly-3.3-src/gui-ios/Golly/
H A DStateView.m22 int numstates = currlayer->algo->NumCellStates();
33 int wd = numstates <= 16 ? numstates * 32 : 16 * 32;
34 int ht = (numstates + 15) / 16 * 32;

1234567