/external/openfst/src/include/fst/ |
bi-table.h | 141 friend class HashFunc; 208 class HashFunc { 210 HashFunc(const CompactHashBiTable &ht) : ht_(&ht) {} 239 typedef HashSet<I, HashFunc, HashEqual, HS> KeyHashSet; 250 HashFunc compact_hash_func_; 334 friend class HashFunc; 418 class HashFunc { 420 HashFunc(const VectorHashBiTable &ht) : ht_(&ht) {} 448 typedef HashSet<I, HashFunc, HashEqual, HS> KeyHashSet; 466 HashFunc hash_func_ [all...] |
/art/compiler/utils/ |
dedupe_set.h | 34 // A set of Keys that support a HashFunc returning HashType. Used to find duplicates of Key in the 37 template <typename InKey, typename StoreKey, typename HashType, typename HashFunc, 79 HashType raw_hash = HashFunc()(key);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_hmac.py | 79 def _rfc4231_test_cases(self, hashfunc): 81 h = hmac.HMAC(key, data, digestmod=hashfunc) 82 self.assertEqual(h.hexdigest().lower(), hexdigests[hashfunc])
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_hmac.py | 79 def _rfc4231_test_cases(self, hashfunc): 81 h = hmac.HMAC(key, data, digestmod=hashfunc) 82 self.assertEqual(h.hexdigest().lower(), hexdigests[hashfunc])
|
/external/deqp/framework/delibs/depool/ |
dePoolHash.h | 192 * \param HASHFUNC Function used for hashing the key. 200 #define DE_IMPLEMENT_POOL_HASH(TYPENAME, KEYTYPE, VALUETYPE, HASHFUNC, CMPFUNC) \ 301 int slotNdx = HASHFUNC(key) & (hash->slotTableSize - 1); \ 331 slotNdx = HASHFUNC(key) & (hash->slotTableSize - 1); \ 374 slotNdx = HASHFUNC(key) & (hash->slotTableSize - 1); \
|
dePoolSet.h | 199 * \param HASHFUNC Function used for hashing the key. 207 #define DE_IMPLEMENT_POOL_SET(TYPENAME, KEYTYPE, HASHFUNC, CMPFUNC) \ 309 int slotNdx = HASHFUNC(key) & (set->slotTableSize - 1); \ 340 slotNdx = HASHFUNC(key) & (set->slotTableSize - 1); \ 382 slotNdx = HASHFUNC(key) & (set->slotTableSize - 1); \
|
dePoolMultiSet.h | 113 * \param HASHFUNC Function used for hashing the key. 121 #define DE_IMPLEMENT_POOL_MULTISET(TYPENAME, KEYTYPE, HASHFUNC, CMPFUNC) \ 123 DE_IMPLEMENT_POOL_HASH(TYPENAME##Hash, KEYTYPE, int, HASHFUNC, CMPFUNC); \
|
dePoolHashArray.h | 115 * \param HASHFUNC Function used for hashing the key.
|
dePoolHashSet.h | 156 * \param HASHFUNC Function used for hashing the key.
|
/external/boringssl/src/ssl/test/runner/ |
key_agreement.go | 64 digest, hashFunc, err := hashForServerKeyExchange(signatureRSA, tls12HashId, ka.version, clientHello.random, hello.random, serverRSAParams) 72 sig, err := rsa.SignPKCS1v15(config.rand(), privKey, hashFunc, digest) 192 // and the identifier of the hash function used. The hashFunc argument is only 194 func hashForServerKeyExchange(sigType, hashFunc uint8, version uint16, slices ...[]byte) ([]byte, crypto.Hash, error) { 196 hash, err := lookupTLSHash(hashFunc) 288 digest, hashFunc, err := hashForServerKeyExchange(ka.sigType, tls12HashId, ka.version, clientHello.random, hello.random, params) 317 sig, err = rsa.SignPKCS1v15(config.rand(), privKey, hashFunc, digest) 377 digest, hashFunc, err := hashForServerKeyExchange(ka.sigType, tls12HashId, ka.version, clientHello.random, serverHello.random, params) 402 if err := rsa.VerifyPKCS1v15(pubKey, hashFunc, digest, sig); err != nil {
|
prf.go | 70 func prf12(hashFunc func() hash.Hash) func(result, secret, label, seed []byte) { 76 pHash(result, secret, labelAndSeed, hashFunc)
|
handshake_server.go | 712 var hashFunc crypto.Hash 713 digest, hashFunc, err = hs.finishedHash.hashForClientCertificate(signatureAndHash, hs.masterSecret) 717 err = rsa.VerifyPKCS1v15(key, hashFunc, digest, certVerify.signature)
|
handshake_client.go | 605 digest, hashFunc, err := hs.finishedHash.hashForClientCertificate(certVerify.signatureAndHash, hs.masterSecret) 619 signed, err = rsa.SignPKCS1v15(c.config.rand(), key, hashFunc, digest)
|
/external/boringssl/src/crypto/rsa/ |
internal.h | 131 X509_ALGOR *hashFunc;
|
rsa_asn1.c | 108 ASN1_EXP_OPT(RSA_OAEP_PARAMS, hashFunc, X509_ALGOR, 0),
|
/external/javassist/src/main/javassist/bytecode/ |
ConstPool.java | 47 private static int hashFunc(int a, int b) { 760 int h = hashFunc(name, type); 799 int h = hashFunc(classInfo, nameAndTypeInfo); 838 int h = hashFunc(classInfo, nameAndTypeInfo); 881 int h = hashFunc(classInfo, nameAndTypeInfo); [all...] |
/prebuilts/misc/common/swig/include/2.0.11/python/ |
pyopers.swg | 45 %feature("python:slot", "tp_hash", functype="hashfunc") MyClass::myHashFunc;
|
pyrun.swg | 752 (hashfunc)0, /* tp_hash */ 931 (hashfunc)0, /* tp_hash */ [all...] |
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
object.h | 314 typedef long (*hashfunc)(PyObject *); typedef 346 hashfunc tp_hash; [all...] |
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
object.h | 314 typedef long (*hashfunc)(PyObject *); typedef 346 hashfunc tp_hash; [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/ |
libpython2.7.a | [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/config/ |
libpython2.7.a | [all...] |