Searched refs:tln (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/bmake/lst.lib/
H A DlstFindFrom.c74 ListNode tln; local
80 tln = ln;
83 if ((*cProc)(tln->datum, d) == 0)
84 return (tln);
85 tln = tln->nextPtr;
86 } while (tln != ln && tln != NULL);
H A DlstDeQueue.c73 ListNode tln; local
75 tln = Lst_First(l);
76 if (tln == NULL) {
80 rd = tln->datum;
81 if (Lst_Remove(l, tln) == FAILURE) {
H A DlstForEachFrom.c76 ListNode tln = ln; local
92 next = tln->nextPtr;
103 (void) tln->useCount++;
104 result = (*proc) (tln->datum, d);
105 (void) tln->useCount--;
112 if (next != tln->nextPtr) {
113 next = tln->nextPtr;
117 if (tln->flags & LN_DELETED) {
118 free((char *)tln);
120 tln
[all...]
H A DlstNext.c78 ListNode tln; local
95 list->curPtr = tln = list->firstPtr;
98 tln = NULL;
102 tln = list->curPtr->nextPtr;
103 list->curPtr = tln;
105 if (tln == list->firstPtr || tln == NULL) {
118 return (tln);
H A DlstDestroy.c74 ListNode tln = NULL; local
88 for (ln = list->firstPtr; ln != NULL; ln = tln) {
89 tln = ln->nextPtr;
94 for (ln = list->firstPtr; ln != NULL; ln = tln) {
95 tln = ln->nextPtr;
/freebsd-11-stable/contrib/elftoolchain/libdwarf/
H A Dlibdwarf_lineno.c103 Dwarf_Line ln, tln; local
251 STAILQ_FOREACH_SAFE(ln, &li->li_lnlist, ln_next, tln) {
456 Dwarf_Line ln, tln; local
467 STAILQ_FOREACH_SAFE(ln, &li->li_lnlist, ln_next, tln) {
765 Dwarf_Line ln, tln; local
780 STAILQ_FOREACH_SAFE(ln, &li->li_lnlist, ln_next, tln) {

Completed in 92 milliseconds