Home | History | Annotate | Download | only in utils

Lines Matching refs:getRoot

34     EXPECT_EQ(10ull, trieMap.getRoot(10).mValue);
36 EXPECT_EQ(10ull, trieMap.getRoot(10).mValue);
37 EXPECT_EQ(10ull, trieMap.getRoot(0x10A).mValue);
39 EXPECT_EQ(1000ull, trieMap.getRoot(10).mValue);
41 EXPECT_EQ(1000ull, trieMap.getRoot(11).mValue);
43 EXPECT_EQ(1000ull, trieMap.getRoot(10).mValue);
48 EXPECT_EQ(0xFFFFFFFFFull, trieMap.getRoot(0).mValue);
54 EXPECT_EQ(10ull, trieMap.getRoot(10).mValue);
56 EXPECT_FALSE(trieMap.getRoot(10).mIsValid);
63 EXPECT_EQ(0x3FFFFFull, trieMap.getRoot(10).mValue);
67 EXPECT_EQ(0x3FFFFFull, trieMap.getRoot(10).mValue);
70 const TrieMap::Result result = trieMap.getRoot(10);
73 EXPECT_EQ(11ull, trieMap.getRoot(12).mValue);
85 EXPECT_EQ(static_cast<uint64_t>(i), trieMap.getRoot(i).mValue);
109 EXPECT_EQ(v.second, trieMap.getRoot(v.first).mValue);
169 EXPECT_EQ(firstLevelEntry.second, trieMap.getRoot(firstLevelEntry.first).mValue);
197 EXPECT_EQ(trieMap.getRoot(firstLevelEntry.key()).mValue, firstLevelEntry.value());
244 EXPECT_EQ(trieMap.getRoot(entry.key()).mValue, entry.value());