3 references to DEFAULT_BYTES_PER_CHUNK
mscorlib (3)
system\collections\concurrent\PartitionerStatic.cs (3)
1717
chunkSize = Math.Max(1,
DEFAULT_BYTES_PER_CHUNK
/ Marshal.SizeOf(typeof(TSource)));
1731
Contract.Assert((
DEFAULT_BYTES_PER_CHUNK
% IntPtr.Size) == 0, "bytes per chunk should be a multiple of pointer size");
1732
chunkSize = (
DEFAULT_BYTES_PER_CHUNK
/ IntPtr.Size);