Searched refs:len2 (Results 1 - 10 of 10) sorted by relevance

/xnu-2422.115.4/libkern/zlib/
H A Dcrc32.c398 uLong ZEXPORT z_crc32_combine(crc1, crc2, len2)
401 z_off_t len2;
409 if (len2 == 0)
426 /* apply len2 zeros to crc1 (first square will put the operator for one
429 /* apply zeros operator for this bit of len2 */
431 if (len2 & 1)
433 len2 >>= 1;
436 if (len2 == 0)
441 if (len2 & 1)
443 len2 >>
[all...]
H A Dadler32.c162 uLong ZEXPORT adler32_combine(adler1, adler2, len2)
165 z_off_t len2;
172 rem = (unsigned)(len2 % BASE);
/xnu-2422.115.4/bsd/hfs/hfscommon/Unicode/
H A DUnicodeWrappers.c442 register ConstUniCharArrayPtr str2, register ItemCount len2) {
453 if (len1 < len2) {
457 else if (len1 > len2) {
458 string_length = len2;
441 UnicodeBinaryCompare(register ConstUniCharArrayPtr str1, register ItemCount len1, register ConstUniCharArrayPtr str2, register ItemCount len2) argument
/xnu-2422.115.4/libkern/libkern/
H A Dzlib.h1309 z_off_t len2));
1312 and seq2 with lengths len1 and len2, Adler-32 checksums were calculated for
1314 seq1 and seq2 concatenated, requiring only adler1, adler2, and len2.
1333 ZEXTERN uLong ZEXPORT z_crc32_combine OF((uLong crc1, uLong crc2, z_off_t len2));
1337 seq1 and seq2 with lengths len1 and len2, CRC-32 check values were
1340 len2.
/xnu-2422.115.4/bsd/nfs/
H A Dnfs4_subs.c114 int error, len, len2, cmp; local
153 len2 = min(sizeof(en0addr), ncip->nci_idlen-len);
154 bcopy(en0addr, &ncip->nci_id[len], len2);
156 len2 = min(saddr->sa_len, ncip->nci_idlen-len);
157 bcopy(saddr, &ncip->nci_id[len], len2);
158 len += len2;
160 len2 = strlcpy(&ncip->nci_id[len], vsfs->f_mntfromname, ncip->nci_idlen-len);
161 if (len2 < (ncip->nci_idlen - len))
162 len += len2 + 1;
167 len2
[all...]
H A Dnfs_subs.c3428 int len1, len2; local
3433 len2 = sizeof(fh2->nfh_xh) + nxh2->nxh_fidlen;
3434 if (len1 != len2)
/xnu-2422.115.4/iokit/Kernel/
H A DIORegistryEntry.cpp1198 int len2; local
1260 len2 = strlen( path );
1261 if( (len + len2) < *length)
1262 strlcpy( opath + len, path, len2 + 1 );
1263 *length = (len + len2);
/xnu-2422.115.4/bsd/hfs/
H A Dhfs.h784 extern int hfs_namecmp(const u_int8_t *str1, size_t len1, const u_int8_t *str2, size_t len2);
H A Dhfs_vfsutils.c2127 hfs_namecmp(const u_int8_t *str1, size_t len1, const u_int8_t *str2, size_t len2) argument
2134 if (len1 != len2)
2143 if (utf8_decodestr(str2, len2, ustr2, &ulen2, maxbytes, ':', 0) != 0)
/xnu-2422.115.4/bsd/hfs/hfscommon/Misc/
H A DVolumeAllocation.c325 uint32_t start2, uint32_t len2) {
326 return !( ((start1 + len1) <= start2) || ((start2 + len2) <= start1) );
324 extents_overlap(uint32_t start1, uint32_t len1, uint32_t start2, uint32_t len2) argument

Completed in 170 milliseconds