7 references to CharSize
System.Private.Xml (7)
System\Xml\XmlEncoding.cs (7)
30
if (flush && (byteCount %
CharSize
!= 0))
34
return byteCount /
CharSize
;
86
Buffer.BlockCopy(bytes, byteIndex, chars, charIndex *
CharSize
, byteCount);
116
if (charCount *
CharSize
< byteCount)
118
byteCount = charCount *
CharSize
;
151
Buffer.BlockCopy(bytes, byteIndex, chars, charIndex *
CharSize
, (int)(byteCount & ~0x1));
154
charsUsed += byteCount /
CharSize
;