8 references to SpanLength
System.Private.Windows.Core (8)
Windows.Win32.byte.InlineArrays.g.cs (8)
25
internal readonly int Length =>
SpanLength
;
36
internal readonly unsafe void CopyTo(Span<byte> target, int length =
SpanLength
)
39
new ReadOnlySpan<byte>(p0,
SpanLength
).Slice(0, length).CopyTo(target);
42
internal readonly unsafe byte[] ToArray(int length =
SpanLength
)
45
return new ReadOnlySpan<byte>(p0,
SpanLength
).Slice(0, length).ToArray();
52
ReadOnlySpan<byte> span = new ReadOnlySpan<byte>(p0,
SpanLength
);
60
Span<byte> target = new Span<byte>(result.Value,
SpanLength
);
63
target.Slice(initLength,
SpanLength
- initLength).Clear();