Lines Matching defs:size
43 size_t size);
47 size_t size);
51 * lwres_net_ntop(af, src, dst, size)
59 lwres_net_ntop(int af, const void *src, char *dst, size_t size) {
62 return (inet_ntop4(src, dst, size));
65 return (inet_ntop6(src, dst, size));
75 * inet_ntop4(src, dst, size)
86 inet_ntop4(const unsigned char *src, char *dst, size_t size) {
92 if (len >= size) {
102 * inet_ntop6(src, dst, size)
109 inet_ntop6(const unsigned char *src, char *dst, size_t size) {
112 * to contain a value of the specified size. On some systems, like
190 if ((size_t)(tp - tmp) > size) {