Home
last modified time | relevance | path

Searched refs:hashedValue (Results 1 – 24 of 24) sorted by relevance

/dports/net-mgmt/librenms/librenms-vendor-21.5.1/laravel/framework/src/Illuminate/Hashing/
H A DHashManager.php43 * @param string $hashedValue
46 public function info($hashedValue) argument
48 return $this->driver()->info($hashedValue);
67 * @param string $hashedValue
71 public function check($value, $hashedValue, array $options = []) argument
73 return $this->driver()->check($value, $hashedValue, $options);
79 * @param string $hashedValue
83 public function needsRehash($hashedValue, array $options = []) argument
85 return $this->driver()->needsRehash($hashedValue, $options);
H A DAbstractHasher.php10 * @param string $hashedValue
13 public function info($hashedValue) argument
15 return password_get_info($hashedValue);
22 * @param string $hashedValue
26 public function check($value, $hashedValue, array $options = []) argument
28 if (strlen($hashedValue) === 0) {
32 return password_verify($value, $hashedValue);
H A DBcryptHasher.php62 * @param string $hashedValue
68 public function check($value, $hashedValue, array $options = []) argument
70 if ($this->verifyAlgorithm && $this->info($hashedValue)['algoName'] !== 'bcrypt') {
74 return parent::check($value, $hashedValue, $options);
80 * @param string $hashedValue
84 public function needsRehash($hashedValue, array $options = []) argument
86 return password_needs_rehash($hashedValue, PASSWORD_BCRYPT, [
H A DArgon2IdHasher.php13 * @param string $hashedValue
19 public function check($value, $hashedValue, array $options = []) argument
21 if ($this->verifyAlgorithm && $this->info($hashedValue)['algoName'] !== 'argon2id') {
25 if (strlen($hashedValue) === 0) {
29 return password_verify($value, $hashedValue);
H A DArgonHasher.php90 * @param string $hashedValue
96 public function check($value, $hashedValue, array $options = []) argument
98 if ($this->verifyAlgorithm && $this->info($hashedValue)['algoName'] !== 'argon2i') {
102 return parent::check($value, $hashedValue, $options);
108 * @param string $hashedValue
112 public function needsRehash($hashedValue, array $options = []) argument
114 return password_needs_rehash($hashedValue, $this->algorithm(), [
/dports/net-mgmt/librenms/librenms-vendor-21.5.1/laravel/framework/src/Illuminate/Contracts/Hashing/
H A DHasher.php10 * @param string $hashedValue
13 public function info($hashedValue); argument
28 * @param string $hashedValue
32 public function check($value, $hashedValue, array $options = []); argument
37 * @param string $hashedValue
41 public function needsRehash($hashedValue, array $options = []); argument
/dports/www/webtrees20/webtrees-2.0.19/webtrees/vendor/illuminate/contracts/Hashing/
H A DHasher.php10 * @param string $hashedValue
13 public function info($hashedValue); argument
28 * @param string $hashedValue
32 public function check($value, $hashedValue, array $options = []); argument
37 * @param string $hashedValue
41 public function needsRehash($hashedValue, array $options = []); argument
/dports/devel/arduino-ctags/ctags-5.8-arduino11/
H A Dkeyword.c67 static hashEntry *getHashTableEntry (unsigned long hashedValue) in getHashTableEntry() argument
72 Assert (hashedValue < TableSize); in getHashTableEntry()
73 entry = table [hashedValue]; in getHashTableEntry()
125 const unsigned long hashedValue = hashValue (string); in addKeyword() local
126 hashEntry *entry = getHashTableEntry (hashedValue); in addKeyword()
131 table [hashedValue] = newEntry (string, language, value); in addKeyword()
157 const unsigned long hashedValue = hashValue (string); in lookupKeyword() local
158 hashEntry *entry = getHashTableEntry (hashedValue); in lookupKeyword()
/dports/devel/anjuta/anjuta-3.34.0/plugins/symbol-db/anjuta-tags/
H A Dkeyword.c67 static hashEntry *getHashTableEntry (unsigned long hashedValue) in getHashTableEntry() argument
72 Assert (hashedValue < TableSize); in getHashTableEntry()
73 entry = table [hashedValue]; in getHashTableEntry()
125 const unsigned long hashedValue = hashValue (string); in addKeyword() local
126 hashEntry *entry = getHashTableEntry (hashedValue); in addKeyword()
131 table [hashedValue] = newEntry (string, language, value); in addKeyword()
157 const unsigned long hashedValue = hashValue (string); in lookupKeyword() local
158 hashEntry *entry = getHashTableEntry (hashedValue); in lookupKeyword()
/dports/devel/ctags/ctags-5.8/
H A Dkeyword.c67 static hashEntry *getHashTableEntry (unsigned long hashedValue) in getHashTableEntry() argument
72 Assert (hashedValue < TableSize); in getHashTableEntry()
73 entry = table [hashedValue]; in getHashTableEntry()
125 const unsigned long hashedValue = hashValue (string); in addKeyword() local
126 hashEntry *entry = getHashTableEntry (hashedValue); in addKeyword()
131 table [hashedValue] = newEntry (string, language, value); in addKeyword()
157 const unsigned long hashedValue = hashValue (string); in lookupKeyword() local
158 hashEntry *entry = getHashTableEntry (hashedValue); in lookupKeyword()
/dports/japanese/ctags/ctags-5.8j2/
H A Dkeyword.c67 static hashEntry *getHashTableEntry (unsigned long hashedValue) in getHashTableEntry() argument
72 Assert (hashedValue < TableSize); in getHashTableEntry()
73 entry = table [hashedValue]; in getHashTableEntry()
125 const unsigned long hashedValue = hashValue (string); in addKeyword() local
126 hashEntry *entry = getHashTableEntry (hashedValue); in addKeyword()
131 table [hashedValue] = newEntry (string, language, value); in addKeyword()
157 const unsigned long hashedValue = hashValue (string); in lookupKeyword() local
158 hashEntry *entry = getHashTableEntry (hashedValue); in lookupKeyword()
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/includes/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/
H A DCoordinate.php452 foreach ($hashedValues as $hashedValue) {
453 sort($hashedValue->rows);
458 foreach ($hashedValue->rows as $row) {
466 $ranges[] = $hashedValue->col . $rowStart;
468 … $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
478 $ranges[] = $hashedValue->col . $rowStart;
480 $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
485 $mergedCoordCollection[$range] = $hashedValue->value;
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/includes/phpoffice/PhpSpreadsheet/Cell/
H A DCoordinate.php454 foreach ($hashedValues as $hashedValue) {
455 sort($hashedValue->rows);
460 foreach ($hashedValue->rows as $row) {
468 $ranges[] = $hashedValue->col . $rowStart;
470 … $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
480 $ranges[] = $hashedValue->col . $rowStart;
482 $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
487 $mergedCoordCollection[$range] = $hashedValue->value;
/dports/finance/prestashop/prestashop/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/
H A DCoordinate.php452 foreach ($hashedValues as $hashedValue) {
453 sort($hashedValue->rows);
458 foreach ($hashedValue->rows as $row) {
466 $ranges[] = $hashedValue->col . $rowStart;
468 … $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
478 $ranges[] = $hashedValue->col . $rowStart;
480 $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
485 $mergedCoordCollection[$range] = $hashedValue->value;
/dports/www/moodle310/moodle/lib/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/
H A DCoordinate.php452 foreach ($hashedValues as $hashedValue) {
453 sort($hashedValue->rows);
458 foreach ($hashedValue->rows as $row) {
466 $ranges[] = $hashedValue->col . $rowStart;
468 … $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
478 $ranges[] = $hashedValue->col . $rowStart;
480 $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
485 $mergedCoordCollection[$range] = $hashedValue->value;
/dports/www/moodle39/moodle/lib/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/
H A DCoordinate.php452 foreach ($hashedValues as $hashedValue) {
453 sort($hashedValue->rows);
458 foreach ($hashedValue->rows as $row) {
466 $ranges[] = $hashedValue->col . $rowStart;
468 … $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
478 $ranges[] = $hashedValue->col . $rowStart;
480 $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
485 $mergedCoordCollection[$range] = $hashedValue->value;
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/
H A DCoordinate.php492 foreach ($hashedValues as $hashedValue) {
493 sort($hashedValue->rows);
498 foreach ($hashedValue->rows as $row) {
506 $ranges[] = $hashedValue->col . $rowStart;
508 … $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
518 $ranges[] = $hashedValue->col . $rowStart;
520 $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
525 $mergedCoordCollection[$range] = $hashedValue->value;
/dports/www/groupoffice/groupoffice-6.4.231-php-71/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/
H A DCoordinate.php471 foreach ($hashedValues as $hashedValue) {
472 sort($hashedValue->rows);
477 foreach ($hashedValue->rows as $row) {
485 $ranges[] = $hashedValue->col . $rowStart;
487 … $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
497 $ranges[] = $hashedValue->col . $rowStart;
499 $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
504 $mergedCoordCollection[$range] = $hashedValue->value;
/dports/www/moodle311/moodle/lib/phpspreadsheet/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/
H A DCoordinate.php471 foreach ($hashedValues as $hashedValue) {
472 sort($hashedValue->rows);
477 foreach ($hashedValue->rows as $row) {
485 $ranges[] = $hashedValue->col . $rowStart;
487 … $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
497 $ranges[] = $hashedValue->col . $rowStart;
499 $ranges[] = $hashedValue->col . $rowStart . ':' . $hashedValue->col . $rowEnd;
504 $mergedCoordCollection[$range] = $hashedValue->value;
/dports/databases/pg_citus/citus-10.2.3/src/backend/distributed/utils/
H A Dshardinterval_utils.c331 int hashedValue = DatumGetInt32(searchedValue); in FindShardIntervalIndex() local
333 shardIndex = CalculateUniformHashRangeIndex(hashedValue, shardCount); in FindShardIntervalIndex()
424 CalculateUniformHashRangeIndex(int hashedValue, int shardCount) in CalculateUniformHashRangeIndex() argument
426 int64 hashedValue64 = (int64) hashedValue; in CalculateUniformHashRangeIndex()
/dports/devel/geany-legacy/geany-1.37.1/ctags/main/
H A Dkeyword.c61 static hashEntry *getHashTableEntry (unsigned long hashedValue) in getHashTableEntry() argument
66 Assert (hashedValue < TableSize); in getHashTableEntry()
67 entry = table [hashedValue]; in getHashTableEntry()
/dports/devel/universal-ctags/ctags-p5.9.20211128.0/main/
H A Dkeyword.c62 static hashEntry *getHashTableEntry (unsigned long hashedValue) in getHashTableEntry() argument
67 Assert (hashedValue < TableSize); in getHashTableEntry()
68 entry = table [hashedValue]; in getHashTableEntry()
/dports/devel/geany/geany-1.38/ctags/main/
H A Dkeyword.c62 static hashEntry *getHashTableEntry (unsigned long hashedValue) in getHashTableEntry() argument
67 Assert (hashedValue < TableSize); in getHashTableEntry()
68 entry = table [hashedValue]; in getHashTableEntry()
/dports/databases/pg_citus/citus-10.2.3/src/include/distributed/
H A Dshardinterval_utils.h49 extern int CalculateUniformHashRangeIndex(int hashedValue, int shardCount);