diff options
author | Ashok Bhat <ashok.bhat@arm.com> | 2014-02-07 16:31:41 +0000 |
---|---|---|
committer | David Butcher <david.butcher@arm.com> | 2014-02-07 19:10:04 +0000 |
commit | e9bea2a18201d079831750865ab1d013528d862a (patch) | |
tree | 3ce8760b0c6265626964bbf3621d782947f01db3 /libs/hwui/utils | |
parent | 449273e2d575041ffe1a5d435666d36923de888b (diff) | |
download | frameworks_base-e9bea2a18201d079831750865ab1d013528d862a.zip frameworks_base-e9bea2a18201d079831750865ab1d013528d862a.tar.gz frameworks_base-e9bea2a18201d079831750865ab1d013528d862a.tar.bz2 |
Fix TinyHashMap to use generic hash_type instead of hash_t
TinyHashMap used hash_t(key) to generate hashcode. This
would not work for 64-bit pointers as hash_t is declared as
an uint32_t.
Replaced the hash_t(key) call to more generic android::hash_type(key).
This function is a template function declared in TypeHelpers.h and
has a version available for all data types including pointers.
Change-Id: I612cf18b49ca7c30b63f9d6938df68fed7d80d08
Signed-off-by: Ashok Bhat <ashok.bhat@arm.com>
Diffstat (limited to 'libs/hwui/utils')
-rw-r--r-- | libs/hwui/utils/TinyHashMap.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libs/hwui/utils/TinyHashMap.h b/libs/hwui/utils/TinyHashMap.h index 8855140..4ff9a42 100644 --- a/libs/hwui/utils/TinyHashMap.h +++ b/libs/hwui/utils/TinyHashMap.h @@ -24,8 +24,6 @@ namespace uirenderer { /** * A very simple hash map that doesn't allow duplicate keys, overwriting the older entry. - * - * Currently, expects simple keys that are handled by hash_t() */ template <typename TKey, typename TValue> class TinyHashMap { @@ -36,7 +34,7 @@ public: * Puts an entry in the hash, removing any existing entry with the same key */ void put(TKey key, TValue value) { - hash_t hash = hash_t(key); + hash_t hash = android::hash_type(key); ssize_t index = mTable.find(-1, hash, key); if (index != -1) { @@ -51,7 +49,7 @@ public: * Return true if key is in the map, in which case stores the value in the output ref */ bool get(TKey key, TValue& outValue) { - hash_t hash = hash_t(key); + hash_t hash = android::hash_type(key); ssize_t index = mTable.find(-1, hash, key); if (index == -1) { return false; |