Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
patches/ | 04-Jul-2025 | - | 376 | 348 | ||
src/ | 04-Jul-2025 | - | 473 | 309 | ||
Android.bp | D | 04-Jul-2025 | 7 KiB | 237 | 232 | |
COPYING | D | 04-Jul-2025 | 1.1 KiB | 20 | 19 | |
LICENSE | D | 04-Jul-2025 | 1.1 KiB | 20 | 19 | |
METADATA | D | 04-Jul-2025 | 297 | 13 | 12 | |
MODULE_LICENSE_MIT | D | 04-Jul-2025 | 0 | |||
README.chromium | D | 04-Jul-2025 | 946 | 24 | 22 |
README.chromium
1Name: CityHash 2Short Name: cityhash 3URL: https://github.com/google/cityhash 4Version: 1.0.3 5Revision: 00b9287e8c1255b5922ef90e304d5287361b2c2a 6License: MIT 7License File: COPYING 8Security Critical: yes 9Shipped: yes 10 11Description: 12Provides high-quality (but non-cryptographic) hash functions for strings. 13 14Local Modifications: 15- 000-remove-crc.patch: Remove CRC helpers. 16- 001-fix-include-paths.patch: Fix header includes to be relative to project root. 17- 002-fix-include-guards.patch: Fix include guards to follow Chromium style. 18- 003-use-base.patch: Move functions into base::internal::cityhash_v103 namespace to avoid 19 namespace collisions with other versions of CityHash, and use ARCH_CPU_LITTLE_ENDIAN and 20 LIKELY from //base 21- 004-google-style.patch: Use nullptr, remove 'using namespace std;'. 22- 005-bswap-clang.patch: Use the builtins for bswap when compiling with clang. 23- clang-format 24- 006-warnings.patch: Fix various compiler warnings.