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

1 2

  /external/testng/src/test/java/test/factory/
FactoryInSeparateClass.java 35 public void checkSum() {
  /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...]
  /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/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/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/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/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...]
  /external/harfbuzz_ng/src/
hb-open-file-private.hh 66 CheckSum checkSum; /* CheckSum for this table. */
  /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...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
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() {
  /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...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
ForkJoinPool.java     [all...]
  /prebuilts/devtools/tools/lib/
fat32lib.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/fat32lib/unspecified/
fat32lib-unspecified.jar 
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ArraysTest.java     [all...]
  /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 
  /prebuilts/misc/common/robolectric/android-all/
android-all-7.0.0_r1-robolectric-0.jar 
android-all-7.0.0_r1-robolectric-r1.jar 
android-all-7.1.0_r7-robolectric-0.jar 
android-all-7.1.0_r7-robolectric-r1.jar 
  /external/guice/extensions/struts2/lib/
ant-1.6.5.jar 

Completed in 356 milliseconds

1 2