Home
last modified time | relevance | path

Searched refs:ReadRawByte (Results 1 – 2 of 2) sorted by relevance

/third_party/protobuf/csharp/src/Google.Protobuf/
DParsingPrimitives.cs199 byte b = ReadRawByte(ref buffer, ref state); in ParseRawVarint64SlowPath()
261 if (ReadRawByte(ref buffer, ref state) < 128) in ParseRawVarint32()
276 int tmp = ReadRawByte(ref buffer, ref state); in ParseRawVarint32SlowPath()
282 if ((tmp = ReadRawByte(ref buffer, ref state)) < 128) in ParseRawVarint32SlowPath()
289 if ((tmp = ReadRawByte(ref buffer, ref state)) < 128) in ParseRawVarint32SlowPath()
296 if ((tmp = ReadRawByte(ref buffer, ref state)) < 128) in ParseRawVarint32SlowPath()
303 result |= (tmp = ReadRawByte(ref buffer, ref state)) << 28; in ParseRawVarint32SlowPath()
309 if (ReadRawByte(ref buffer, ref state) < 128) in ParseRawVarint32SlowPath()
342 uint b1 = ReadRawByte(ref buffer, ref state); in ParseRawLittleEndian32SlowPath()
343 uint b2 = ReadRawByte(ref buffer, ref state); in ParseRawLittleEndian32SlowPath()
[all …]
/third_party/protobuf/objectivec/
DGPBCodedInputStream.m89 static int8_t ReadRawByte(GPBCodedInputStreamState *state) { function
120 int8_t b = ReadRawByte(state);