Lines Matching refs:tmp
126 u_long ttl, tmp; in ns_parse_ttl() local
130 tmp = 0; in ns_parse_ttl()
137 tmp *= 10; in ns_parse_ttl()
138 tmp += (ch - '0'); in ns_parse_ttl()
147 case 'W': tmp *= 7; in ns_parse_ttl()
148 case 'D': tmp *= 24; in ns_parse_ttl()
149 case 'H': tmp *= 60; in ns_parse_ttl()
150 case 'M': tmp *= 60; in ns_parse_ttl()
154 ttl += tmp; in ns_parse_ttl()
155 tmp = 0; in ns_parse_ttl()
163 ttl += tmp; in ns_parse_ttl()
177 char tmp[50]; in fmt1() local
180 len = SPRINTF((tmp, "%d%c", t, s)); in fmt1()
183 strcpy(*buf, tmp); in fmt1()