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

/darwin-on-arm/xnu/libkern/zlib/
H A Dcrc32.c397 uLong ZEXPORT z_crc32_combine(crc1, crc2, len2)
400 z_off_t len2;
408 if (len2 == 0)
425 /* apply len2 zeros to crc1 (first square will put the operator for one
428 /* apply zeros operator for this bit of len2 */
430 if (len2 & 1)
432 len2 >>= 1;
435 if (len2 == 0)
440 if (len2 & 1)
442 len2 >>
[all...]
H A Dadler32.c182 uLong ZEXPORT adler32_combine(adler1, adler2, len2)
185 z_off_t len2;
192 rem = (unsigned)(len2 % BASE);
/darwin-on-arm/xnu/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.
/darwin-on-arm/xnu/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.c3375 int len1, len2; local
3380 len2 = sizeof(fh2->nfh_xh) + nxh2->nxh_fidlen;
3381 if (len1 != len2)
/darwin-on-arm/xnu/iokit/Kernel/
H A DIORegistryEntry.cpp1203 int len2; local
1265 len2 = strlen( path );
1266 if( (len + len2) < *length)
1267 strlcpy( opath + len, path, len2 + 1 );
1268 *length = (len + len2);
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs.h802 extern int hfs_namecmp(const u_int8_t *str1, size_t len1, const u_int8_t *str2, size_t len2);
H A Dhfs_vfsutils.c1955 hfs_namecmp(const u_int8_t *str1, size_t len1, const u_int8_t *str2, size_t len2) argument
1962 if (len1 != len2)
1971 if (utf8_decodestr(str2, len2, ustr2, &ulen2, maxbytes, ':', 0) != 0)

Completed in 58 milliseconds