OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:computerawvarint32size
(Results
1 - 25
of
33
) sorted by null
1
2
/external/protobuf/csharp/src/Google.Protobuf/
CodedOutputStream.ComputeSize.cs
89
return
ComputeRawVarint32Size
((uint) value);
169
return
ComputeRawVarint32Size
(value);
207
return
ComputeRawVarint32Size
(EncodeZigZag32(value));
225
return
ComputeRawVarint32Size
((uint) length);
231
public static int
ComputeRawVarint32Size
(uint value)
301
return
ComputeRawVarint32Size
(WireFormat.MakeTag(fieldNumber, 0));
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
UnknownFieldData.java
58
size += CodedOutputByteBufferNano.
computeRawVarint32Size
(tag);
CodedOutputByteBufferNano.java
309
final int minLengthVarIntSize =
computeRawVarint32Size
(value.length());
310
final int maxLengthVarIntSize =
computeRawVarint32Size
(value.length() * MAX_UTF8_EXPANSION);
799
return
computeRawVarint32Size
(value);
836
return
computeRawVarint32Size
(length) + length;
[
all
...]
Extension.java
638
dataSize + CodedOutputByteBufferNano.
computeRawVarint32Size
(dataSize);
639
return payloadSize + CodedOutputByteBufferNano.
computeRawVarint32Size
(tag);
InternalNano.java
476
+ CodedOutputByteBufferNano.
computeRawVarint32Size
(entrySize);
/external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/
CodedOutputStreamMicro.java
627
return
computeRawVarint32Size
(value);
665
return
computeRawVarint32Size
(bytes.length) +
686
return
computeRawVarint32Size
(size) + size;
694
return
computeRawVarint32Size
(value.size()) + value.size();
702
return
computeRawVarint32Size
(value.length) + value.length;
710
return
computeRawVarint32Size
(value);
718
return
computeRawVarint32Size
(value);
742
return
computeRawVarint32Size
(encodeZigZag32(value));
881
return
computeRawVarint32Size
(WireFormatMicro.makeTag(fieldNumber, 0));
905
public static int
computeRawVarint32Size
(final int value)
[
all
...]
/external/protobuf/java/core/src/main/java/com/google/protobuf/
AbstractMessageLite.java
95
CodedOutputStream.
computeRawVarint32Size
(serialized) + serialized);
FieldSet.java
896
CodedOutputStream.
computeRawVarint32Size
(dataSize);
CodedOutputStream.java
[
all
...]
/external/protobuf/csharp/src/Google.Protobuf.Test/
CodedOutputStreamTest.cs
57
Assert.AreEqual(data.Length, CodedOutputStream.
ComputeRawVarint32Size
((uint) value));
/external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_enum_field.cc
309
" .
computeRawVarint32Size
(dataSize);\n"
/prebuilts/tools/common/m2/repository/com/google/protobuf/nano/protobuf-javanano/3.0.0-alpha-5/
protobuf-javanano-3.0.0-alpha-5.jar
/external/protobuf/src/google/protobuf/compiler/javanano/
javanano_enum_field.cc
561
" .
computeRawVarint32Size
(dataSize);\n");
javanano_primitive_field.cc
[
all
...]
/external/protobuf/src/google/protobuf/compiler/java/
java_enum_field.cc
[
all
...]
java_enum_field_lite.cc
[
all
...]
/prebuilts/tools/common/m2/repository/com/android/tools/external/libprotobuf-java-lite/2.3.0/
libprotobuf-java-lite-2.3.0.jar
/external/protobuf/javanano/src/test/java/com/google/protobuf/nano/
NanoTest.java
[
all
...]
/prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-lite/3.0.1/
protobuf-lite-3.0.1.jar
/external/google-tv-pairing-protocol/java/jar/
protobuf-java-2.2.0-lite.jar
/prebuilts/misc/common/robolectric/3.1.1/lib/
protobuf-java-2.6.1.jar
/prebuilts/misc/common/robolectric/3.4.2/lib/
protobuf-java-2.6.1.jar
/prebuilts/misc/common/robolectric/3.5.1/lib/
protobuf-java-2.6.1.jar
/prebuilts/misc/common/robolectric/3.6.1/lib/
protobuf-java-2.6.1.jar
/prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/2.5.0/
protobuf-java-2.5.0.jar
Completed in 1996 milliseconds
1
2