Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/lib/io/
Dcache.cc55 struct LRUHandle { struct
56 void* value;
57 void (*deleter)(const Slice&, void* value);
58 LRUHandle* next_hash;
59 LRUHandle* next;
60 LRUHandle* prev;
61 size_t charge; // TODO(opt): Only allow uint32_t?
62 size_t key_length;
63 bool in_cache; // Whether entry is in the cache.
64 uint32_t refs; // References, including cache reference, if present.
[all …]