Lines Matching defs:_key
660 _mesa_hash_string(const void *_key)
662 return _mesa_hash_string_with_length(_key, strlen((const char *)_key));
666 _mesa_hash_string_with_length(const void *_key, unsigned length)
669 const char *key = _key;
802 struct hash_key_u64 *_key = (struct hash_key_u64 *)entry->key;
804 if (_key)
805 free(_key);
847 struct hash_key_u64 *_key = CALLOC_STRUCT(hash_key_u64);
849 if (!_key)
851 _key->value = key;
853 _mesa_hash_table_insert(ht->table, _key, data);
863 struct hash_key_u64 _key = { .value = key };
864 return _mesa_hash_table_search(ht->table, &_key);
908 struct hash_key *_key = (struct hash_key *)entry->key;
911 free(_key);