Lines Matching refs:ln

327 	SuffixListNode *ln;  in FindSuffixByNameLen()  local
329 for (ln = sufflist.first; ln != NULL; ln = ln->next) { in FindSuffixByNameLen()
330 Suffix *suff = ln->datum; in FindSuffixByNameLen()
347 GNodeListNode *ln; in FindTransformByName() local
349 for (ln = transforms.first; ln != NULL; ln = ln->next) { in FindTransformByName()
350 GNode *gn = ln->datum; in FindTransformByName()
360 SuffixListNode *ln = Lst_FindDatum(list, suff); in SuffixList_Unref() local
361 if (ln != NULL) { in SuffixList_Unref()
362 Lst_Remove(list, ln); in SuffixList_Unref()
412 SuffixListNode *ln; in SuffixList_Insert() local
415 for (ln = list->first; ln != NULL; ln = ln->next) { in SuffixList_Insert()
416 listSuff = ln->datum; in SuffixList_Insert()
421 if (ln == NULL) { in SuffixList_Insert()
428 Lst_InsertBefore(list, ln, Suffix_Ref(suff)); in SuffixList_Insert()
497 SuffixListNode *ln; in ParseTransform() local
506 for (ln = sufflist.first; ln != NULL; ln = ln->next) { in ParseTransform()
507 Suffix *src = ln->datum; in ParseTransform()
794 GNodeListNode *ln; in UpdateTargets() local
796 for (ln = Targ_List()->first; ln != NULL; ln = ln->next) { in UpdateTargets()
797 GNode *gn = ln->datum; in UpdateTargets()
807 GNodeListNode *ln; in Suff_AddSuffix() local
823 for (ln = transforms.first; ln != NULL; ln = ln->next) in Suff_AddSuffix()
824 RebuildGraph(ln->datum, suff); in Suff_AddSuffix()
851 SuffixListNode *ln; in Suff_ExtendPaths() local
856 for (ln = sufflist.first; ln != NULL; ln = ln->next) { in Suff_ExtendPaths()
857 Suffix *suff = ln->datum; in Suff_ExtendPaths()
952 CandidateListNode *ln; in CandidateList_PrintAddrs() local
954 for (ln = list->first; ln != NULL; ln = ln->next) { in CandidateList_PrintAddrs()
955 Candidate *cand = ln->datum; in CandidateList_PrintAddrs()
1006 SuffixListNode *ln; in CandidateList_AddCandidatesFor() local
1007 for (ln = cand->suff->children.first; ln != NULL; ln = ln->next) { in CandidateList_AddCandidatesFor()
1008 Suffix *suff = ln->datum; in CandidateList_AddCandidatesFor()
1032 CandidateListNode *ln; in RemoveCandidate() local
1039 for (ln = sources->first; ln != NULL; ln = ln->next) { in RemoveCandidate()
1040 Candidate *src = ln->datum; in RemoveCandidate()
1062 Lst_Remove(sources, ln); in RemoveCandidate()
1393 GNodeListNode *ln, *nln; in ExpandAllChildren() local
1395 for (ln = gn->children.first; ln != NULL; ln = nln) { in ExpandAllChildren()
1396 nln = ln->next; in ExpandAllChildren()
1397 ExpandChildren(ln, gn); in ExpandAllChildren()
1415 SuffixListNode *ln; in Suff_FindPath() local
1416 for (ln = sufflist.first; ln != NULL; ln = ln->next) in Suff_FindPath()
1417 if (Suffix_IsSuffix(ln->datum, nameLen, name + nameLen)) in Suff_FindPath()
1421 if (ln != NULL) in Suff_FindPath()
1422 suff = ln->datum; in Suff_FindPath()
1452 GNodeListNode *ln; in ApplyTransform() local
1474 ln = tgn->children.last; in ApplyTransform()
1480 ln = ln != NULL ? ln->next : NULL; in ApplyTransform()
1481 while (ln != NULL) { in ApplyTransform()
1482 GNodeListNode *nln = ln->next; in ApplyTransform()
1483 ExpandChildren(ln, tgn); in ApplyTransform()
1484 ln = nln; in ApplyTransform()
1506 SuffixListNode *ln; in ExpandMember() local
1510 for (ln = memSuff->parents.first; ln != NULL; ln = ln->next) in ExpandMember()
1511 if (Suffix_IsSuffix(ln->datum, nameLen, eoarch)) in ExpandMember()
1514 if (ln != NULL) { in ExpandMember()
1515 Suffix *suff = ln->datum; in ExpandMember()
1655 SuffixListNode *ln; in FindDepsRegularKnown() local
1659 for (ln = sufflist.first; ln != NULL; ln = ln->next) { in FindDepsRegularKnown()
1660 Suffix *suff = ln->datum; in FindDepsRegularKnown()
1846 GNodeListNode *ln, *nln; in FindDepsRegular() local
1847 for (ln = gn->children.first; ln != NULL; ln = nln) { in FindDepsRegular()
1848 nln = ln->next; in FindDepsRegular()
1849 ExpandChildren(ln, gn); in FindDepsRegular()
2049 SuffixListNode *ln; in Suff_End() local
2051 for (ln = sufflist.first; ln != NULL; ln = ln->next) in Suff_End()
2052 Suffix_Free(ln->datum); in Suff_End()
2054 for (ln = suffClean.first; ln != NULL; ln = ln->next) in Suff_End()
2055 Suffix_Free(ln->datum); in Suff_End()
2067 SuffixListNode *ln; in PrintSuffNames() local
2070 for (ln = suffs->first; ln != NULL; ln = ln->next) { in PrintSuffNames()
2071 const Suffix *suff = ln->datum; in PrintSuffNames()
2118 SuffixListNode *ln; in Suff_PrintAll() local
2119 for (ln = sufflist.first; ln != NULL; ln = ln->next) in Suff_PrintAll()
2120 Suffix_Print(ln->datum); in Suff_PrintAll()
2125 GNodeListNode *ln; in Suff_PrintAll() local
2126 for (ln = transforms.first; ln != NULL; ln = ln->next) in Suff_PrintAll()
2127 PrintTransformation(ln->datum); in Suff_PrintAll()
2135 SuffixListNode *ln; in Suff_NamesStr() local
2139 for (ln = sufflist.first; ln != NULL; ln = ln->next) { in Suff_NamesStr()
2140 suff = ln->datum; in Suff_NamesStr()
2141 if (ln != sufflist.first) in Suff_NamesStr()