Lines Matching refs:buffer
47 public static void SkipLastField(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state)
56 SkipGroup(ref buffer, ref state, state.lastTag);
62 ParsingPrimitives.ParseRawLittleEndian32(ref buffer, ref state);
65 ParsingPrimitives.ParseRawLittleEndian64(ref buffer, ref state);
68 var length = ParsingPrimitives.ParseLength(ref buffer, ref state);
69 ParsingPrimitives.SkipRawBytes(ref buffer, ref state, length);
72 ParsingPrimitives.ParseRawVarint32(ref buffer, ref state);
80 public static void SkipGroup(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state, uint startGroupTag)
92 tag = ParsingPrimitives.ParseTag(ref buffer, ref state);
103 SkipLastField(ref buffer, ref state);
117 int length = ParsingPrimitives.ParseLength(ref ctx.buffer, ref ctx.state);