Searched refs:odst (Results 1 - 6 of 6) sorted by relevance

/haiku/src/system/libnetwork/netresolv/nameser/
H A Dns_ttl.c61 char *odst = dst; local
96 for (p = odst; (ch = *p) != '\0'; p++)
101 assert(INT_MIN <= (dst - odst) && (dst - odst) <= INT_MAX);
102 return (int)(dst - odst);
/haiku/src/system/libnetwork/netresolv/inet/
H A Dinet_net_pton.c79 const u_char *odst = dst; local
142 isdigit((u_char)(src[0])) && dst > odst) {
164 if (dst == odst)
168 if (*odst >= 240) /* Class E */
170 else if (*odst >= 224) /* Class D */
172 else if (*odst >= 192) /* Class C */
174 else if (*odst >= 128) /* Class B */
179 if (bits >= 8 && bits < ((dst - odst) * 8))
180 bits = (int)(dst - odst) * 8;
183 while (bits > ((dst - odst) *
234 u_char *odst = dst; local
[all...]
H A Dinet_neta.c57 char *odst = dst; local
89 return (odst);
H A Dinet_cidr_ntop.c89 char *odst = dst; local
104 assert(INT_MIN <= (dst - odst) && (dst - odst) <= INT_MAX);
105 return (int)(dst - odst);
123 char *odst = dst; local
158 return (odst);
H A Dinet_cidr_pton.c97 const u_char *odst = dst; local
124 if (ch == '/' && dst > odst) {
133 if (dst - odst == 4)
140 if (dst == odst)
144 if (((bits - (ipv6 ? 96 : 0)) / 8) > (dst - odst))
H A Dinet_net_ntop.c96 char *odst = dst; local
133 if (dst != odst)
144 return (odst);

Completed in 168 milliseconds