10 references to CompactEdgeAllocationSize
Microsoft.CodeAnalysis.Workspaces (10)
BKTree.Builder.cs (10)
119_compactEdges = new Edge[distinctValues.Length * CompactEdgeAllocationSize]; 153var start = i * CompactEdgeAllocationSize; 154var end = start + Math.Min(edgeCount, CompactEdgeAllocationSize); 164Debug.Assert(spilledEdges.Count == (edgeCount - CompactEdgeAllocationSize)); 230if (currentNodeEdgeCount < CompactEdgeAllocationSize) 232_compactEdges[currentNodeIndex * CompactEdgeAllocationSize + currentNodeEdgeCount] = 241if (currentNodeEdgeCount == CompactEdgeAllocationSize) 263var start = currentNodeIndex * CompactEdgeAllocationSize; 264var end = start + Math.Min(currentNode.EdgeCount, CompactEdgeAllocationSize); 279Debug.Assert(currentNode.SpilloverEdges.Count == (currentNode.EdgeCount - CompactEdgeAllocationSize));