Home
last modified time | relevance | path

Searched refs:rix (Results 1 – 5 of 5) sorted by relevance

/external/srec/tools/grxmlcompile/
Dsub_grph.cpp473 int rix; in PullUpBegins() local
476 rix= FindFromIndex (currId); in PullUpBegins()
477 if (rix < 0) in PullUpBegins()
479 while (rix < sortNum && arc[forwardList[rix]]->GetFromId() == currId) { in PullUpBegins()
480 if (arc[forwardList[rix]]->GetInput() == procLabel) { in PullUpBegins()
481 PullUpBegins (arc[forwardList[rix]]->GetToId(), baseId, in PullUpBegins()
484 else if (arc[forwardList[rix]]->GetInput() != DISCARD_LABEL) in PullUpBegins()
485 InheritArc (arc[forwardList[rix]], baseId); in PullUpBegins()
486 rix++; in PullUpBegins()
494 int rix, nextId; in ProcessBegins() local
[all …]
Dsub_supp.cpp206 int rix, rix_low, rix_high, direction; in FindFromIndex() local
211 rix= (rix_high + rix_low) >> 1; in FindFromIndex()
212 direction= element - arc[forwardList[rix]]->GetFromId(); in FindFromIndex()
214 rix_high= rix; in FindFromIndex()
216 rix_low= rix; in FindFromIndex()
218 assert (arc[forwardList[rix]]->GetFromId() == element); in FindFromIndex()
219 while (rix > 0 && arc[forwardList[rix-1]]->GetFromId() == element) in FindFromIndex()
220 rix--; in FindFromIndex()
221 assert (arc[forwardList[rix]]->GetFromId() == element); in FindFromIndex()
222 assert (rix < sortNum); in FindFromIndex()
[all …]
Dsub_phon.cpp112 int ii, rix, currId, leftC; in AddLeftContexts() local
119 rix= FindToIndex (currId); in AddLeftContexts()
120 if (rix >= 0) { in AddLeftContexts()
121 leftC= arc[backwardList[rix]]->GetCentre(); in AddLeftContexts()
135 int ii, rix, currId, rightC; in AddRightContexts() local
142 rix= FindFromIndex (currId); in AddRightContexts()
143 if (rix >= 0) { in AddRightContexts()
144 rightC= arc[forwardList[rix]]->GetCentre(); in AddRightContexts()
337 int rix; in ReverseMarkOutput() local
339 rix= FindToIndex (currId); in ReverseMarkOutput()
[all …]
Dsub_min.cpp49 int rix; in ViewNode() local
52 rix= FindFromIndex (currId); in ViewNode()
53 if (rix < 0) in ViewNode()
55 while (rix < numArc && arc[forwardList[rix]]->GetFromId() == currId) { in ViewNode()
56 arc[forwardList[rix]]->Print(); in ViewNode()
57 rix++; in ViewNode()
159 int rix, rixBegin, nextId; in CheckForChangeAndResort() local
163 rixBegin= rix= FindFromIndex (currId); in CheckForChangeAndResort()
164 if (rix < 0) in CheckForChangeAndResort()
166 while (rix < numArc && arc[forwardList[rix]]->GetFromId() == currId) { in CheckForChangeAndResort()
[all …]
Dsub_base.cpp177 int rix, nextId, nextInp; in ReverseDepthData() local
183 rix= FindToIndex (startId); in ReverseDepthData()
184 if (rix < 0) in ReverseDepthData()
186 while (rix < numArc && arc[backwardList[rix]]->GetToId() == startId) { in ReverseDepthData()
187 nextId= arc[backwardList[rix]]->GetFromId(); in ReverseDepthData()
188 nextInp= arc[backwardList[rix]]->GetInput(); in ReverseDepthData()
191 rix++; in ReverseDepthData()
198 int rix, nextId, nextInp; in ForwardDepthData() local
204 rix= FindFromIndex (startId); in ForwardDepthData()
205 if (rix < 0) in ForwardDepthData()
[all …]