7 references to BlockSize
mscorlib (7)
system\security\securestring.cs (7)
66
AllocateBuffer(
BlockSize
);
380
uint alignedSize = ((uint)size /
BlockSize
) *
BlockSize
;
381
if( (size %
BlockSize
!= 0) || size == 0) { // if size is 0, set allocated size to blocksize
382
alignedSize +=
BlockSize
;
451
Contract.Assert(m_buffer.Length %
BlockSize
== 0, "buffer length must be multiple of blocksize!");
652
Contract.Assert(m_buffer.Length %
BlockSize
== 0, "buffer length must be multiple of blocksize!");