HomeSort by relevance Sort by last modified time
    Searched refs:GetLsbForPosition (Results 1 - 2 of 2) sorted by null

  /art/libartbase/base/
bit_string.h 166 static constexpr size_t GetLsbForPosition(size_t position) {
185 StorageType data = BitFieldExtract(storage_, GetLsbForPosition(idx), kBitSizeAtPosition[idx]);
200 GetLsbForPosition(idx),
260 size_t lsb = GetLsbForPosition(end);
261 size_t bit_size = GetLsbForPosition(kCapacity) - lsb;
bit_string_test.cc 90 // TODO: Consider removing this test, it's kind of replicating the logic in GetLsbForPosition().
91 TEST(InstanceOfBitString, GetLsbForPosition) {
94 EXPECT_EQ(0u, BitString::GetLsbForPosition(0u));
95 EXPECT_EQ(BitString::kBitSizeAtPosition[0u], BitString::GetLsbForPosition(1u));
97 BitString::GetLsbForPosition(2u));

Completed in 193 milliseconds