Home
last modified time | relevance | path

Searched refs:encodedLength (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/services/robotests/backup/src/com/android/server/backup/encryption/chunking/
DLengthlessEncryptedChunkEncoderTest.java71 int encodedLength = mEncoder.getEncodedLengthOfChunk(mTestChunk); in getEncodedLengthOfChunk_returnsSumOfNonceAndDataLengths() local
73 assertThat(encodedLength).isEqualTo(TEST_NONCE.length + TEST_DATA.length); in getEncodedLengthOfChunk_returnsSumOfNonceAndDataLengths()
DInlineLengthsEncryptedChunkEncoderTest.java76 int encodedLength = mEncoder.getEncodedLengthOfChunk(mTestChunk); in getEncodedLengthOfChunk_returnsSumOfNonceAndDataLengths() local
78 assertThat(encodedLength).isEqualTo(Integer.BYTES + TEST_NONCE.length + TEST_DATA.length); in getEncodedLengthOfChunk_returnsSumOfNonceAndDataLengths()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/javanano/src/main/java/com/google/protobuf/nano/
DCodedOutputByteBufferNano.java318 writeRawVarint32(encodedLength(value)); in writeStringNoTag()
338 private static int encodedLength(CharSequence sequence) { in encodedLength() method in CodedOutputByteBufferNano
811 final int length = encodedLength(value); in computeStringSizeNoTag()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/main/java/com/google/protobuf/
DCodedOutputStream.java856 length = Utf8.encodedLength(value); in computeStringSizeNoTag()
1454 int length = Utf8.encodedLength(value); in writeStringNoTag()
1776 final int length = Utf8.encodedLength(value); in writeStringNoTag()
2216 int length = Utf8.encodedLength(value); in writeStringNoTag()
2519 length = Utf8.encodedLength(value); in writeStringNoTag()
DUtf8.java250 static int encodedLength(CharSequence sequence) { in encodedLength() method in Utf8