Lines Matching defs:size
34 size_t size);
38 size_t size);
42 * lwres_net_ntop(af, src, dst, size)
50 lwres_net_ntop(int af, const void *src, char *dst, size_t size) {
53 return (inet_ntop4(src, dst, size));
56 return (inet_ntop6(src, dst, size));
66 * inet_ntop4(src, dst, size)
77 inet_ntop4(const unsigned char *src, char *dst, size_t size) {
83 if (len >= size) {
93 * inet_ntop6(src, dst, size)
100 inet_ntop6(const unsigned char *src, char *dst, size_t size) {
103 * to contain a value of the specified size. On some systems, like
181 if ((size_t)(tp - tmp) > size) {