summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qhash.cpp
Commit message (Expand)AuthorAgeFilesLines
* QLocale: make qstrnto(u)ll not have output argumentsThiago Macieira2022-11-171-15/+11
* Doc: Add default value for seed param to all qHash overloadsKai Köhne2022-07-201-1/+1
* qHash: pass QByteArrayView to qHash() by valueThiago Macieira2022-06-161-6/+1
* Use SPDX license identifiersLucie Gérard2022-05-161-40/+4
* Use Q_CC_{GNU,MSVC}_ONLY when comparing to particular versionsMarc Mutz2022-05-061-2/+2
* Apply Q_CONSTINIT across the codebaseMarc Mutz2022-03-291-0/+2
* QtCore: Replace remaining uses of QLatin1String with QLatin1StringViewSona Kurazyan2022-03-261-2/+2
* Fix build with latest Apple clang versionVolker Hilsheimer2022-03-211-2/+2
* QHash: fix -Werror=maybe-uninitialized (GCC 11.2)Marc Mutz2022-03-171-1/+1
* QHash: Initialize the hash seed as soon as QtCore loadsThiago Macieira2022-03-151-11/+31
* CMake: add detection of x86 VAES and AVX512VBMI2 featuresThiago Macieira2022-03-081-1/+1
* Associative containers: add a way to obtain a key/value rangeGiuseppe D'Angelo2022-03-041-0/+37
* QHash: Fix building for i386 after "add support for VAES and AVX512VL"Martin Storsjö2022-02-241-1/+1
* qHash: fix running on CPUs without AVX2Thiago Macieira2022-02-221-1/+1
* QHash: split the x86 AES hash into three separate functionsThiago Macieira2022-02-201-27/+45
* QHash: invert the case that is excluded: use VAES and AVX512VLThiago Macieira2022-02-201-30/+34
* QHash: add support for VAES and AVX512VLThiago Macieira2022-02-201-36/+185
* QHash: mark murmurhash() and siphash() hot and never-inlineThiago Macieira2022-02-101-4/+5
* QHash: rewrite the x86 aeshash function for len >= 16Thiago Macieira2022-01-211-52/+54
* QHash: fix iteration of x86 AES hash code for len >= 32Thiago Macieira2022-01-211-2/+2
* QHash: improve aeshash's page detection codeThiago Macieira2022-01-211-5/+5
* Doc: Use \inmodule for all classes and headersTopi Reinio2022-01-171-0/+1
* QHash::insert: Remove outdated \noteMårten Nordheim2021-12-131-3/+0
* QHash: optimize value(key) and key(value) callersMarc Mutz2021-11-191-13/+18
* QMultiHash: Add forgotten documentationMårten Nordheim2021-11-031-6/+16
* QHash: use the shadow seedThiago Macieira2021-10-261-21/+20
* QHash: double the size of the stored seedThiago Macieira2021-10-261-66/+114
* Doc: Fix documentation issues for Qt CoreTopi Reinio2021-08-241-1/+1
* Doc: Ensure deprecated APIs in Qt Core are documented as suchNico Vertriest2021-07-231-4/+4
* Doc: QtCore: Fix documentation issuesTopi Reinio2021-06-011-1/+0
* Doc: Use \deprecated instead of \obsoletePaul Wicking2021-05-261-2/+2
* QRandomGenerator: let qt_initial_random_value() return 128 bits of dataThiago Macieira2021-05-231-1/+2
* QHash & QRandomGenerator: cooperate to provide a simpler initial seedThiago Macieira2021-05-231-4/+10
* Deprecate qGlobalQHashSeed and qSetGlobalQHashSeed in Qt 6.6Thiago Macieira2021-05-231-1/+4
* Mark QHashSeed::globalSeed() noexceptThiago Macieira2021-05-231-5/+8
* Introduce QHashSeed and switch to size_t seedsThiago Macieira2021-05-231-35/+127
* Use __has_* instead QT_HAS_*JiDe Zhang2021-05-211-1/+1
* Add runtime ARM64 AES checkAllan Sandfeld Jensen2021-05-201-3/+8
* QHash: disable the AES based one on the bootstrap libraryThiago Macieira2021-05-011-2/+2
* Add runtime aes/crypto check for ARMAllan Sandfeld Jensen2021-04-211-1/+3
* MSVC: Fix size_to to int warning in qhash.cppKai Köhne2021-04-211-1/+1
* QHash: allow an empty QT_HASH_SEED env variable to resetThiago Macieira2021-04-161-1/+1
* QHash: remove the ability to set a non-zero global seedThiago Macieira2021-04-161-6/+5
* QMultiHash: Fix docFabian Kosmale2021-04-161-3/+2
* QHash: add a Qt 7 TODOGiuseppe D'Angelo2021-03-211-0/+1
* Add ARM version of the "AES" qhash algorithmAllan Sandfeld Jensen2021-03-051-0/+135
* Add a qHashEquals() method and use it to compare keys in QHashLars Knoll2020-12-041-0/+15
* Document QMultiHash::clear functionAndreas Buhr2020-12-021-0/+9
* Associative containers: add erase_ifGiuseppe D'Angelo2020-12-021-0/+58
* QHash: support std::hash as hashing functionGiuseppe D'Angelo2020-11-301-10/+30