Lines Matching refs:tmp
102 u_long ttl, tmp; in ns_parse_ttl() local
106 tmp = 0; in ns_parse_ttl()
113 tmp *= 10; in ns_parse_ttl()
114 tmp += (ch - '0'); in ns_parse_ttl()
123 case 'W': tmp *= 7; /*FALLTHROUGH*/ in ns_parse_ttl()
124 case 'D': tmp *= 24; /*FALLTHROUGH*/ in ns_parse_ttl()
125 case 'H': tmp *= 60; /*FALLTHROUGH*/ in ns_parse_ttl()
126 case 'M': tmp *= 60; /*FALLTHROUGH*/ in ns_parse_ttl()
130 ttl += tmp; in ns_parse_ttl()
131 tmp = 0; in ns_parse_ttl()
139 ttl += tmp; in ns_parse_ttl()
154 char tmp[50]; in fmt1() local
157 len = SPRINTF((tmp, "%d%c", t, s)); in fmt1()
160 strcpy(*buf, tmp); in fmt1()