Searched refs:checksum (Results 51 - 75 of 272) sorted by relevance

1234567891011

/freebsd-10.0-release/sys/ofed/include/linux/mlx4/
H A Dcq.h52 __be16 checksum; member in struct:mlx4_cqe
77 __be16 checksum; member in struct:mlx4_ts_cqe
/freebsd-10.0-release/crypto/heimdal/lib/krb5/
H A Dpac.c79 * HMAC-MD5 checksum over any key (needed for the PAC routines)
99 ret = krb5_data_alloc (&result->checksum, 16);
108 krb5_data_free(&result->checksum);
459 cksum.checksum.length =
461 cksum.checksum.data = malloc(cksum.checksum.length);
462 if (cksum.checksum.data == NULL) {
466 ret = krb5_storage_read(sp, cksum.checksum.data, cksum.checksum.length);
467 if (ret != (int)cksum.checksum
[all...]
H A Dkrb5-v4compat.h120 uint32_t checksum; /* Data checksum (opt) */ member in struct:_krb5_krb_auth_data
H A Drd_safe.c51 safe->cksum.checksum.data = NULL;
52 safe->cksum.checksum.length = 0;
/freebsd-10.0-release/contrib/subversion/subversion/include/private/
H A Dsvn_editor.h484 /** The kind of the checksum to be used throughout the #svn_editor_t APIs.
533 const svn_checksum_t *checksum,
579 const svn_checksum_t *checksum,
901 * The file's contents are specified in @a contents which has a checksum
902 * matching @a checksum. Both values must be non-NULL.
923 const svn_checksum_t *checksum,
1007 * the file, and its checksum must match @a checksum (which must also
1008 * be non-NULL). If @a contents is NULL, then @a checksum must also
1012 * pass NULL for @a props, @a checksum, an
[all...]
/freebsd-10.0-release/include/rpc/
H A Dauth_kerb.h71 unsigned long checksum; /* Data checksum (opt) */ member in struct:authkerb_clnt_cred
/freebsd-10.0-release/sys/amd64/include/pc/
H A Dbios.h65 uint8_t checksum; member in struct:smbios_eps
/freebsd-10.0-release/sys/boot/uboot/lib/
H A Dapi_public.h76 uint32_t checksum; /* checksum of this sig struct */ member in struct:api_signature
/freebsd-10.0-release/sys/dev/ixgb/
H A Dixgb_ee.h101 uint16_t checksum; member in struct:ixgb_ee_map_type
/freebsd-10.0-release/sys/i386/include/
H A Dsmapi.h42 u_int8_t checksum; member in struct:smapi_bios_header
/freebsd-10.0-release/usr.sbin/makefs/cd9660/
H A Dcd9660_eltorito.c241 int16_t checksum; local
258 /* Calculate checksum */
259 checksum = 0;
260 cd9660_721(0, ve->checksum);
263 checksum += (int16_t)csptr[i];
264 checksum += 256 * (int16_t)csptr[i + 1];
266 checksum = -checksum;
267 cd9660_721(checksum, ve->checksum);
[all...]
/freebsd-10.0-release/sys/dev/e1000/
H A De1000_manage.c38 * e1000_calculate_checksum - Calculate checksum for buffer
40 * @length: size of EEPROM to calculate a checksum for
42 * Calculates the checksum for some buffer on a specified length. The
43 * checksum calculated is returned.
163 hdr_csum = hdr->checksum;
164 hdr->checksum = 0;
188 * Writes the command header after does the checksum calculation.
197 /* Write the whole command header structure with new checksum. */
199 hdr->checksum = e1000_calculate_checksum((u8 *)hdr, length);
218 * @sum: sum of the data (not checksum)
[all...]
/freebsd-10.0-release/lib/librpcsec_gss/
H A Drpcsec_gss.c273 gss_buffer_desc signbuf, checksum; local
304 checksum.value = verf->oa_base;
305 checksum.length = verf->oa_length;
308 &checksum, &qop_state);
572 gss_buffer_desc rpcbuf, checksum; local
585 * creds together in a buffer so that we can create a checksum
629 &rpcbuf, &checksum);
642 verf.oa_base = checksum.value;
643 verf.oa_length = checksum.length;
646 gss_release_buffer(&min_stat, &checksum);
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_repos/
H A Dreplay.c304 svn_checksum_t *checksum;
333 SVN_ERR(svn_fs_file_checksum(&checksum, svn_checksum_md5, target_root,
336 svn_checksum_to_cstring(checksum, pool),
762 svn_checksum_t *checksum;
763 SVN_ERR(svn_fs_file_checksum(&checksum, svn_checksum_md5,
766 hex_digest = svn_checksum_to_cstring(checksum, pool);
790 svn_checksum_t *checksum;
791 SVN_ERR(svn_fs_file_checksum(&checksum, svn_checksum_md5, root, edit_path,
794 svn_checksum_to_cstring(checksum, pool),
1159 svn_checksum_t *checksum;
301 svn_checksum_t *checksum; local
759 svn_checksum_t *checksum; local
787 svn_checksum_t *checksum; local
1154 svn_checksum_t *checksum; local
1351 svn_checksum_t *checksum; local
1446 svn_checksum_t *checksum = NULL; local
[all...]
/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_lzop.c89 * compressed size(4 bytes) and the checksum of uncompressed data(4 bytes)
131 /* Header checksum 4 bytes */
296 uint32_t checksum; local
313 /* Overwrite header checksum with calculated value. */
314 checksum = lzo_adler32(1, data->compressed + HEADER_VERSION,
316 archive_be32enc(&data->compressed[HEADER_H_CHECKSUM], checksum);
328 uint32_t checksum; local
366 /* Store the checksum of the uncompressed data. */
367 checksum = lzo_adler32(1, data->uncompressed, usize);
368 archive_be32enc(p + header_bytes + 8, checksum);
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_wc/
H A Dwc-queries.sql30 SELECT op_depth, repos_id, repos_path, presence, kind, revision, checksum,
40 checksum, translated_size, changed_revision, changed_date, changed_author,
54 SELECT repos_id, repos_path, presence, kind, revision, checksum,
62 checksum, translated_size, changed_revision, changed_date, changed_author,
83 SELECT op_depth, presence, kind, checksum, translated_size,
93 SELECT repos_id, repos_path, presence, kind, revision, checksum,
124 checksum, translated_size, changed_revision, changed_date, changed_author,
158 changed_author, checksum, properties, translated_size, last_mod_time,
175 SELECT local_relpath, kind, checksum, translated_size, last_mod_time
262 changed_author, checksum, propertie
[all...]
H A Dentries.c67 svn_checksum_t *checksum; member in struct:db_node_t
213 const svn_checksum_t **checksum,
235 checksum,
260 checksum,
388 const svn_checksum_t *checksum;
413 &checksum,
828 &checksum,
868 if (checksum)
871 if (checksum->kind != svn_checksum_md5)
872 SVN_ERR(svn_wc__db_pristine_get_md5(&checksum, d
209 get_info_for_deleted(svn_wc_entry_t *entry, svn_node_kind_t *kind, const char **repos_relpath, const svn_checksum_t **checksum, svn_wc__db_lock_t **lock, svn_wc__db_t *db, const char *entry_abspath, const svn_wc_entry_t *parent_entry, svn_boolean_t have_base, svn_boolean_t have_more_work, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
387 const svn_checksum_t *checksum; local
[all...]
/freebsd-10.0-release/sys/dev/mxge/
H A Dmxge_mcp.h57 uint16_t checksum; member in struct:mcp_slot
69 uint16_t checksum; member in struct:mcp_slot_8
/freebsd-10.0-release/sys/x86/include/
H A Dmptable.h47 u_char checksum; member in struct:MPFPS
63 u_char checksum; member in struct:MPCTH
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_fs_fs/
H A Drep-cache.c230 svn_checksum_t *checksum,
242 if (checksum->kind != svn_checksum_sha1)
249 svn_checksum_to_cstring(checksum, pool)));
255 (*rep)->sha1_checksum = svn_checksum_dup(checksum, pool);
325 _("Representation key for checksum '%%s' exists "
342 checksum AND failed to read an existing checksum. Do we need
226 svn_fs_fs__get_rep_reference(representation_t **rep, svn_fs_t *fs, svn_checksum_t *checksum, apr_pool_t *pool) argument
/freebsd-10.0-release/contrib/tcpdump/
H A Dappletalk.h39 u_int16_t checksum; member in struct:atDDP
/freebsd-10.0-release/crypto/openssl/crypto/krb5/
H A Dkrb5_asn.h153 ** checksum[1] OCTET STRING
159 ASN1_OCTET_STRING *checksum; member in struct:krb5_checksum_st
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Ddsl_scan.h132 void dsl_scan_ddt_entry(dsl_scan_t *scn, enum zio_checksum checksum,
/freebsd-10.0-release/sys/dev/sfxge/common/
H A Dsiena_flash.h58 efx_word_t checksum; /* of whole header area + firmware image */ member in struct:siena_mc_boot_hdr_s
/freebsd-10.0-release/usr.sbin/bsdinstall/scripts/
H A Djail105 bsdinstall checksum || error

Completed in 411 milliseconds

1234567891011