Lines Matching refs:px
135 register Xl_t* px;
155 for (px = xp; px; px = px->next)
156 if (streq(px->name, s))
158 if (strcoll(px->date, d) < 0)
160 free(px->date);
161 if (!(px->date = strdup(d)))
166 if (!px)
168 if (!(px = newof(0, Xl_t, 1, strlen(s))) || !(px->date = strdup(d)))
170 strcpy(px->name, s);
171 px->next = xp;
172 xp = px;
224 Xl_t* px;
493 for (bp = 0, px = xp; px; px = px->next)
494 if (px->date && (!bp || strcoll(bp->date, px->date) < 0))
495 bp = px;