Re: [Mesa-dev] [PATCH] mesa/util: add a hash table wrapper which support 64-bit keys

2017-06-13 Thread Samuel Pitoiset
On 06/13/2017 06:07 PM, Nicolai Hähnle wrote: On 13.06.2017 14:01, Grazvydas Ignotas wrote: On Tue, Jun 13, 2017 at 10:58 AM, Samuel Pitoiset wrote: Needed for bindless handles which are represented using 64-bit unsigned integers. All hash table implementations should be uniformized later on

Re: [Mesa-dev] [PATCH] mesa/util: add a hash table wrapper which support 64-bit keys

2017-06-13 Thread Nicolai Hähnle
On 13.06.2017 14:01, Grazvydas Ignotas wrote: On Tue, Jun 13, 2017 at 10:58 AM, Samuel Pitoiset wrote: Needed for bindless handles which are represented using 64-bit unsigned integers. All hash table implementations should be uniformized later on. Signed-off-by: Samuel Pitoiset --- src/util

Re: [Mesa-dev] [PATCH] mesa/util: add a hash table wrapper which support 64-bit keys

2017-06-13 Thread Grazvydas Ignotas
On Tue, Jun 13, 2017 at 10:58 AM, Samuel Pitoiset wrote: > Needed for bindless handles which are represented using > 64-bit unsigned integers. All hash table implementations should > be uniformized later on. > > Signed-off-by: Samuel Pitoiset > --- > src/util/hash_table.c | 149 > ++

[Mesa-dev] [PATCH] mesa/util: add a hash table wrapper which support 64-bit keys

2017-06-13 Thread Samuel Pitoiset
Needed for bindless handles which are represented using 64-bit unsigned integers. All hash table implementations should be uniformized later on. Signed-off-by: Samuel Pitoiset --- src/util/hash_table.c | 149 ++ src/util/hash_table.h | 25