7 references to defaultCapacity
System.Activities.DurableInstancing (7)
System\Activities\DurableInstancing\BinaryHeap.cs (7)
20
this(
defaultCapacity
)
43
this.items = new KeyValuePair<TKey, TValue>[
defaultCapacity
];
140
if (this.items.Length >
defaultCapacity
&& this.itemCount < (this.items.Length >> 1))
143
defaultCapacity
, (((this.itemCount /
defaultCapacity
) + 1) *
defaultCapacity
));
169
Fx.Assert(
defaultCapacity
<= newSize, "Can not shrink below the default capacity.");