Home
last modified time | relevance | path

Searched refs:hashKey (Results 1 – 25 of 762) sorted by relevance

12345678910>>...31

/dports/www/typo3-11/typo3_src-11.5.7/vendor/symfony/lock/Store/
H A DInMemoryStore.php31 $hashKey = (string) $key;
33 if (isset($this->locks[$hashKey])) {
43 if (isset($this->readLocks[$hashKey][$token]) && 1 === \count($this->readLocks[$hashKey])) {
45 $this->locks[$hashKey] = $token;
54 $this->locks[$hashKey] = $token;
59 $hashKey = (string) $key;
75 unset($this->locks[$hashKey]);
88 $hashKey = (string) $key;
93 unset($this->locks[$hashKey]);
99 $hashKey = (string) $key;
[all …]
/dports/games/passage/Passage_v4_UnixSource/gamma256/gameSource/
H A DHashTable.h78 if( hashKey < 0 ) { in computeHash()
79 hashKey += mSize; in computeHash()
81 return hashKey; in computeHash()
91 if( mSetFlags[ hashKey ] in lookup()
93 mKeysA[ hashKey ] == inKeyA in lookup()
95 mKeysB[ hashKey ] == inKeyB ) { in lookup()
109 return mTable[ hashKey ]; in lookup()
119 mSetFlags[ hashKey ] = true; in insert()
120 mKeysA[ hashKey ] = inKeyA; in insert()
121 mKeysB[ hashKey ] = inKeyB; in insert()
[all …]
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/3d/common/iStdLib/
H A DHashTable.h319 CHashKey hashKey( key );
344 CHashKey hashKey( key );
369 CHashKey hashKey( key );
461 const CHashKey &hashKey,
550 const CHashKey &hashKey,
600 const CHashKey &hashKey,
821 const CHashKey &hashKey,
1197 const CHashKey &hashKey,
1200 m_HashKey( hashKey )
1591 const CHashKey &hashKey,
[all …]
/dports/games/dhewm3/dhewm3-1.5.1/neo/idlib/containers/
H A DVectorSet.h119 int i, j, k, hashKey, partialHashKey[dimension]; in FindVector() local
128 hashKey = 0; in FindVector()
130 hashKey *= boxHashSize; in FindVector()
147 hashKey = 0; in FindVector()
149 hashKey *= boxHashSize; in FindVector()
153 hash.Add( hashKey, idList<type>::Num() ); in FindVector()
244 hashKey = 0; in FindVector()
246 hashKey *= boxHashSize; in FindVector()
263 hashKey = 0; in FindVector()
265 hashKey *= boxHashSize; in FindVector()
[all …]
H A DPlaneSet.h56 int i, border, hashKey; in FindPlane() local
60 hashKey = (int)( idMath::Fabs( plane.Dist() ) * 0.125f ); in FindPlane()
62 for ( i = hash.First( hashKey + border ); i >= 0; i = hash.Next( i ) ) { in FindPlane()
71 hash.Add( hashKey, Num()-1 ); in FindPlane()
73 hash.Add( hashKey, Num()-1 ); in FindPlane()
78 hash.Add( hashKey, Num()-1 ); in FindPlane()
80 hash.Add( hashKey, Num()-1 ); in FindPlane()
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/Container/
H A DHashMap.h330 unsigned hashKey = Hash(key);
342 unsigned hashKey = Hash(key);
407 unsigned hashKey = Hash(key); in Erase() local
529 unsigned hashKey = Hash(key); in Find() local
543 unsigned hashKey = Hash(key); in Find() local
557 unsigned hashKey = Hash(key); in Contains() local
566 unsigned hashKey = Hash(key); in TryGetValue() local
663 unsigned hashKey = Hash(key);
677 newNode->down_ = Ptrs()[hashKey];
678 Ptrs()[hashKey] = newNode;
[all …]
H A DHashSet.h287 unsigned hashKey = Hash(key); in Insert() local
294 newNode->down_ = Ptrs()[hashKey]; in Insert()
295 Ptrs()[hashKey] = newNode; in Insert()
337 unsigned hashKey = Hash(key); in Erase() local
347 Ptrs()[hashKey] = node->down_; in Erase()
377 Ptrs()[hashKey] = node->down_; in Erase()
459 unsigned hashKey = Hash(key); in Find() local
473 unsigned hashKey = Hash(key); in Find() local
487 unsigned hashKey = Hash(key); in Contains() local
622 unsigned hashKey = Hash(*it); in Rehash() local
[all …]
/dports/security/snort/snort-2.9.18/src/preprocessors/Session/
H A Dsession_expect.c201 ExpectHashKey hashKey; in StreamExpectAddChannelPreassignCallback() local
261 hashKey.port1 = cliPort; in StreamExpectAddChannelPreassignCallback()
263 hashKey.port2 = srvPort; in StreamExpectAddChannelPreassignCallback()
272 hashKey.port1 = srvPort; in StreamExpectAddChannelPreassignCallback()
597 ExpectHashKey hashKey; in StreamExpectIsExpected() local
636 hashKey.port1 = p->dp; in StreamExpectIsExpected()
637 hashKey.port2 = 0; in StreamExpectIsExpected()
650 hashKey.port1 = 0; in StreamExpectIsExpected()
651 hashKey.port2 = p->dp; in StreamExpectIsExpected()
672 hashKey.port1 = port1; in StreamExpectIsExpected()
[all …]
/dports/deskutils/myitcrm/MyITCRM-0.2.9.3/include/
H A Dauth.php11 var $hashKey; variable in Auth
14 function Auth($db, $redirect, $hashKey, $md5 = true) argument
18 $this->hashKey = $hashKey;
85 $hashKey = md5($this->hashKey . $login . $password);
86 $this->session->set('login_hash', $hashKey);
115 $hashKey = $this->session->get('login_hash');
116 if (md5($this->hashKey . $login . $password) != $hashKey)
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/libdoomsday/src/filesys/
H A Dfs_scheme.cpp120 for (hash_type hashKey = 0; hashKey < hash_range; ++hashKey) in clear() local
122 while (buckets[hashKey].first) in clear()
125 delete buckets[hashKey].first; in clear()
126 buckets[hashKey].first = nextNode; in clear()
128 buckets[hashKey].last = 0; in clear()
134 Node *node = buckets[hashKey].first; in findDirectoryNode()
144 hash_type hashKey = 0; in hashName() local
151 case 0: hashKey ^= unicode; ++op; break; in hashName()
152 case 1: hashKey *= unicode; ++op; break; in hashName()
153 case 2: hashKey -= unicode; op=0; break; in hashName()
[all …]
/dports/www/zend-framework/ZendFramework-2.4.13/library/Zend/Di/
H A DInstanceManager.php113 $hashKey = $this->createHashForKeys($classOrAlias, array_keys($params));
114 if (isset($this->sharedInstancesWithParams['hashShort'][$hashKey])) {
117 return ($returnFastHashLookupKey) ? $hashKey . '/' . $hashValue : true;
135 $hashKey = $this->createHashForKeys($classOrAlias, array_keys($params));
138 if (!isset($this->sharedInstancesWithParams[$hashKey])
139 || !is_array($this->sharedInstancesWithParams[$hashKey])) {
140 $this->sharedInstancesWithParams[$hashKey] = array();
143 $this->sharedInstancesWithParams['hashShort'][$hashKey] = true;
144 $this->sharedInstancesWithParams['hashLong'][$hashKey . '/' . $hashValue] = $instance;
162 $hashKey = $this->createHashForKeys($classOrAlias, array_keys($params));
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/grafana/loki/pkg/storage/chunk/
H A Dschema.go172 bucket.hashKey,
393 HashValue: bucket.hashKey + ":" + metricName,
455 HashValue: bucket.hashKey + ":" + metricName,
485 HashValue: bucket.hashKey + ":" + metricName,
509 HashValue: bucket.hashKey + ":" + metricName,
550 HashValue: bucket.hashKey + ":" + metricName,
574 HashValue: bucket.hashKey + ":" + metricName,
612 HashValue: bucket.hashKey + ":" + metricName,
637 HashValue: bucket.hashKey + ":" + metricName,
680 HashValue: bucket.hashKey + ":" + metricName,
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/cortexproject/cortex/pkg/chunk/
H A Dschema.go170 bucket.hashKey,
392 HashValue: bucket.hashKey + ":" + metricName,
454 HashValue: bucket.hashKey + ":" + metricName,
484 HashValue: bucket.hashKey + ":" + metricName,
508 HashValue: bucket.hashKey + ":" + metricName,
549 HashValue: bucket.hashKey + ":" + metricName,
573 HashValue: bucket.hashKey + ":" + metricName,
611 HashValue: bucket.hashKey + ":" + metricName,
636 HashValue: bucket.hashKey + ":" + metricName,
679 HashValue: bucket.hashKey + ":" + metricName,
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/grafana/loki/vendor/github.com/cortexproject/cortex/pkg/chunk/
H A Dschema.go170 bucket.hashKey,
392 HashValue: bucket.hashKey + ":" + metricName,
454 HashValue: bucket.hashKey + ":" + metricName,
484 HashValue: bucket.hashKey + ":" + metricName,
508 HashValue: bucket.hashKey + ":" + metricName,
549 HashValue: bucket.hashKey + ":" + metricName,
573 HashValue: bucket.hashKey + ":" + metricName,
611 HashValue: bucket.hashKey + ":" + metricName,
636 HashValue: bucket.hashKey + ":" + metricName,
679 HashValue: bucket.hashKey + ":" + metricName,
[all …]
/dports/www/mod_php81/php-8.1.1/ext/intl/collator/
H A Dcollator_convert.c36 HashTable* hash, zval *hashData, zend_string *hashKey, zend_ulong hashIndex, in collator_convert_hash_item_from_utf8_to_utf16() argument
64 if( hashKey) in collator_convert_hash_item_from_utf8_to_utf16()
66 zend_hash_update( hash, hashKey, &znew_val); in collator_convert_hash_item_from_utf8_to_utf16()
101 if( hashKey ) in collator_convert_hash_item_from_utf16_to_utf8()
103 zend_hash_update( hash, hashKey, &znew_val); in collator_convert_hash_item_from_utf16_to_utf8()
119 zend_string *hashKey; in collator_convert_hash_from_utf8_to_utf16() local
121 ZEND_HASH_FOREACH_KEY_VAL(hash, hashIndex, hashKey, hashData) { in collator_convert_hash_from_utf8_to_utf16()
124 hash, hashData, hashKey, hashIndex, status ); in collator_convert_hash_from_utf8_to_utf16()
137 zend_string *hashKey; in collator_convert_hash_from_utf16_to_utf8() local
140 ZEND_HASH_FOREACH_KEY_VAL(hash, hashIndex, hashKey, hashData) { in collator_convert_hash_from_utf16_to_utf8()
[all …]
/dports/lang/php81/php-8.1.1/ext/intl/collator/
H A Dcollator_convert.c36 HashTable* hash, zval *hashData, zend_string *hashKey, zend_ulong hashIndex, in collator_convert_hash_item_from_utf8_to_utf16() argument
64 if( hashKey) in collator_convert_hash_item_from_utf8_to_utf16()
66 zend_hash_update( hash, hashKey, &znew_val); in collator_convert_hash_item_from_utf8_to_utf16()
101 if( hashKey ) in collator_convert_hash_item_from_utf16_to_utf8()
103 zend_hash_update( hash, hashKey, &znew_val); in collator_convert_hash_item_from_utf16_to_utf8()
119 zend_string *hashKey; in collator_convert_hash_from_utf8_to_utf16() local
121 ZEND_HASH_FOREACH_KEY_VAL(hash, hashIndex, hashKey, hashData) { in collator_convert_hash_from_utf8_to_utf16()
124 hash, hashData, hashKey, hashIndex, status ); in collator_convert_hash_from_utf8_to_utf16()
137 zend_string *hashKey; in collator_convert_hash_from_utf16_to_utf8() local
140 ZEND_HASH_FOREACH_KEY_VAL(hash, hashIndex, hashKey, hashData) { in collator_convert_hash_from_utf16_to_utf8()
[all …]
/dports/lang/php80/php-8.0.15/ext/intl/collator/
H A Dcollator_convert.c36 HashTable* hash, zval *hashData, zend_string *hashKey, zend_ulong hashIndex, in collator_convert_hash_item_from_utf8_to_utf16() argument
64 if( hashKey) in collator_convert_hash_item_from_utf8_to_utf16()
66 zend_hash_update( hash, hashKey, &znew_val); in collator_convert_hash_item_from_utf8_to_utf16()
101 if( hashKey ) in collator_convert_hash_item_from_utf16_to_utf8()
103 zend_hash_update( hash, hashKey, &znew_val); in collator_convert_hash_item_from_utf16_to_utf8()
119 zend_string *hashKey; in collator_convert_hash_from_utf8_to_utf16() local
121 ZEND_HASH_FOREACH_KEY_VAL(hash, hashIndex, hashKey, hashData) { in collator_convert_hash_from_utf8_to_utf16()
124 hash, hashData, hashKey, hashIndex, status ); in collator_convert_hash_from_utf8_to_utf16()
137 zend_string *hashKey; in collator_convert_hash_from_utf16_to_utf8() local
140 ZEND_HASH_FOREACH_KEY_VAL(hash, hashIndex, hashKey, hashData) { in collator_convert_hash_from_utf16_to_utf8()
[all …]
/dports/devel/php81-intl/php-8.1.1/ext/intl/collator/
H A Dcollator_convert.c36 HashTable* hash, zval *hashData, zend_string *hashKey, zend_ulong hashIndex, in collator_convert_hash_item_from_utf8_to_utf16() argument
64 if( hashKey) in collator_convert_hash_item_from_utf8_to_utf16()
66 zend_hash_update( hash, hashKey, &znew_val); in collator_convert_hash_item_from_utf8_to_utf16()
101 if( hashKey ) in collator_convert_hash_item_from_utf16_to_utf8()
103 zend_hash_update( hash, hashKey, &znew_val); in collator_convert_hash_item_from_utf16_to_utf8()
119 zend_string *hashKey; in collator_convert_hash_from_utf8_to_utf16() local
121 ZEND_HASH_FOREACH_KEY_VAL(hash, hashIndex, hashKey, hashData) { in collator_convert_hash_from_utf8_to_utf16()
124 hash, hashData, hashKey, hashIndex, status ); in collator_convert_hash_from_utf8_to_utf16()
137 zend_string *hashKey; in collator_convert_hash_from_utf16_to_utf8() local
140 ZEND_HASH_FOREACH_KEY_VAL(hash, hashIndex, hashKey, hashData) { in collator_convert_hash_from_utf16_to_utf8()
[all …]
/dports/devel/php80-intl/php-8.0.15/ext/intl/collator/
H A Dcollator_convert.c36 HashTable* hash, zval *hashData, zend_string *hashKey, zend_ulong hashIndex, in collator_convert_hash_item_from_utf8_to_utf16() argument
64 if( hashKey) in collator_convert_hash_item_from_utf8_to_utf16()
66 zend_hash_update( hash, hashKey, &znew_val); in collator_convert_hash_item_from_utf8_to_utf16()
101 if( hashKey ) in collator_convert_hash_item_from_utf16_to_utf8()
103 zend_hash_update( hash, hashKey, &znew_val); in collator_convert_hash_item_from_utf16_to_utf8()
119 zend_string *hashKey; in collator_convert_hash_from_utf8_to_utf16() local
121 ZEND_HASH_FOREACH_KEY_VAL(hash, hashIndex, hashKey, hashData) { in collator_convert_hash_from_utf8_to_utf16()
124 hash, hashData, hashKey, hashIndex, status ); in collator_convert_hash_from_utf8_to_utf16()
137 zend_string *hashKey; in collator_convert_hash_from_utf16_to_utf8() local
140 ZEND_HASH_FOREACH_KEY_VAL(hash, hashIndex, hashKey, hashData) { in collator_convert_hash_from_utf16_to_utf8()
[all …]
/dports/www/mod_php80/php-8.0.15/ext/intl/collator/
H A Dcollator_convert.c36 HashTable* hash, zval *hashData, zend_string *hashKey, zend_ulong hashIndex, in collator_convert_hash_item_from_utf8_to_utf16() argument
64 if( hashKey) in collator_convert_hash_item_from_utf8_to_utf16()
66 zend_hash_update( hash, hashKey, &znew_val); in collator_convert_hash_item_from_utf8_to_utf16()
101 if( hashKey ) in collator_convert_hash_item_from_utf16_to_utf8()
103 zend_hash_update( hash, hashKey, &znew_val); in collator_convert_hash_item_from_utf16_to_utf8()
119 zend_string *hashKey; in collator_convert_hash_from_utf8_to_utf16() local
121 ZEND_HASH_FOREACH_KEY_VAL(hash, hashIndex, hashKey, hashData) { in collator_convert_hash_from_utf8_to_utf16()
124 hash, hashData, hashKey, hashIndex, status ); in collator_convert_hash_from_utf8_to_utf16()
137 zend_string *hashKey; in collator_convert_hash_from_utf16_to_utf8() local
140 ZEND_HASH_FOREACH_KEY_VAL(hash, hashIndex, hashKey, hashData) { in collator_convert_hash_from_utf16_to_utf8()
[all …]
/dports/security/snort3/snort3-3.1.19.0/src/file_api/
H A Dfile_cache.cc168 HashNode* hash_node = fileHash->find_node(&hashKey); in find()
202 FileHashKey hashKey; in get_file() local
203 hashKey.dip = flow->client_ip; in get_file()
204 hashKey.sip = flow->server_ip; in get_file()
205 hashKey.dgroup = flow->client_group; in get_file()
206 hashKey.sgroup = flow->server_group; in get_file()
207 hashKey.file_id = file_id; in get_file()
208 hashKey.asid = flow->key->addressSpaceId; in get_file()
209 hashKey.padding[0] = hashKey.padding[1] = hashKey.padding[2] = 0; in get_file()
210 FileContext* file = find(hashKey, timeout); in get_file()
[all …]
/dports/lang/php73/php-7.3.33/ext/intl/collator/
H A Dcollator_convert.c38 HashTable* hash, zval *hashData, zend_string *hashKey, zend_ulong hashIndex, in collator_convert_hash_item_from_utf8_to_utf16() argument
66 if( hashKey) in collator_convert_hash_item_from_utf8_to_utf16()
68 zend_hash_update( hash, hashKey, &znew_val); in collator_convert_hash_item_from_utf8_to_utf16()
103 if( hashKey ) in collator_convert_hash_item_from_utf16_to_utf8()
105 zend_hash_update( hash, hashKey, &znew_val); in collator_convert_hash_item_from_utf16_to_utf8()
121 zend_string *hashKey; in collator_convert_hash_from_utf8_to_utf16() local
123 ZEND_HASH_FOREACH_KEY_VAL(hash, hashIndex, hashKey, hashData) { in collator_convert_hash_from_utf8_to_utf16()
126 hash, hashData, hashKey, hashIndex, status ); in collator_convert_hash_from_utf8_to_utf16()
139 zend_string *hashKey; in collator_convert_hash_from_utf16_to_utf8() local
142 ZEND_HASH_FOREACH_KEY_VAL(hash, hashIndex, hashKey, hashData) { in collator_convert_hash_from_utf16_to_utf8()
[all …]
/dports/lang/php74/php-7.4.27/ext/intl/collator/
H A Dcollator_convert.c38 HashTable* hash, zval *hashData, zend_string *hashKey, zend_ulong hashIndex, in collator_convert_hash_item_from_utf8_to_utf16() argument
66 if( hashKey) in collator_convert_hash_item_from_utf8_to_utf16()
68 zend_hash_update( hash, hashKey, &znew_val); in collator_convert_hash_item_from_utf8_to_utf16()
103 if( hashKey ) in collator_convert_hash_item_from_utf16_to_utf8()
105 zend_hash_update( hash, hashKey, &znew_val); in collator_convert_hash_item_from_utf16_to_utf8()
121 zend_string *hashKey; in collator_convert_hash_from_utf8_to_utf16() local
123 ZEND_HASH_FOREACH_KEY_VAL(hash, hashIndex, hashKey, hashData) { in collator_convert_hash_from_utf8_to_utf16()
126 hash, hashData, hashKey, hashIndex, status ); in collator_convert_hash_from_utf8_to_utf16()
139 zend_string *hashKey; in collator_convert_hash_from_utf16_to_utf8() local
142 ZEND_HASH_FOREACH_KEY_VAL(hash, hashIndex, hashKey, hashData) { in collator_convert_hash_from_utf16_to_utf8()
[all …]
/dports/devel/php74-intl/php-7.4.27/ext/intl/collator/
H A Dcollator_convert.c38 HashTable* hash, zval *hashData, zend_string *hashKey, zend_ulong hashIndex, in collator_convert_hash_item_from_utf8_to_utf16() argument
66 if( hashKey) in collator_convert_hash_item_from_utf8_to_utf16()
68 zend_hash_update( hash, hashKey, &znew_val); in collator_convert_hash_item_from_utf8_to_utf16()
103 if( hashKey ) in collator_convert_hash_item_from_utf16_to_utf8()
105 zend_hash_update( hash, hashKey, &znew_val); in collator_convert_hash_item_from_utf16_to_utf8()
121 zend_string *hashKey; in collator_convert_hash_from_utf8_to_utf16() local
123 ZEND_HASH_FOREACH_KEY_VAL(hash, hashIndex, hashKey, hashData) { in collator_convert_hash_from_utf8_to_utf16()
126 hash, hashData, hashKey, hashIndex, status ); in collator_convert_hash_from_utf8_to_utf16()
139 zend_string *hashKey; in collator_convert_hash_from_utf16_to_utf8() local
142 ZEND_HASH_FOREACH_KEY_VAL(hash, hashIndex, hashKey, hashData) { in collator_convert_hash_from_utf16_to_utf8()
[all …]
/dports/devel/php73-intl/php-7.3.33/ext/intl/collator/
H A Dcollator_convert.c38 HashTable* hash, zval *hashData, zend_string *hashKey, zend_ulong hashIndex, in collator_convert_hash_item_from_utf8_to_utf16() argument
66 if( hashKey) in collator_convert_hash_item_from_utf8_to_utf16()
68 zend_hash_update( hash, hashKey, &znew_val); in collator_convert_hash_item_from_utf8_to_utf16()
103 if( hashKey ) in collator_convert_hash_item_from_utf16_to_utf8()
105 zend_hash_update( hash, hashKey, &znew_val); in collator_convert_hash_item_from_utf16_to_utf8()
121 zend_string *hashKey; in collator_convert_hash_from_utf8_to_utf16() local
123 ZEND_HASH_FOREACH_KEY_VAL(hash, hashIndex, hashKey, hashData) { in collator_convert_hash_from_utf8_to_utf16()
126 hash, hashData, hashKey, hashIndex, status ); in collator_convert_hash_from_utf8_to_utf16()
139 zend_string *hashKey; in collator_convert_hash_from_utf16_to_utf8() local
142 ZEND_HASH_FOREACH_KEY_VAL(hash, hashIndex, hashKey, hashData) { in collator_convert_hash_from_utf16_to_utf8()
[all …]

12345678910>>...31