6 references to MaxInputElementsPerIteration
System.Memory (6)
System\Text\EncodingExtensions.cs (6)
39
if (chars.Length <=
MaxInputElementsPerIteration
)
230
if (bytes.Length <=
MaxInputElementsPerIteration
)
432
int byteCountForThisSlice = (chars.Length <=
MaxInputElementsPerIteration
)
434
: encoder.GetByteCount(chars.Slice(0,
MaxInputElementsPerIteration
), flush: false /* this isn't the end of the data */);
525
int charCountForThisSlice = (bytes.Length <=
MaxInputElementsPerIteration
)
527
: decoder.GetCharCount(bytes.Slice(0,
MaxInputElementsPerIteration
), flush: false /* this isn't the end of the data */);