7 references to log2
System (7)
compmod\system\collections\generic\sortedset.cs (7)
131
Stack<Node> theirStack = new Stack<SortedSet<T>.Node>(2 *
log2
(baseSortedSet.Count) + 2);
132
Stack<Node> myStack = new Stack<SortedSet<T>.Node>(2 *
log2
(baseSortedSet.Count) + 2);
235
Stack<Node> stack = new Stack<Node>(2 * (int)(SortedSet<T>.
log2
(Count + 1)));
1857
Stack<Node> stack = new Stack<Node>(2 * (int)SortedSet<T>.
log2
(count + 1)); //this is not exactly right if count is out of date, but the stack can grow
2178
stack = new Stack<SortedSet<T>.Node>(2 * (int)SortedSet<T>.
log2
(set.Count + 1));
2195
stack = new Stack<SortedSet<T>.Node>(2 * (int)SortedSet<T>.
log2
(set.Count + 1));
2244
stack = new Stack<SortedSet<T>.Node>(2 * (int)SortedSet<T>.
log2
(tree.Count + 1));