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

/macosx-10.5.8/xnu-1228.15.4/bsd/netinet/
H A Din_arp.c349 int maxbytes = buflen / 3; local
351 if (maxbytes > sdl->sdl_alen) {
352 maxbytes = sdl->sdl_alen;
355 for (i = 0; i < maxbytes; i++) {
358 *buf = (i == maxbytes - 1) ? '\0' : ':';
/macosx-10.5.8/xnu-1228.15.4/bsd/hfs/
H A Dhfs_vfsutils.c1753 size_t maxbytes; local
1759 maxbytes = kHFSPlusMaxFileNameChars << 1;
1760 MALLOC(ustr1, u_int16_t *, maxbytes << 1, M_TEMP, M_WAITOK);
1761 ustr2 = ustr1 + (maxbytes >> 1);
1763 if (utf8_decodestr(str1, len1, ustr1, &ulen1, maxbytes, ':', 0) != 0)
1765 if (utf8_decodestr(str2, len2, ustr2, &ulen2, maxbytes, ':', 0) != 0)

Completed in 82 milliseconds