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

  /external/chromium_org/components/visitedlink/common/
visitedlink_common.h 38 // To ask whether a page is in history, we compute a 64-bit fingerprint of the
48 typedef uint64 Fingerprint;
49 typedef std::vector<Fingerprint> Fingerprints;
51 // A hash value of a fingerprint
54 // A fingerprint or hash value that does not exist
55 static const Fingerprint null_fingerprint_;
61 // Returns the fingerprint for the given URL.
62 Fingerprint ComputeURLFingerprint(const char* canonical_url,
67 // Looks up the given key in the table. The fingerprint for the URL is
72 bool IsVisited(Fingerprint fingerprint) const
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Fingerprint.java 30 public class Fingerprint {
43 // 16 bytes for 128-bit fingerprint
46 // length of prefix + 32 hex chars for 128-bit fingerprint
65 * Creates a new Fingerprint.
67 public Fingerprint(byte[] bytes) {
75 * Creates a Fingerprint based on the contents of a file.
79 * of the fingerprint calculation
81 public static Fingerprint fromInputStream(InputStream stream, long[] byteCount)
89 // scan through file to compute a fingerprint.
98 return new Fingerprint(in.getMessageDigest().digest())
    [all...]
  /external/openfst/src/include/fst/
bi-table.h 271 // It is passed a function object FP that should fingerprint entries
313 const FP &Fingerprint() const { return *fp_; }
326 // vector. The fingerprinting functor FP returns a unique fingerprint
410 const FP &Fingerprint() const { return *fp_; }
458 FP *fp_; // Fingerprint used when hashing entry into vector
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
TextAutosizer.h 134 // more blocks that all have the same fingerprint. Clusters whose roots
206 typedef unsigned Fingerprint;
207 typedef HashMap<Fingerprint, OwnPtr<Supercluster> > SuperclusterMap;
214 void add(const RenderObject*, Fingerprint);
215 void addTentativeClusterRoot(const RenderBlock*, Fingerprint);
218 Fingerprint get(const RenderObject*);
219 BlockSet* getTentativeClusterRoots(Fingerprint);
222 typedef HashMap<const RenderObject*, Fingerprint> FingerprintMap;
223 typedef HashMap<Fingerprint, OwnPtr<BlockSet> > ReverseFingerprintMap;
265 Fingerprint getFingerprint(const RenderObject*)
    [all...]

Completed in 333 milliseconds