HomeSort by relevance Sort by last modified time
    Searched full:hash (Results 276 - 300 of 2206) sorted by null

<<11121314151617181920>>

  /external/oprofile/libop/
op_interface.h 67 unsigned int hash; member in struct:op_note
84 /** size of hash map in bytes */
  /external/oprofile/libutil/
op_string.h 31 * @param s: string to hash
33 * Generate a hash code from a string
  /external/webkit/WebCore/html/
HTMLAnchorElement.idl 37 readonly attribute DOMString hash;
45 attribute [ConvertNullToNullString] DOMString hash;
  /external/webkit/WebCore/platform/
KURLHash.h 36 static unsigned hash(const KURL& key) function in struct:WebCore::KURLHash
38 return key.string().impl()->hash();
  /external/webkit/WebCore/platform/graphics/
IntSizeHash.h 32 static unsigned hash(const IntSize& key) { return intHash((static_cast<uint64_t>(key.width()) << 32 | key.height())); } function in struct:WTF::IntHash
36 template<> struct DefaultHash<IntSize> { typedef IntHash<IntSize> Hash; };
  /frameworks/base/tests/CoreTests/android/core/
Sha1Test.java 50 byte[] hash = digest.digest();
51 String encodedHash = encodeHex(hash);
  /dalvik/dx/src/com/android/dx/rop/annotation/
Annotation.java 92 int hash = type.hashCode(); local
93 hash = (hash * 31) + elements.hashCode();
94 hash = (hash * 31) + visibility.hashCode();
95 return hash;
  /dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/text/
CollationKey.java 112 * Creates a hash code for this CollationKey.
113 * Compute the hash by iterating sparsely over about 32 (up to 63) bytes
115 * hash value by a prime number and add the new byte in, like a linear
118 * @return hash value of collation key. Hash value is never 0.
183 * Cached hash value
  /dalvik/libcore/security/src/main/java/java/security/spec/
