Home
last modified time | relevance | path

Searched refs:LRUHandle (Results 1 – 1 of 1) sorted by relevance

/external/tensorflow/tensorflow/core/lib/io/
Dcache.cc55 struct LRUHandle { struct
58 LRUHandle* next_hash; argument
59 LRUHandle* next; argument
60 LRUHandle* prev; argument
87 LRUHandle* Lookup(const Slice& key, uint32_t hash) { in Lookup()
91 LRUHandle* Insert(LRUHandle* h) { in Insert()
92 LRUHandle** ptr = FindPointer(h->key(), h->hash); in Insert()
93 LRUHandle* old = *ptr; in Insert()
107 LRUHandle* Remove(const Slice& key, uint32_t hash) { in Remove()
108 LRUHandle** ptr = FindPointer(key, hash); in Remove()
[all …]