/src/sys/external/bsd/drm2/dist/drm/ |
drm_hashtab.c | 72 unsigned int hashed_key; local in function:drm_ht_verbose_list 75 hashed_key = hash_long(key, ht->order); 76 DRM_DEBUG("Key is 0x%08lx, Hashed key is 0x%08x\n", key, hashed_key); 77 h_list = &ht->table[hashed_key]; 87 unsigned int hashed_key; local in function:drm_ht_find_key 89 hashed_key = hash_long(key, ht->order); 90 h_list = &ht->table[hashed_key]; 105 unsigned int hashed_key; local in function:drm_ht_find_key_rcu 107 hashed_key = hash_long(key, ht->order); 108 h_list = &ht->table[hashed_key]; 123 unsigned int hashed_key; local in function:drm_ht_insert_item [all...] |
/src/sys/external/bsd/drm/dist/bsd-core/ |
drm_hashtab.c | 61 unsigned int hashed_key; local in function:drm_ht_verbose_list 64 hashed_key = hash32_buf(&key, sizeof(key), ht->order); 65 DRM_DEBUG("Key is 0x%08lx, Hashed key is 0x%08x\n", key, hashed_key); 66 h_list = &ht->table[hashed_key & ht->mask]; 76 unsigned int hashed_key; local in function:drm_ht_find_key 78 hashed_key = hash32_buf(&key, sizeof(key), ht->order); 79 h_list = &ht->table[hashed_key & ht->mask]; 94 unsigned int hashed_key; local in function:drm_ht_insert_item 97 hashed_key = hash32_buf(&key, sizeof(key), ht->order); 98 h_list = &ht->table[hashed_key & ht->mask] [all...] |