HomeSort by relevance Sort by last modified time
    Searched refs:checksum (Results 76 - 100 of 856) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/skqp/src/gpu/
GrProgramDesc.h 57 // Gets the a checksum of the key. Can be used as a hash value for a fast lookup in a cache.
126 uint32_t* checksum = this->atOffset<uint32_t, GrProgramDesc::kChecksumOffset>(); local
127 *checksum = 0; // We'll hash through these bytes, so make sure they're initialized.
128 *checksum = SkOpts::hash(fKey.begin(), keyLength);
142 // 2. uint32_t for a checksum.
  /prebuilts/go/darwin-x86/src/crypto/sha512/
sha512.go 27 // Size is the size, in bytes, of a SHA-512 checksum.
30 // Size224 is the size, in bytes, of a SHA-512/224 checksum.
33 // Size256 is the size, in bytes, of a SHA-512/256 checksum.
36 // Size384 is the size, in bytes, of a SHA-384 checksum.
80 // digest represents the partial evaluation of a checksum.
219 // New returns a new hash.Hash computing the SHA-512 checksum.
226 // New512_224 returns a new hash.Hash computing the SHA-512/224 checksum.
233 // New512_256 returns a new hash.Hash computing the SHA-512/256 checksum.
240 // New384 returns a new hash.Hash computing the SHA-384 checksum.
289 hash := d.checkSum()
    [all...]
  /prebuilts/go/linux-x86/src/crypto/sha512/
sha512.go 27 // Size is the size, in bytes, of a SHA-512 checksum.
30 // Size224 is the size, in bytes, of a SHA-512/224 checksum.
33 // Size256 is the size, in bytes, of a SHA-512/256 checksum.
36 // Size384 is the size, in bytes, of a SHA-384 checksum.
80 // digest represents the partial evaluation of a checksum.
219 // New returns a new hash.Hash computing the SHA-512 checksum.
226 // New512_224 returns a new hash.Hash computing the SHA-512/224 checksum.
233 // New512_256 returns a new hash.Hash computing the SHA-512/256 checksum.
240 // New384 returns a new hash.Hash computing the SHA-384 checksum.
289 hash := d.checkSum()
    [all...]
  /bionic/libc/kernel/uapi/linux/
icmp.h 62 __sum16 checksum; member in struct:icmphdr
  /device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
dig64.h 82 uint8_t checksum; member in struct:dig64_hcdp_table
  /external/kernel-headers/original/uapi/linux/
icmp.h 72 __sum16 checksum; member in struct:icmphdr
  /external/ltp/testcases/kernel/io/stress_cd/
