Changeset 93712 in vbox for trunk/include/iprt/cpp
- Timestamp:
- Feb 12, 2022 2:05:20 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/hardavlrange.h
r93711 r93712 90 90 /** The error count. */ 91 91 uint32_t m_cErrors; 92 /** @name Statistics 93 * @{ */ 94 uint64_t m_cInserts; 95 uint64_t m_cRemovals; 96 uint64_t m_cRebalancingOperations; 97 /** @} */ 92 98 93 99 /** The max stack depth. */ … … 226 232 *pidxCurNode = idxNode; 227 233 234 m_cInserts++; 228 235 return i_rebalance(a_pAllocator, &AVLStack); 229 236 } … … 398 405 *a_ppRemoved = pDeleteNode; 399 406 407 m_cRemovals++; 400 408 return i_rebalance(a_pAllocator, &AVLStack); 401 409 } … … 1176 1184 #endif 1177 1185 } 1186 m_cRebalancingOperations++; 1178 1187 } 1179 1188 else if (cLeftHeight + 1 < cRightHeight) … … 1232 1241 #endif 1233 1242 } 1243 m_cRebalancingOperations++; 1234 1244 } 1235 1245 else
Note:
See TracChangeset
for help on using the changeset viewer.