Searched refs:maxbytes (Results 1 - 2 of 2) sorted by relevance

/darwin-on-arm/xnu/bsd/netinet/
H A Din_arp.c787 int maxbytes = buflen / 3; local
789 if (maxbytes > sdl->sdl_alen) {
790 maxbytes = sdl->sdl_alen;
793 for (i = 0; i < maxbytes; i++) {
796 *buf = (i == maxbytes - 1) ? '\0' : ':';
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_vfsutils.c1959 size_t maxbytes; local
1965 maxbytes = kHFSPlusMaxFileNameChars << 1;
1966 MALLOC(ustr1, u_int16_t *, maxbytes << 1, M_TEMP, M_WAITOK);
1967 ustr2 = ustr1 + (maxbytes >> 1);
1969 if (utf8_decodestr(str1, len1, ustr1, &ulen1, maxbytes, ':', 0) != 0)
1971 if (utf8_decodestr(str2, len2, ustr2, &ulen2, maxbytes, ':', 0) != 0)

Completed in 71 milliseconds