HomeSort by relevance Sort by last modified time
    Searched defs:Fingerprint (Results 1 - 2 of 2) sorted by null

  /external/chromium/chrome/common/
visitedlink_common.h 37 // To ask whether a page is in history, we compute a 64-bit fingerprint of the
47 typedef uint64 Fingerprint;
48 typedef std::vector<Fingerprint> Fingerprints;
50 // A hash value of a fingerprint
53 // A fingerprint or hash value that does not exist
54 static const Fingerprint null_fingerprint_;
60 // Returns the fingerprint for the given URL.
61 Fingerprint ComputeURLFingerprint(const char* canonical_url,
66 // Looks up the given key in the table. The fingerprint for the URL is
71 bool IsVisited(Fingerprint fingerprint) const
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Fingerprint.java 34 public class Fingerprint {
47 // 16 bytes for 128-bit fingerprint
50 // length of prefix + 32 hex chars for 128-bit fingerprint
69 * Creates a new Fingerprint.
71 public Fingerprint(byte[] bytes) {
79 * Creates a Fingerprint based on the contents of a file.
83 * of the fingerprint calculation
85 public static Fingerprint fromInputStream(InputStream stream, long[] byteCount)
93 // scan through file to compute a fingerprint.
102 return new Fingerprint(in.getMessageDigest().digest())
    [all...]

Completed in 123 milliseconds