Lines Matching full:recent
2572 mru *recent;
2651 recent = HEAD_DLIST(mru_list, mlink);
2652 INSIST(recent != NULL);
2656 sptoa(&recent->addr));
2657 UNLINK_DLIST(recent, mlink);
2658 hash = NTP_HASH_ADDR(&recent->addr);
2660 recent, hlink, mru);
2661 INSIST(unlinked == recent);
2662 free(recent);
2758 for (recent = hash_table[hash];
2759 recent != NULL;
2760 recent = recent->hlink)
2763 &recent->addr))
2765 if (NULL == recent) {
2772 &recent->last)) {
2777 recent->last.l_ui,
2778 recent->last.l_uf);
2838 * using most recent retrieved
2981 for (ri = 0, recent = HEAD_DLIST(mru_list, mlink);
2982 recent != NULL;
2983 ri++, recent = NEXT_DLIST(mru_list, recent, mlink)) {
2987 ri, sptoa(&recent->addr), ri,
2988 recent->last.l_ui, recent->last.l_uf);
3197 mru *recent;
3276 ITER_DLIST_BEGIN(mru_list, recent, mlink, mru)
3278 *ppentry = recent;
3282 REV_ITER_DLIST_BEGIN(mru_list, recent, mlink, mru)
3284 *ppentry = recent;
3307 recent = *ppentry;
3309 L_SUB(&interval, &recent->last);
3312 interval = recent->last;
3313 L_SUB(&interval, &recent->first);
3315 favgint /= recent->count;
3318 lstint, avgint, recent->rs,
3319 (RES_KOD & recent->rs)
3321 : (RES_LIMITED & recent->rs)
3324 (int)recent->mode, (int)recent->ver,
3325 recent->count, SRCPORT(&recent->addr),
3326 nntohost(&recent->addr));
3348 ITER_DLIST_BEGIN(mru_list, recent, mlink, mru)
3349 free(recent);