Lines Matching refs:dst
50 ns_format_ttl(u_long src, char *dst, size_t dstlen) { in ns_format_ttl() argument
51 char *odst = dst; in ns_format_ttl()
63 T(fmt1(weeks, 'W', &dst, &dstlen)); in ns_format_ttl()
67 T(fmt1(days, 'D', &dst, &dstlen)); in ns_format_ttl()
71 T(fmt1(hours, 'H', &dst, &dstlen)); in ns_format_ttl()
75 T(fmt1(mins, 'M', &dst, &dstlen)); in ns_format_ttl()
79 T(fmt1(secs, 'S', &dst, &dstlen)); in ns_format_ttl()
91 _DIAGASSERT(__type_fit(int, dst - odst)); in ns_format_ttl()
92 return (int)(dst - odst); in ns_format_ttl()
97 ns_parse_ttl(const char *src, u_long *dst) { in ns_parse_ttl() argument
138 *dst = ttl; in ns_parse_ttl()