Searched refs:crc (Results 76 - 100 of 125) sorted by relevance

12345

/macosx-10.10.1/ksh-23/ksh/src/cmd/INIT/
H A Dratz.c1069 #define DO1 crc = crc_table[0][((int)crc ^ (*buf++)) & 0xff] ^ (crc >> 8)
1073 unsigned long ZEXPORT crc32(crc, buf, len)
1074 unsigned long crc;
1091 return crc32_little(crc, buf, len);
1093 return crc32_big(crc, buf, len);
1096 crc = crc ^ 0xffffffff;
1104 return crc
[all...]
/macosx-10.10.1/libxml2-26/libxml2/
H A Dxzlib.c448 if (flags & 2) { /* header crc */
489 unsigned long crc, len; local
543 /* update available output and crc check value */
554 if (gz_next4(state, &crc) == -1 || gz_next4(state, &len) == -1) {
558 if (crc != state->zstrm.adler) {
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libpng/
H A Dpng.c114 png_ptr->crc = crc32(0, Z_NULL, 0);
140 png_ptr->crc = crc32(png_ptr->crc, ptr, (uInt)length);
/macosx-10.10.1/Heimdal-398.1.2/lib/krb5/
H A DNTMakefile55 $(OBJ)\crc.obj \
198 crc.c \
350 $(OBJ)\crc.obj \
/macosx-10.10.1/file_cmds-242/cksum/
H A Dcrc.c39 static char sccsid[] = "@(#)crc.c 8.1 (Berkeley) 6/17/93";
43 __FBSDID("$FreeBSD: src/usr.bin/cksum/crc.c,v 1.8 2003/03/13 23:32:28 robert Exp $");
110 * locations to store the crc and the number of bytes read. It returns 0 on
113 uint32_t crc_total = ~0; /* The crc over a number of files. */
116 crc(int fd, uint32_t *cval, off_t *clen) function
/macosx-10.10.1/ksh-23/ksh/src/lib/libsum/
H A Dsumlib.c155 #include "sum-crc.c"
182 METHOD(crc),
208 "The posix 1003.2-1992 32 bit crc checksum. This is the"
210 "crc-0x04c11db7-rotate-done-size"
214 "The \bzip\b(1) crc.",
215 "crc-0xedb88320-init-done"
219 "The FDDI crc.",
220 "crc-0xedb88320-size=0xcc55cc55"
/macosx-10.10.1/ntp-92/include/
H A Dmbg_gps166.h466 l_fp crc; /* � Cosine Corr. Term to Orbit Radius [m] */ member in struct:__anon11206
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/compat/
H A Dzlib.h838 ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len));
840 Update a running crc with the bytes buf[0..len-1] and return the updated
841 crc. If buf is NULL, this function returns the required initial value
842 for the crc. Pre- and post-conditioning (one's complement) is performed
846 uLong crc = crc32(0L, Z_NULL, 0);
849 crc = crc32(crc, buffer, length);
851 if (crc != original_crc) error();
/macosx-10.10.1/xnu-2782.1.97/iokit/IOKit/pwr_mgt/
H A DIOPMPrivate.h774 uint32_t crc; /* CRC for spindump & following data.*/ member in struct:__anon14863
/macosx-10.10.1/apr-32/apr-util/apr-util/memcache/
H A Dapr_memcache.c537 apr_uint32_t crc; local
538 crc = ~0;
541 crc = (crc >> 8) ^ crc32tab[(crc ^ (data[i])) & 0xff];
543 return ~crc;
/macosx-10.10.1/ruby-106/ruby/ext/zlib/
H A Dzlib.c466 * Calculates CRC checksum for +string+, and returns updated value of +crc+. If
467 * +string+ is omitted, it returns the CRC initial value. If +crc+ is omitted, it
468 * assumes that the initial value is given to +crc+.
2197 unsigned long crc; member in struct:gzfile
2267 gz->crc = crc32(0, Z_NULL, 0);
2289 gz->crc = crc32(0, Z_NULL, 0);
2502 gzfile_set32(gz->crc, buf);
2592 unsigned long crc, length; local
2600 crc = gzfile_get32((Bytef*)RSTRING_PTR(gz->z.input));
2606 if (gz->crc !
[all...]
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dgpg.vim68 \ gpg-agent-info ignore-crc-error ignore-mdc-error
/macosx-10.10.1/Heimdal-398.1.2/tools/
H A Dkdc-log-analyze.pl459 if ($ticket =~ /des-cbc-(crc|md4|md5)/) {
/macosx-10.10.1/file_cmds-242/mtree/
H A Dcompare.c216 } else if (crc(fd, &val, &len)) {
H A Dcreate.c226 crc(fd, &val, &len))
/macosx-10.10.1/lsof-53/lsof/
H A Dproto.h187 _PROTOTYPE(extern void crc,(char *b, int l, unsigned *s));
/macosx-10.10.1/rsync-45/rsync/zlib/
H A Dzlib.h121 int hcrc; /* true if there was or will be a header crc */
509 no header crc, and the operating system will be set to 255 (unknown). If a
681 available there. If hcrc is true, a gzip header crc is included. Note that
683 1.3.x) do not support header crc's, and will report that it is a "multi-part
982 and decode gzip streams (to avoid linking crc code)
1286 ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len));
1290 value for the for the crc. Pre- and post-conditioning (one's complement) is
1294 uLong crc = crc32(0L, Z_NULL, 0);
1297 crc = crc32(crc, buffe
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/support/installation/
H A Dmodules.tcl53 Module crc _tcl _man _null
/macosx-10.10.1/xnu-2782.1.97/libkern/libkern/
H A Dzlib.h148 int hcrc; /* true if there was or will be a header crc */
537 no header crc, and the operating system will be set to 255 (unknown). If a
709 available there. If hcrc is true, a gzip header crc is included. Note that
711 1.3.x) do not support header crc's, and will report that it is a "multi-part
1010 and decode gzip streams (to avoid linking crc code)
1317 ZEXTERN uLong ZEXPORT z_crc32 OF((uLong crc, const Bytef *buf, uInt len));
1321 value for the for the crc. Pre- and post-conditioning (one's complement) is
1325 uLong crc = crc32(0L, Z_NULL, 0);
1328 crc = crc32(crc, buffe
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/utilities/src/
H A DSecCFWrappers.h335 uint64_t crc = 0; local
336 CNCRC(kCN_CRC_64_ECMA_182, bytes+8, len-8, &crc);
340 CFStringAppendFormat(s, 0, CFSTR("...|%08llx"), crc);
/macosx-10.10.1/Security-57031.1.35/Security/utilities/utilities/
H A DSecCFWrappers.h335 uint64_t crc = 0; local
336 CNCRC(kCN_CRC_64_ECMA_182, bytes+8, len-8, &crc);
340 CFStringAppendFormat(s, 0, CFSTR("...|%08llx"), crc);
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-ldif/
H A Dldif.c391 #define CRC1 crc = crctab[(crc ^ *buf++) & 0xff] ^ (crc >> 8)
397 ber_uint_t crc = 0xffffffff; local
409 return crc ^ 0xffffffff;
/macosx-10.10.1/zlib-55/zlib/contrib/minizip/
H A Dunzip.c933 if (unz64local_getLong(&s->z_filefunc, s->filestream,&file_info.crc) != UNZ_OK)
1155 pfile_info->crc = file_info64.crc;
1435 if (unz64local_getLong(&s->z_filefunc, s->filestream,&uData) != UNZ_OK) /* crc */
1437 else if ((err==UNZ_OK) && (uData!=s->cur_file_info.crc) && ((uFlags & 8)==0))
1540 pfile_in_zip_read_info->crc32_wait=s->cur_file_info.crc;
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A Dsystem_error.h856 crc = 23, // ERROR_CRC, enumerator in enum:llvm::windows_error::_
/macosx-10.10.1/sudo-73/src/zlib/
H A Dzlib.h124 int hcrc; /* true if there was or will be a header crc */
552 header crc, and the operating system will be set to 255 (unknown). If a
753 available there. If hcrc is true, a gzip header crc is included. Note that
755 1.3.x) do not support header crc's, and will report that it is a "multi-part
1111 and decode gzip streams (to avoid linking crc code)
1577 ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len));
1581 initial value for the for the crc. Pre- and post-conditioning (one's
1587 uLong crc = crc32(0L, Z_NULL, 0);
1590 crc = crc32(crc, buffe
[all...]

Completed in 505 milliseconds

12345