Searched defs:Node (Results 1 – 4 of 4) sorted by relevance
25 struct Node { struct26 Node() {} in Node() function27 explicit Node(const uint64_t key, const std::string& val = std::string()) in Node() argument30 uint64_t key_ = 0;31 std::string val_;56 struct Node : LRUElement<Node> { struct57 Node() {} in Node() argument58 explicit Node(const uint64_t key, const std::string& val = std::string()) in Node() argument61 uint64_t key_ = 0;62 std::string val_;[all …]
250 struct Node { struct in ROCKSDB_NAMESPACE::GranularLockImpl251 explicit Node(const size_t key, const string& val) : key_(key), val_(val) {} in Node() argument253 size_t key_ = 0;254 string val_;
42 struct Node { struct44 Node* next; argument
65 struct Node { struct68 Node* Next() { in Next()73 void SetNext(Node* x) { in SetNext()79 Node* NoBarrier_Next() { in NoBarrier_Next()83 void NoBarrier_SetNext(Node* x) { next_.store(x, std::memory_order_relaxed); } in NoBarrier_SetNext()86 Node() {} in Node() argument89 std::atomic<Node*> next_;96 char key[1];