Home | History | Annotate | Download | only in libevent

Lines Matching defs:MIN

129 #undef MIN
130 #define MIN(a,b) ((a)<(b)?(a):(b))
471 &global_nameserver_timeouts[MIN(ns->failed_times,
899 addrtocopy = MIN(MAX_ADDRS - reply.data.a.addrcount, (unsigned)addrcount);
901 ttl_r = MIN(ttl_r, ttl);
917 ttl_r = MIN(ttl_r, ttl);
928 addrtocopy = MIN(MAX_ADDRS - reply.data.aaaa.addrcount, (unsigned)addrcount);
929 ttl_r = MIN(ttl_r, ttl);
2638 strtoint_clipped(const char *const str, int min, int max)
2643 else if (r<min)
2644 return min;