EllipticCurve.java 43 // Hash code
44 private volatile int hash; field in class:EllipticCurve
191 // hash init is delayed
192 if (hash == 0) {
204 hash = hash0;
206 return hash;
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/utils/
ObjectIdentifier.java 47 //hash code
48 private int hash = -1; field in class:ObjectIdentifier
177 if (hash == -1) {
178 hash = hashIntArray(oid);
180 return hash;
211 * Returns hash code for array of integers
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
DigitalSignature.java 37 * specification, 7.4.3. It allow to init, update and sign hash. Hash algorithm
138 * Update Signature hash
151 * Sets MD5 hash
159 * Sets SHA hash
167 * Sign hash
  /dalvik/vm/hprof/
HprofStackFrame.c 110 /* Only hash the 'frame' portion of the StackFrameEntry. */
114 u4 hash = 0; local
119 hash = 31 * hash + cp[i];
121 return hash;
147 * Create the hash table on first contact. We can't do this in
  /external/apache-http/src/org/apache/http/auth/
NTCredentials.java 149 int hash = LangUtils.HASH_SEED; local
150 hash = LangUtils.hashCode(hash, this.principal);
151 hash = LangUtils.hashCode(hash, this.workstation);
152 return hash;
  /external/v8/test/cctest/
test-hashmap.cc 46 explicit IntSet(IntKeyHash hash) : hash_(hash), map_(DefaultMatchFun) {}
89 static uint32_t Hash(uint32_t key) { return 23; }
93 void TestSet(IntKeyHash hash, int size) {
94 IntSet set(hash);
174 TestSet(Hash, 100);
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps_attr_build.c 105 u8 hash[SHA256_MAC_LEN]; local
122 hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 2, addr, len, hash);
127 wpabuf_put_data(msg, hash, WPS_AUTHENTICATOR_LEN);
215 u8 hash[SHA256_MAC_LEN]; local
219 wpabuf_len(msg), hash);
223 wpabuf_put_data(msg, hash, WPS_KWA_LEN);
  /frameworks/base/awt/java/awt/
Dimension.java 85 * Returns the hash code of the Dimension.
87 * @return the hash code of the Dimension.
91 HashCode hash = new HashCode(); local
92 hash.append(width);
93 hash.append(height);
94 return hash.hashCode();
  /frameworks/base/awt/java/awt/font/
ImageGraphicAttribute.java 107 * Returns a hash code of this ImageGraphicAttribute object.
109 * @return the hash code of this ImageGraphicAttribute object.
113 HashCode hash = new HashCode(); local
115 hash.append(fImage.hashCode());
116 hash.append(getAlignment());
117 return hash.hashCode();
ShapeGraphicAttribute.java 119 * Returns a hash code of this ShapeGraphicAttribute object.
121 * @return a hash code of this ShapeGraphicAttribute object.
125 HashCode hash = new HashCode(); local
127 hash.append(fShape.hashCode());
128 hash.append(getAlignment());
129 return hash.hashCode();
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/include/
bfdlink.h 45 /* Describes the type of hash table entry structure being used.
46 Different hash table structure have different fields and so
55 /* These are the possible types of an entry in the BFD link hash
78 /* The linking routines use a hash table which uses this structure for
83 /* Base hash table entry structure. */
103 the link hash table itself. As symbols are defined, they need
156 /* This is the link hash table. It is a derived class of
161 /* The hash table itself. */
163 /* The back end which created this hash table. This indicates the
164 type of the entries in the hash table, which is sometime
373 struct bfd_link_hash_table *hash; member in struct:bfd_link_info
    [all...]
  /external/e2fsprogs/lib/ext2fs/
tdb.c 139 #define TDB_HASH_TOP(hash) (FREELIST_TOP + (BUCKET(hash)+1)*sizeof(tdb_off_t))
162 #define BUCKET(hash) ((hash) % tdb->header.hash_size)
169 plus a separate data list for each hash value */
175 u32 full_hash; /* the full 32 bit hash of the key */
194 u32 hash_size; /* number of hash entries */
210 u32 hash; member in struct:tdb_traverse_lock
284 static tdb_off_t tdb_find_lock_hash(struct tdb_context *tdb, TDB_DATA key, u32 hash, int locktype,
743 /* lock/unlock one hash chain. This is meant to be used to reduc
3191 u32 hash; local
3229 u32 hash; local
3264 u32 hash = tdb->hash_fn(&key); local
3418 u32 hash = tdb->hash_fn(&key); local
3459 u32 hash; local
3597 u32 hash; local
    [all...]
  /dalvik/libcore/archive/src/main/java/java/util/jar/
JarVerifier.java 78 * Stores and a hash and a message digest and verifies that massage digest
79 * matches the hash.
87 private byte[] hash; field in class:JarVerifier.VerifierEntry
91 VerifierEntry(String name, MessageDigest digest, byte[] hash,
95 this.hash = hash;
128 if (!MessageDigest.isEqual(d, Base64.decode(hash))) {
151 * which contains the certificates used to sign the entry and its hash value
207 String hash = attributes.getValue(algorithm + "-Digest"); //$NON-NLS-1$ local
208 if (hash == null)
410 String hash = attributes.getValue(algorithm + entry); local
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/signers/
ISO9796d2PSSSigner.java 20 * ISO9796-2 - mechanism using a hash function with recovery (scheme 2 and 3).
22 * Note: the usual length for the salt is the length of the hash
56 * @param implicit whether or not the trailer is implicit or gives the hash.
294 byte[] hash = new byte[digest.getDigestSize()];
296 digest.doFinal(hash, 0);
311 byte[] dbMask = maskGeneratorFunction1(hash, 0, hash.length, block.length - hLen - tLength);
317 System.arraycopy(hash, 0, block, block.length - hLen - tLength, hLen);
404 throw new IllegalArgumentException("unrecognised hash in signature");
475 byte[] hash = new byte[digest.getDigestSize()]
    [all...]
  /external/stlport/test/unit/
hash_test.cpp 50 typedef hash_multiset<char, hash<char>, equal_to<char> > hmset;
79 typedef hash_map<char, crope, hash<char>, equal_to<char> > maptype;
116 typedef hash_multimap<char, int, hash<char>,equal_to<char> > mmap;
170 // Short demonstrator that helps reproducing a bug in the hash-table implementation
208 // look up that key in hash-table and keep all data in the set
214 // (c) we should have seen as many elements as there are in the hash-table
229 cout << " data in hash: ";
234 cerr << h->second << ", "; // print all data for that key in Hash-Table
301 hash_set<int, hash<int>, equal_to<int> > s;
302 pair<hash_set<int, hash<int>, equal_to<int> >::iterator, bool> p = s.insert(42)
    [all...]
  /external/wpa_supplicant/
sha256.c 2 * SHA-256 hash implementation and interface functions
29 * @mac: Buffer for the hash (32 bytes)
100 * @mac: Buffer for the hash (20 bytes)
127 u8 hash[SHA256_MAC_LEN]; local
148 hmac_sha256_vector(key, key_len, 3, addr, len, hash);
149 memcpy(&buf[pos], hash, plen);
172 * sha256_vector - SHA256 hash for data vector
176 * @mac: Buffer for the hash
273 /* Initialize the hash state */
289 Process a block of memory though the hash
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
sha256.c 2 * SHA-256 hash implementation and interface functions
29 * @mac: Buffer for the hash (32 bytes)
100 * @mac: Buffer for the hash (20 bytes)
127 u8 hash[SHA256_MAC_LEN]; local
151 hmac_sha256_vector(key, key_len, 4, addr, len, hash);
152 os_memcpy(&buf[pos], hash, plen);
175 * sha256_vector - SHA256 hash for data vector
179 * @mac: Buffer for the hash
276 /* Initialize the hash state */
292 Process a block of memory though the hash
    [all...]

Completed in 706 milliseconds

<<11121314151617181920>>