stress_cd.c 53 static unsigned long checksum; variable
64 /* Read data from CDROM & compute checksum */
65 read_data(0, &checksum);
67 printf("Thread [main] checksum: %-#12lx\n", checksum);
129 if (checksum != cksum) {
130 fprintf(stderr, "\tThread [%d]: checksum mismatch!\n", num);
171 printf("\tThread [%d] bytes read: %5d checksum: "
177 printf("\tThread [%d] bytes read: %5d checksum: %-#12lx\n",
  /external/pdfium/xfa/fwl/
cfx_barcode.h 42 bool SetPrintChecksum(bool checksum);
  /external/skia/tools/
reformat-json.py 13 (only the actual checksum differences will show up as diffs, not obscured
  /external/skqp/tools/
reformat-json.py 13 (only the actual checksum differences will show up as diffs, not obscured
  /external/syslinux/com32/modules/
sdi.c 55 uint64_t Checksum;
149 unsigned char checksum; local
152 checksum = 0;
154 checksum += header[i];
155 return (!checksum);
  /external/syslinux/gpxe/src/arch/i386/core/
wince_loader.c 56 unsigned long checksum; // Section CheckSum member in struct:segment_info
200 X.checksum = *(unsigned long *)(dbuffer + now + sizeof(unsigned long)*2);
227 printf("\t Checksum = %ld [%lx]\n", X.checksum, X.checksum);
  /external/toolchain-utils/bestflags/examples/omnetpp/
build_omnetpp 58 checksum=$(readelf -x .text $outfile | md5sum | cut -d " " -f 1)
64 echo $checksum $user_time $output_file $file_size $size
  /external/toolchain-utils/crosperf/
label.py 82 """Compute label checksum only once."""
84 self.checksum = None
86 self.checksum = ImageChecksummer().Checksum(self, self.log_level)
88 self.checksum = hashlib.md5(self.chromeos_image).hexdigest()
146 self.checksum = ''
  /hardware/intel/bootstub/
sfi.h 35 u8 checksum; member in struct:sfi_table_header
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
MD5Calculator.java 26 public static String checksum(final InputStream in) throws IOException { method in class:MD5Calculator
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
icmp.h 71 __sum16 checksum; member in struct:icmphdr
  /prebuilts/go/darwin-x86/src/compress/zlib/
reader.go 38 // ErrChecksum is returned when reading ZLIB data that has an invalid checksum.
39 ErrChecksum = errors.New("zlib: invalid checksum")
101 // Finished file; check checksum.
110 checksum := uint32(z.scratch[0])<<24 | uint32(z.scratch[1])<<16 | uint32(z.scratch[2])<<8 | uint32(z.scratch[3])
111 if checksum != z.digest.Sum32() {
119 // In order for the ZLIB checksum to be verified, the reader must be
159 checksum := uint32(z.scratch[0])<<24 | uint32(z.scratch[1])<<16 | uint32(z.scratch[2])<<8 | uint32(z.scratch[3])
160 if checksum != adler32.Checksum(dict) {
  /prebuilts/go/linux-x86/src/compress/zlib/
reader.go 38 // ErrChecksum is returned when reading ZLIB data that has an invalid checksum.
39 ErrChecksum = errors.New("zlib: invalid checksum")
101 // Finished file; check checksum.
110 checksum := uint32(z.scratch[0])<<24 | uint32(z.scratch[1])<<16 | uint32(z.scratch[2])<<8 | uint32(z.scratch[3])
111 if checksum != z.digest.Sum32() {
119 // In order for the ZLIB checksum to be verified, the reader must be
159 checksum := uint32(z.scratch[0])<<24 | uint32(z.scratch[1])<<16 | uint32(z.scratch[2])<<8 | uint32(z.scratch[3])
160 if checksum != adler32.Checksum(dict) {
  /toolchain/binutils/binutils-2.27/include/som/
lst.h 47 unsigned char checksum[4]; member in struct:som_external_lst_header
internal.h 63 unsigned int checksum; member in struct:som_header
203 unsigned int checksum; member in struct:som_lst_header
  /external/autotest/client/cros/chameleon/
edid.py 71 # Each block (128-byte) has a checksum at the last byte.
72 checksum = reduce(operator.add,
74 if checksum % 256 != 0:
75 logging.debug('Wrong checksum in the block %d of EDID',
  /external/elfutils/libelf/
elf32_checksum.c 1 /* Compute simple checksum from permanent parts of the ELF file.
54 elfw2(LIBELFBITS,checksum) (Elf *elf)
116 /* To compute the checksum we need to get to the data. For
168 INTDEF(elfw2(LIBELFBITS,checksum))
  /external/autotest/client/site_tests/video_GlitchDetection/
video_GlitchDetection.py 102 raw_test_checksums = [tuple(checksum) for checksum in
138 logging.debug("Write golden checksum file to %s",
142 for checksum in test_checksums:
143 f.write(' '.join([str(i) for i in checksum]) + '\n')
234 Reads the golden checksum file. Each line in file has the format
235 w x y z where w x y z is a chameleon frame checksum
236 @param path: complete path to the golden checksum file.
243 checksum = tuple(int(val) for val in line.split())
244 checksums.append(checksum)
    [all...]
  /external/nos/host/android/hals/authsecret/test/
test.cpp 56 MATCHER_P2(OldPasswordEq, pwd, checksum, "") {
60 && msg->old_password.digest == checksum;
63 MATCHER_P2(NewPasswordEq, pwd, checksum, "") {
67 && msg->new_password.digest == checksum;
119 MATCHER_P2(UpdatePasswordEq, pwd, checksum, "") {
123 && msg->password.digest == checksum;

Completed in 939 milliseconds

1 2 34 5 6 7 8 91011>>