Lines Matching refs:hit
229 static time_t hunt(char * name, time_t lot, time_t hit);
239 static time_t huntICU(char * name, time_t lot, time_t hit, FILE *fp);
727 hunt(char *name, time_t lot, time_t hit)
742 time_t diff = hit - lot;
749 else if (t >= hit)
761 } else hit = t;
764 show(name, hit, true);
765 return hit;
921 huntICU(char *name, time_t lot, time_t hit, FILE * fp)
937 diff = (long) (hit - lot);
944 else if (t >= hit)
957 } else hit = t;
959 showICU(fp, name, lot, hit);
960 return hit;