Lines Matching refs:totalNodes_
24 totalNodes_ = ((tableSize_ / sizeof(Node)) >> 1) << 1; // make it even. in Init()
25 if (totalNodes_ > MAX_NODES_CNT) { in Init()
30 availableNodes_ = totalNodes_; in Init()
32 hashStep_ = (totalNodes_ / (deconflictTimes_ * HASH_STEP_BASE_MULTIPLE + HASH_STEP_BASE_NUM)); in Init()
36 totalNodes_, availableNodes_, availableIndex_, hashStep_, hashModulus_); in Init()
46 uint32_t oldNumNodes = totalNodes_; in Resize()
49 totalNodes_, availableNodes_, availableIndex_, hashStep_); in Resize()
51 if ((totalNodes_ << RESIZE_MULTIPLE) > MAX_NODES_CNT) { in Resize()
52 …HLOGW("Hashtable size limit, resize failed current cnt: %u, max cnt: %u", totalNodes_, MAX_NODES_C… in Resize()
72 totalNodes_ = ((newtableSize_ / sizeof(Node)) >> 1) << 1; // make it even. in Resize()
73 availableNodes_ = totalNodes_ - oldNumNodes; in Resize()
77 totalNodes_, availableNodes_, availableIndex_, hashStep_); in Resize()
106 if (curIpIdx >= totalNodes_) { in PutIpInSlot()
161 if (stackId >= totalNodes_) { in GetFrame()