Searched defs:VarintSize32 (Results 1 - 2 of 2) sorted by relevance

/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream.h663 static int VarintSize32(uint32 value);
667 // If negative, 10 bytes. Otheriwse, same as VarintSize32().
969 inline int CodedOutputStream::VarintSize32(uint32 value) { function in class:google::protobuf::io::CodedOutputStream
981 return VarintSize32(static_cast<uint32>(value));
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dcoded_stream.h585 // CodedOutputStream::VarintSize32(strlen(text)) +
691 static int VarintSize32(uint32 value);
695 // If negative, 10 bytes. Otheriwse, same as VarintSize32().
698 // Compile-time equivalent of VarintSize32().
1012 inline int CodedOutputStream::VarintSize32(uint32 value) { function in class:google::protobuf::io::CodedOutputStream
1024 return VarintSize32(static_cast<uint32>(value));

Completed in 5999 milliseconds