Searched defs:tp (Results 1 - 5 of 5) sorted by relevance

/bionic/libc/inet/
H A Dinet_ntop.c109 char *tp, *ep; local
151 tp = tmp;
153 for (i = 0; i < (IN6ADDRSZ / INT16SZ) && tp < ep; i++) {
158 if (tp + 1 >= ep)
160 *tp++ = ':';
166 if (tp + 1 >= ep)
168 *tp++ = ':';
173 if (!inet_ntop4(src+12, tp, (size_t)(ep - tp)))
175 tp
[all...]
H A Dinet_pton.c233 u_char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
241 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
242 endp = tp + NS_IN6ADDRSZ;
268 colonp = tp;
272 if (tp + NS_INT16SZ > endp)
274 *tp++ = (u_char) (val >> 8) & 0xff;
275 *tp++ = (u_char) val & 0xff;
280 if (ch == '.' && ((tp + NS_INADDRSZ) <= endp) &&
281 inet_pton4(curtok, tp, 1) > 0) {
282 tp
[all...]
/bionic/libc/kernel/common/linux/
H A Dcan.h55 struct { canid_t rx_id, tx_id; } tp; member in union:sockaddr_can::__anon249
/bionic/libc/netbsd/nameser/
H A Dns_name.c850 unsigned char *tp; local
868 for (tp = *dst + 1; cp < end && tp < eom; cp++) {
879 *tp++ = ((value << 4) & 0xff);
907 *tp++ = value;
915 if (cp >= end || tp >= eom)
945 *dst = tp;
/bionic/libc/upstream-dlmalloc/
H A Dmalloc.c4285 tchunkptr tp = (tchunkptr)p; local
4292 unlink_large_chunk(m, tp);
4302 insert_large_chunk(m, tp, psize);
4793 tchunkptr tp = (tchunkptr)p; local
4794 insert_large_chunk(fm, tp, psize);
5722 tchunkptr tp = (tchunkptr)p; local
5723 insert_large_chunk(fm, tp, psize);

Completed in 117 milliseconds