Searched refs:hash_index (Results 1 – 1 of 1) sorted by relevance
/lvgl-3.7.0/src/misc/ |
D | lv_lru.c | 49 …lru_remove_item(lv_lru_t * cache, lv_lru_item_t * prev, lv_lru_item_t * item, uint32_t hash_index); 145 uint32_t hash_index = lv_lru_hash(cache, key, key_length); in lv_lru_set() local 148 item = cache->items[hash_index]; in lv_lru_set() 176 cache->items[hash_index] = item; in lv_lru_set() 195 uint32_t hash_index = lv_lru_hash(cache, key, key_size); in lv_lru_get() local 196 lv_lru_item_t * item = cache->items[hash_index]; in lv_lru_get() 219 uint32_t hash_index = lv_lru_hash(cache, key, key_size); in lv_lru_remove() local 220 item = cache->items[hash_index]; in lv_lru_remove() 228 lv_lru_remove_item(cache, prev, item, hash_index); in lv_lru_remove() 311 …_lru_remove_item(lv_lru_t * cache, lv_lru_item_t * prev, lv_lru_item_t * item, uint32_t hash_index) in lv_lru_remove_item() argument [all …]
|