3 references to DEFAULT_BYTES_PER_CHUNK
System.Core (3)
System\Linq\Parallel\Scheduling\Scheduling.cs (3)
90
chunkSize = Math.Max(1,
DEFAULT_BYTES_PER_CHUNK
/ Marshal.SizeOf(typeof(T)));
102
Contract.Assert((
DEFAULT_BYTES_PER_CHUNK
% IntPtr.Size) == 0, "bytes per chunk should be a multiple of pointer size");
103
chunkSize = (
DEFAULT_BYTES_PER_CHUNK
/ IntPtr.Size);