mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 13:35:06 +00:00
[map] Downgrade from quadratic to linear probing
This commit is contained in:
parent
498197671a
commit
2dd0803c85
1 changed files with 1 additions and 2 deletions
|
@ -400,7 +400,6 @@ struct hb_hashmap_t
|
|||
{
|
||||
hash &= 0x3FFFFFFF; // We only store lower 30bit of hash
|
||||
unsigned int i = hash % prime;
|
||||
unsigned int step = 0;
|
||||
unsigned int tombstone = (unsigned) -1;
|
||||
while (items[i].is_used ())
|
||||
{
|
||||
|
@ -409,7 +408,7 @@ struct hb_hashmap_t
|
|||
return items[i];
|
||||
if (tombstone == (unsigned) -1 && items[i].is_tombstone ())
|
||||
tombstone = i;
|
||||
i = (i + ++step) & mask;
|
||||
i = (i + 1) & mask;
|
||||
}
|
||||
return items[tombstone == (unsigned) -1 ? i : tombstone];
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue