Lines Matching refs:tmp
421 char *tmp; in z_impl_net_addr_pton() local
449 tmp = strrchr(src, ':'); in z_impl_net_addr_pton()
450 if (src == tmp && (expected_groups == 6 || !src[1])) { in z_impl_net_addr_pton()
461 tmp--; in z_impl_net_addr_pton()
467 if (*tmp == ':') { in z_impl_net_addr_pton()
474 } while (tmp-- != src); in z_impl_net_addr_pton()
751 unsigned long tmp; in convert_port() local
754 tmp = strtoul(buf, &endptr, 10); in convert_port()
755 if ((endptr == buf && tmp == 0) || in convert_port()
757 ((unsigned long)(unsigned short)tmp != tmp)) { in convert_port()
761 *port = tmp; in convert_port()