Home
last modified time | relevance | path

Searched refs:dst_size (Results 1 – 1 of 1) sorted by relevance

/NetX-Duo-v6.2.1/addons/BSD/
Dnxd_bsd.c171 static INT inet_ntoa_internal(const VOID *src, CHAR *dst, ULONG dst_size);
14109 static INT inet_ntoa_internal(const VOID *src, CHAR *dst, ULONG dst_size) in inet_ntoa_internal() argument
14119 memset(dst, 0, dst_size); in inet_ntoa_internal()
14122 size = bsd_number_convert((temp >> 24), &dst[0], dst_size - index, 10); in inet_ntoa_internal()
14131 if((dst_size - index) < 1) in inet_ntoa_internal()
14138 size = bsd_number_convert((temp >> 16) & 0xff, &dst[index], dst_size - index, 10); in inet_ntoa_internal()
14145 if((dst_size - index) < 1) in inet_ntoa_internal()
14150 size = bsd_number_convert((temp >> 8) & 0xff, &dst[index], dst_size - index, 10); in inet_ntoa_internal()
14157 if((dst_size - index) < 1) in inet_ntoa_internal()
14162 size = bsd_number_convert(temp & 0xff, &dst[index], dst_size - index, 10); in inet_ntoa_internal()
[all …]