Searched refs:mElementCapacity (Results 1 – 1 of 1) sorted by relevance
184 : mElementCapacity(elementCapacity), in ListTableEntries()188 CHECK_GT(mElementCapacity, 0u); in ListTableEntries()190 CHECK_LT(ENTRY_SIZE, UINT32_MAX / mElementCapacity); in ListTableEntries()210 uint32_t iterations = (pos / (mElementCapacity * ENTRY_SIZE)); in set()218 (*it)[(pos % (mElementCapacity * ENTRY_SIZE))] = value; in set()231 uint32_t iterations = (pos / (mElementCapacity * ENTRY_SIZE)); in get()239 value = (*it)[(pos % (mElementCapacity * ENTRY_SIZE))]; in get()249 size_t num = std::min(nEntries, (size_t)mElementCapacity); in adjustEntries()261 CHECK_LT(mNumValuesInCurrEntry, mElementCapacity); in add()262 uint32_t nEntries = mTotalNumTableEntries % mElementCapacity; in add()[all …]