Home
last modified time | relevance | path

Searched refs:kNumRecordsPerGroup (Results 1 – 2 of 2) sorted by relevance

/rocksdb-6.9/table/plain/
Dplain_table_index.h175 : kNumRecordsPerGroup(num_records_per_group), in IndexRecordList()
188 return (groups_.size() - 1) * kNumRecordsPerGroup + in GetNumRecords()
192 return &(groups_[index / kNumRecordsPerGroup] in At()
193 [index % kNumRecordsPerGroup]); in At()
198 IndexRecord* result = new IndexRecord[kNumRecordsPerGroup]; in AllocateNewGroup()
206 const size_t kNumRecordsPerGroup; variable
Dplain_table_index.cc58 if (num_records_in_current_group_ == kNumRecordsPerGroup) { in AddRecord()