Home
last modified time | relevance | path

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

/third_party/mindspore/tests/ut/cpp/dataset/
Dbtree_test.cc46 BPlusTree<uint64_t, std::string, Allocator<std::string>, std::less<>, mytraits> btree(alloc); in TEST_F() local
111 BPlusTree<uint64_t, std::string, Allocator<std::string>, std::less<>, mytraits> btree(alloc); in TEST_F() local
231 AutoIndexObj<int64_t> btree; in TEST_F() local
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dcord_rep_btree_reader.h91 CordRepBtree* btree() const { return navigator_.btree(); } in btree() function
Dcord_rep_btree_navigator.h153 inline CordRepBtree* CordRepBtreeNavigator::btree() const { in btree() function
Dcordz_statistics.h43 size_t btree = 0; // #btree reps member
Dcord_rep_btree.h516 inline CordRepBtree* CordRep::btree() { in btree() function
521 inline const CordRepBtree* CordRep::btree() const { in btree() function
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/util/
Dbtree.h387 explicit Iterator(BPlusTree *btree) : cur_(btree->leaf_nodes_.head), slot_(0), locked_(false) {} in Iterator()
450 …explicit ConstIterator(const BPlusTree *btree) : cur_(btree->leaf_nodes_.head), slot_(0), locked_(… in ConstIterator()