Searched refs:newtableSize_ (Results 1 – 1 of 1) sorted by relevance
56 uint32_t newtableSize_ = tableSize_ << RESIZE_MULTIPLE; in Resize() local57 std::unique_ptr<uint8_t[]> newTable = std::make_unique<uint8_t[]>(newtableSize_); in Resize()59 HLOGE("%s: malloc(%u) failed, errno: %d", __func__, newtableSize_, errno); in Resize()69 tableSize_ = newtableSize_; in Resize()72 totalNodes_ = ((newtableSize_ / sizeof(Node)) >> 1) << 1; // make it even. in Resize()