Searched refs:len1 (Results 1 - 5 of 5) sorted by relevance

/xnu-2782.1.97/bsd/hfs/hfscommon/Unicode/
H A DUnicodeWrappers.c441 int32_t UnicodeBinaryCompare (register ConstUniCharArrayPtr str1, register ItemCount len1, argument
453 if (len1 < len2) {
454 string_length = len1;
457 else if (len1 > len2) {
462 string_length = len1;
/xnu-2782.1.97/bsd/hfs/
H A Dhfs.h856 extern int hfs_namecmp(const u_int8_t *str1, size_t len1, const u_int8_t *str2, size_t len2);
H A Dhfs_vfsutils.c2319 hfs_namecmp(const u_int8_t *str1, size_t len1, const u_int8_t *str2, size_t len2) argument
2326 if (len1 != len2)
2333 if (utf8_decodestr(str1, len1, ustr1, &ulen1, maxbytes, ':', 0) != 0)
/xnu-2782.1.97/bsd/nfs/
H A Dnfs_subs.c3473 int len1, len2; local
3477 len1 = sizeof(fh1->nfh_xh) + nxh1->nxh_fidlen;
3479 if (len1 != len2)
3481 if (bcmp(nxh1, nxh2, len1))
/xnu-2782.1.97/bsd/hfs/hfscommon/Misc/
H A DVolumeAllocation.c324 static inline int extents_overlap (uint32_t start1, uint32_t len1, argument
326 return !( ((start1 + len1) <= start2) || ((start2 + len2) <= start1) );

Completed in 54 milliseconds