Home
last modified time | relevance | path

Searched refs:AddressInSector (Results 1 – 3 of 3) sorted by relevance

/external/pigweed/pw_kvs/
Dsectors_test.cc50 TEST_F(SectorsTest, AddressInSector) { in TEST_F() argument
53 EXPECT_FALSE(sectors_.AddressInSector(sector, 127)); in TEST_F()
55 EXPECT_TRUE(sectors_.AddressInSector(sector, address)); in TEST_F()
57 EXPECT_FALSE(sectors_.AddressInSector(sector, 256)); in TEST_F()
58 EXPECT_FALSE(sectors_.AddressInSector(sector, 1025)); in TEST_F()
Dkey_value_store.cc164 if (!sectors_.AddressInSector(sector, entry_address)) { in InitializeMetadata()
385 sectors_.AddressInSector(sector, address); in ScanForEntry()
970 if (sectors_.AddressInSector(sector_to_gc, address)) { in RelocateKeyAddressesInSector()
/external/pigweed/pw_kvs/public/pw_kvs/internal/
Dsectors.h136 bool AddressInSector(const SectorDescriptor& sector, Address address) const { in AddressInSector() function