OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:computeDoubleSizeNoTag
(Results
1 - 3
of
3
) sorted by null
/external/protobuf/java/src/main/java/com/google/protobuf/
CodedOutputStream.java
430
return computeTagSize(fieldNumber) +
computeDoubleSizeNoTag
(value);
623
public static int
computeDoubleSizeNoTag
(final double value) {
[
all
...]
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
CodedOutputStreamMicro.java
405
return computeTagSize(fieldNumber) +
computeDoubleSizeNoTag
(value);
593
public static int
computeDoubleSizeNoTag
(final double value) {
[
all
...]
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
CodedOutputByteBufferNano.java
371
return computeTagSize(fieldNumber) +
computeDoubleSizeNoTag
(value);
559
public static int
computeDoubleSizeNoTag
(final double value) {
Completed in 36 milliseconds