HomeSort by relevance Sort by last modified time
    Searched refs:checkSum (Results 1 - 25 of 34) sorted by null

1 2

  /external/pdfium/fxbarcode/oned/
BC_OnedCode128Writer.cpp 141 int32_t checkSum = 0;
143 checkSum = Encode128B(contents, &patterns);
145 checkSum = Encode128C(contents, &patterns);
147 checkSum %= 103;
148 patterns.push_back(checkSum);
175 int32_t checkSum = CODE_START_B * checkWeight;
179 checkSum += patternIndex * checkWeight++;
181 return checkSum;
189 int32_t checkSum = CODE_START_C * checkWeight;
206 checkSum += patternIndex * checkWeight++
    [all...]
  /external/testng/src/test/java/test/factory/
FactoryInSeparateClass.java 35 public void checkSum() {
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatLfnDirectoryEntry.java 219 final byte checkSum = this.realEntry.getShortName().checkSum();
224 j + 1, checkSum, false);
229 j + 1, checkSum, true);
304 int ordinal, byte checkSum, boolean isLast) {
334 LittleEndian.setInt8(rawData, 13, checkSum); // checksum
ShortName.java 99 * Calculates the checksum that is used to test a long file name for it's
102 * @return the {@code ShortName}'s checksum
104 public byte checkSum() {
  /external/fonttools/Lib/fontTools/
ttx.py 179 print(format % ("tag ", " checksum", " length", " offset"))
183 checkSum = int(entry.checkSum)
184 if checkSum < 0:
185 checkSum = checkSum + 0x100000000
186 checksum = "0x%08X" % checkSum
187 print(format % (tag, checksum, entry.length, entry.offset))
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BlobCache.java 35 // [28] Checksum of [0..28).
49 // [8] Checksum of this blob
219 if (checkSum(buf, 0, IH_CHECKSUM) != sum) {
220 Log.w(TAG, "header checksum does not match");
312 writeInt(buf, IH_CHECKSUM, checkSum(buf, 0, IH_CHECKSUM));
345 checkSum(mIndexHeader, 0, IH_CHECKSUM));
399 int sum = checkSum(data);
528 if (checkSum(blob, 0, length) != sum) {
529 Log.w(TAG, "blob checksum does not match: " + sum);
619 int checkSum(byte[] data)
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/md5/
md5.go 23 // The size of an MD5 checksum in bytes.
37 // digest represents the partial evaluation of a checksum.
127 // New returns a new hash.Hash computing the MD5 checksum. The Hash also
166 hash := d.checkSum()
170 func (d *digest) checkSum() [Size]byte {
203 // Sum returns the MD5 checksum of the data.
208 return d.checkSum()
  /prebuilts/go/linux-x86/src/crypto/md5/
md5.go 23 // The size of an MD5 checksum in bytes.
37 // digest represents the partial evaluation of a checksum.
127 // New returns a new hash.Hash computing the MD5 checksum. The Hash also
166 hash := d.checkSum()
170 func (d *digest) checkSum() [Size]byte {
203 // Sum returns the MD5 checksum of the data.
208 return d.checkSum()
  /prebuilts/go/darwin-x86/src/crypto/sha256/
sha256.go 20 // The size of a SHA256 checksum in bytes.
23 // The size of a SHA224 checksum in bytes.
49 // digest represents the partial evaluation of a checksum.
168 // New returns a new hash.Hash computing the SHA256 checksum. The Hash
178 // New224 returns a new hash.Hash computing the SHA224 checksum.
221 hash := d.checkSum()
228 func (d *digest) checkSum() [Size]byte {
266 // Sum256 returns the SHA256 checksum of the data.
271 return d.checkSum()
274 // Sum224 returns the SHA224 checksum of the data
    [all...]
  /prebuilts/go/linux-x86/src/crypto/sha256/
sha256.go 20 // The size of a SHA256 checksum in bytes.
23 // The size of a SHA224 checksum in bytes.
49 // digest represents the partial evaluation of a checksum.
168 // New returns a new hash.Hash computing the SHA256 checksum. The Hash
178 // New224 returns a new hash.Hash computing the SHA224 checksum.
221 hash := d.checkSum()
228 func (d *digest) checkSum() [Size]byte {
266 // Sum256 returns the SHA256 checksum of the data.
271 return d.checkSum()
274 // Sum224 returns the SHA224 checksum of the data
    [all...]
  /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...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
ForkJoinPool.java     [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ArraysTest.java     [all...]
  /external/fonttools/Lib/fontTools/ttLib/
sfnt.py 80 checksum = calcChecksum(data[:8] + b'\0\0\0\0' + data[12:])
82 checksum = calcChecksum(data)
85 assert checksum == entry.checksum, "bad checksum for '%s' table" % tag
86 elif checksum != entry.checkSum:
88 print("bad checksum for '%s' table" % tag)
146 entry.checkSum = calcChecksum(data[:8] + b'\0\0\0\0' + data[12:])
150 entry.checkSum = calcChecksum(data
    [all...]
  /external/harfbuzz_ng/src/
hb-open-file-private.hh 66 CheckSum checkSum; /* CheckSum for this table. */
hb-uniscribe.cc 413 record.checkSum.set_for_data (&name, name_table_length);
  /prebuilts/go/darwin-x86/src/crypto/sha1/
sha1.go 21 // The size of a SHA-1 checksum in bytes.
36 // digest represents the partial evaluation of a checksum.
117 // New returns a new hash.Hash computing the SHA1 checksum. The Hash also
156 hash := d.checkSum()
160 func (d *digest) checkSum() [Size]byte {
259 // Sum returns the SHA-1 checksum of the data.
264 return d.checkSum()
  /prebuilts/go/linux-x86/src/crypto/sha1/
sha1.go 21 // The size of a SHA-1 checksum in bytes.
36 // digest represents the partial evaluation of a checksum.
117 // New returns a new hash.Hash computing the SHA1 checksum. The Hash also
156 hash := d.checkSum()
160 func (d *digest) checkSum() [Size]byte {
259 // Sum returns the SHA-1 checksum of the data.
264 return d.checkSum()
  /external/lzma/CPP/7zip/UI/Common/
Bench.cpp     [all...]
  /prebuilts/devtools/tools/lib/
fat32lib.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/fat32lib/unspecified/
fat32lib-unspecified.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-archiver/2.3/
plexus-archiver-2.3.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-archiver/1.0/
plexus-archiver-1.0.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-archiver/2.2/
plexus-archiver-2.2.jar 

Completed in 1056 milliseconds

1 2