OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:computeUInt64SizeNoTag
(Results
1 - 3
of
3
) sorted by null
/external/protobuf/java/src/main/java/com/google/protobuf/
CodedOutputStream.java
446
return computeTagSize(fieldNumber) +
computeUInt64SizeNoTag
(value);
639
public static int
computeUInt64SizeNoTag
(final long value) {
[
all
...]
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
CodedOutputStreamMicro.java
421
return computeTagSize(fieldNumber) +
computeUInt64SizeNoTag
(value);
609
public static int
computeUInt64SizeNoTag
(final long value) {
[
all
...]
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
CodedOutputByteBufferNano.java
387
return computeTagSize(fieldNumber) +
computeUInt64SizeNoTag
(value);
575
public static int
computeUInt64SizeNoTag
(final long value) {
Completed in 100 milliseconds