Lines Matching refs:tmp
98 u_long ttl, tmp; in ns_parse_ttl() local
102 tmp = 0; in ns_parse_ttl()
109 tmp *= 10; in ns_parse_ttl()
110 tmp += (ch - '0'); in ns_parse_ttl()
119 case 'W': tmp *= 7; /*FALLTHROUGH*/ in ns_parse_ttl()
120 case 'D': tmp *= 24; /*FALLTHROUGH*/ in ns_parse_ttl()
121 case 'H': tmp *= 60; /*FALLTHROUGH*/ in ns_parse_ttl()
122 case 'M': tmp *= 60; /*FALLTHROUGH*/ in ns_parse_ttl()
126 ttl += tmp; in ns_parse_ttl()
127 tmp = 0; in ns_parse_ttl()
135 ttl += tmp; in ns_parse_ttl()
151 char tmp[50]; in fmt1() local
154 len = (size_t)snprintf(tmp, sizeof(tmp), "%d%c", t, s); in fmt1()
157 strcpy(*buf, tmp); in fmt1()