Searched refs:cell_num (Results 1 – 3 of 3) sorted by relevance
/external/chromium_org/net/disk_cache/blockfile/ |
D | index_table_v3.cc | 320 EntryCell EntryCell::GetEntryCellForTest(int32 cell_num, in GetEntryCellForTest() argument 326 EntryCell entry_cell(cell_num, hash, *cell, small_table); in GetEntryCellForTest() 330 return EntryCell(cell_num, hash, address, small_table); in GetEntryCellForTest() 342 EntryCell::EntryCell(int32 cell_num, in EntryCell() argument 346 : cell_num_(cell_num), in EntryCell() 366 EntryCell::EntryCell(int32 cell_num, in EntryCell() argument 370 : cell_num_(cell_num), in EntryCell() 588 int cell_num = bucket_num * kCellsPerBucket + i; in LookupEntries() local 590 bitmap_->Set(cell_num, false); in LookupEntries() 591 backup_bitmap_->Set(cell_num, false); in LookupEntries() [all …]
|
D | index_table_v3.h | 57 int32 cell_num() const { return cell_num_; } in cell_num() function 71 static EntryCell GetEntryCellForTest(int32 cell_num, 83 EntryCell(int32 cell_num, uint32 hash, Addr address, bool small_table); 84 EntryCell(int32 cell_num, 249 void MoveSingleCell(IndexCell* current_cell, int cell_num, 251 void HandleMisplacedCell(IndexCell* current_cell, int cell_num,
|
D | index_table_v3_unittest.cc | 152 int cell_num = 88; in TEST() local 160 EntryCell entry = EntryCell::GetEntryCellForTest(cell_num, hash, addr, NULL, in TEST() 172 EXPECT_EQ(cell_num, entry.cell_num()); in TEST() 184 EntryCell entry2 = EntryCell::GetEntryCellForTest(cell_num, hash, addr, in TEST() 197 cell_num *= 5; in TEST()
|