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

<<11121314151617181920>>

  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/lib/
libdl.so 
libjnigraphics.so 
  /prebuilts/ndk/8/platforms/android-3/arch-arm/usr/lib/
libdl.so 
  /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/lib/
libdl.so 
  /prebuilts/ndk/8/platforms/android-5/arch-arm/usr/lib/
libdl.so 
  /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/lib/
libjnigraphics.so 
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/lib/
libjnigraphics.so 
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/lib/
libdl.so 
libjnigraphics.so 
  /prebuilts/ndk/9/platforms/android-14/arch-arm/usr/lib/
libjnigraphics.so 
  /prebuilts/ndk/9/platforms/android-14/arch-x86/usr/lib/
libjnigraphics.so 
  /prebuilts/ndk/9/platforms/android-18/arch-arm/usr/lib/
libjnigraphics.so 
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/lib/
libjnigraphics.so 
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/lib/
libjnigraphics.so 
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/lib/
libjnigraphics.so 
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/lib/
libjnigraphics.so 
  /external/oprofile/daemon/
opd_sfile.h 35 * cg files are stored in the hash.
38 /** hash value for this sfile */
57 /** hash table link */
58 struct list_head hash; member in struct:sfile
67 /** hash table of opened cg sample files */
75 /** next in the hash slot */
76 struct list_head hash; member in struct:cg_entry
  /external/guava/guava-tests/test/com/google/common/collect/
MapMakerInternalMapTest.java 394 int hash = map.hash(one); local
395 ReferenceEntry<Object, Object> entry = segment.getEntry(one, hash);
441 int hashOne = map.hash(keyOne);
454 int hashTwo = map.hash(keyTwo);
473 int hashOne = map.hash(keyOne);
479 int hashTwo = map.hash(keyTwo);
523 int hash = map.hash(key); local
526 int index = hash & (table.length() - 1)
598 int hash = map.hash(key); local
642 int hash = map.hash(key); local
681 int hash = map.hash(key); local
713 int hash = map.hash(key); local
748 int hash = map.hash(key); local
781 int hash = map.hash(key); local
820 int hash = map.hash(key); local
873 int hash = map.hash(key); local
1006 int hash = map.hash(key); local
1064 int hash = map.hash(key); local
1096 int hash = map.hash(key); local
1130 int hash = map.hash(key); local
1177 int hash = map.hash(key); local
1292 int hash = map.hash(key); local
1333 int hash = map.hash(key); local
1375 int hash = map.hash(key); local
1476 int hash = map.hash(key); local
1730 private final int hash; field in class:MapMakerInternalMapTest.DummyEntry
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_surfaces.c 42 if(!us->u.hash)
43 us->u.hash = cso_hash_create();
45 ps = cso_hash_iter_data(cso_hash_find(us->u.hash, (layer << 8) | level));
71 cso_hash_insert(us->u.hash, (layer << 8) | level, ps);
85 cso_hash_erase(us->u.hash, cso_hash_find(us->u.hash, (ps->u.tex.first_layer << 8) | ps->u.tex.level));
96 if(us->u.hash)
99 iter = cso_hash_first_node(us->u.hash);
105 cso_hash_delete(us->u.hash);
106 us->u.hash = NULL
    [all...]
  /external/dropbear/libtomcrypt/src/pk/dsa/
dsa_verify_hash.c 25 @param hash The hash that was signed
26 @param hashlen The length of the hash that was signed
32 const unsigned char *hash, unsigned long hashlen,
61 if ((err = mp_read_unsigned_bin(u1, (unsigned char *)hash, hashlen)) != CRYPT_OK) { goto error; }
88 @param hash The hash that was signed
89 @param hashlen The length of the hash that was signed
95 const unsigned char *hash, unsigned long hashlen,
114 err = dsa_verify_hash_raw(r, s, hash, hashlen, stat, key)
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/dh/
DhExchange.java 128 HashForSSH2Types hash = new HashForSSH2Types("SHA1"); local
135 hash.updateByteString(clientversion);
136 hash.updateByteString(serverversion);
137 hash.updateByteString(clientKexPayload);
138 hash.updateByteString(serverKexPayload);
139 hash.updateByteString(hostKey);
140 hash.updateBigInt(e);
141 hash.updateBigInt(f);
142 hash.updateBigInt(k);
144 return hash.getDigest()
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_surfaces.c 42 if(!us->u.hash)
43 us->u.hash = cso_hash_create();
45 ps = cso_hash_iter_data(cso_hash_find(us->u.hash, (layer << 8) | level));
71 cso_hash_insert(us->u.hash, (layer << 8) | level, ps);
85 cso_hash_erase(us->u.hash, cso_hash_find(us->u.hash, (ps->u.tex.first_layer << 8) | ps->u.tex.level));
96 if(us->u.hash)
99 iter = cso_hash_first_node(us->u.hash);
105 cso_hash_delete(us->u.hash);
106 us->u.hash = NULL
    [all...]
  /frameworks/compile/mclinker/include/mcld/ADT/
HashBase.h 27 * \brief HashBucket is an entry in the hash table.
48 * HashTableImpl uses open-addressing, linear probing hash table.
49 * linear probing hash table obviously has high performance when the
52 * than the size of the hash table.
62 * example, on-device linkers needs a more light-weight hash function
64 * change the hash functions.
96 hasher& hash() function in class:mcld::HashTableImpl
99 const hasher& hash() const function in class:mcld::HashTableImpl
103 /// initialize the hash table.
119 /// doRehash - re-new the hash table, and rehash all elements into the new bucket
    [all...]
  /frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
stochastic_linear_ranker.cpp 24 template<class Key, class Hash>
25 void StochasticLinearRanker<Key, Hash>::UpdateSubGradient(
26 const SparseWeightVector<Key, Hash> &positive,
27 const SparseWeightVector<Key, Hash> &negative,
32 SparseWeightVector<Key, Hash> gradient;
61 template<class Key, class Hash>
62 int StochasticLinearRanker<Key, Hash>::UpdateClassifier(
63 const SparseWeightVector<Key, Hash> &positive,
64 const SparseWeightVector<Key, Hash> &negative) {
67 SparseWeightVector<Key, Hash> weight_backup
    [all...]
  /external/chromium_org/chrome/common/mac/
objc_method_swizzle_unittest.mm 31 - (NSUInteger)hash;
35 - (NSUInteger)hash {
36 return [super hash];
47 EXPECT_EQ(class_getInstanceMethod([NSObject class], @selector(hash)),
48 GetImplementedInstanceMethod([NSObject class], @selector(hash)));

Completed in 971 milliseconds

<<11121314151617181920>>