Searched defs:messageSize (Results 1 - 25 of 25) sorted by relevance

/external/conscrypt/benchmark-base/src/main/java/org/conscrypt/
H A DEndpointFactory.java12 ServerEndpoint newServer(ChannelType channelType, int messageSize, argument
H A DClientSocketBenchmark.java40 int messageSize(); method in interface:ClientSocketBenchmark.Config
58 message = newTextMessage(config.messageSize());
62 ChannelType.CHANNEL, config.messageSize(), getProtocols(), ciphers(config));
H A DEngineWrapBenchmark.java55 int messageSize(); method in interface:EngineWrapBenchmark.Config
86 int messageSize = config.messageSize();
87 messageBuffer = bufferType.newBuffer(messageSize);
88 messageBuffer.put(newTextMessage(messageSize));
H A DServerSocketBenchmark.java44 int messageSize(); method in interface:ServerSocketBenchmark.Config
60 byte[] message = newTextMessage(config.messageSize());
65 channelType, config.messageSize(), getProtocols(), ciphers(config));
104 byte[] buffer = new byte[config.messageSize()];
110 assertEquals(config.messageSize(), numBytes);
H A DCipherEncryptBenchmark.java72 int messageSize = messageSize(tx.toFormattedString());
73 outputSize = cipher.getOutputSize(messageSize);
80 final int messageSize(String transformation) throws Exception { method in class:CipherEncryptBenchmark.EncryptStrategy
H A DServerEndpoint.java66 private final int messageSize; field in class:ServerEndpoint
79 ChannelType channelType, int messageSize, String[] protocols,
84 this.messageSize = messageSize;
87 buffer = new byte[messageSize];
173 while (!stopping && totalBytesRead < messageSize) {
175 int remaining = messageSize - totalBytesRead;
78 ServerEndpoint(SSLSocketFactory socketFactory, SSLServerSocketFactory serverSocketFactory, ChannelType channelType, int messageSize, String[] protocols, String[] cipherSuites) argument
/external/conscrypt/benchmark-android/src/main/java/org/conscrypt/
H A DCaliperClientSocketBenchmark.java37 public int messageSize; field in class:CaliperClientSocketBenchmark
75 public int messageSize() { method in class:CaliperClientSocketBenchmark.CaliperConfig
76 return messageSize;
H A DAndroidEndpointFactory.java32 public ServerEndpoint newServer(ChannelType channelType, int messageSize, argument
35 channelType, messageSize, protocols, ciphers);
H A DCaliperEngineWrapBenchmark.java99 public int messageSize() { method in class:CaliperEngineWrapBenchmark.CaliperConfig
/external/conscrypt/benchmark-jmh/src/jmh/java/org/conscrypt/
H A DJmhClientSocketBenchmark.java63 public int messageSize; field in class:JmhClientSocketBenchmark
102 public int messageSize() { method in class:JmhClientSocketBenchmark.JmhConfig
103 return messageSize;
H A DJmhEngineWrapBenchmark.java103 public int messageSize() { method in class:JmhEngineWrapBenchmark.JmhConfig
H A DJmhServerSocketBenchmark.java65 public int messageSize; field in class:JmhServerSocketBenchmark
101 public int messageSize() { method in class:JmhServerSocketBenchmark.JmhConfig
102 return messageSize;
H A DOpenJdkEndpointFactory.java34 public ServerEndpoint newServer(ChannelType channelType, int messageSize, argument
37 channelType, messageSize, protocols, ciphers);
/external/deqp/execserver/
H A DxsProtocol.cpp149 void Message::writeHeader (MessageType type, size_t messageSize, deUint8* dst, size_t bufSize) argument
152 int netSize = hostToNetwork((int)messageSize);
/external/libmojo/mojo/public/java/system/src/org/chromium/mojo/system/
H A DMessagePipeHandle.java150 * @return the messageSize
157 * @param messageSize the messageSize to set
159 public void setMessageSize(int messageSize) { argument
160 mMessageSize = messageSize;
/external/deqp/execserver/tools/
H A DxsClient.cpp109 size_t messageSize; local
110 Message::parseHeader(&header[0], (int)header.size(), type, messageSize);
122 readBytes(socket, messageBuf, messageSize-MESSAGE_HEADER_SIZE);
H A DxsTest.cpp115 size_t messageSize; local
116 Message::parseHeader(&header[0], (int)header.size(), type, messageSize);
128 readBytes(socket, messageBuf, messageSize-MESSAGE_HEADER_SIZE);
/external/deqp/executor/
H A DxeTcpIpLink.cpp40 static void writeMessageHeader (de::BlockBuffer<deUint8>& dst, xs::MessageType type, int messageSize) argument
43 xs::Message::writeHeader(type, messageSize, &hdr[0], xs::MESSAGE_HEADER_SIZE);
294 size_t messageSize = 0; local
299 xs::Message::parseHeader(&m_curMsgBuf[0], xs::MESSAGE_HEADER_SIZE, messageType, messageSize);
300 hasPayload = m_curMsgPos >= messageSize;
306 handleMessage(messageType, m_curMsgPos > xs::MESSAGE_HEADER_SIZE ? &m_curMsgBuf[xs::MESSAGE_HEADER_SIZE] : DE_NULL, messageSize-xs::MESSAGE_HEADER_SIZE);
312 size_t curSize = hasHeader ? messageSize : (size_t)xs::MESSAGE_HEADER_SIZE;
/external/libmojo/mojo/android/system/src/org/chromium/mojo/system/impl/
H A DCoreImpl.java508 int mojoResult, int messageSize, int handlesCount) {
510 result.setMessageSize(messageSize);
507 newReadMessageResult( int mojoResult, int messageSize, int handlesCount) argument
/external/tpm2/
H A DCpriRSA.c342 UINT32 messageSize, // IN: the message size
370 // messageSize <= k 2hLen 2
371 if(messageSize > paddedSize - 2 * hLen - 2)
378 padLen = paddedSize - messageSize - (2 * hLen) - 2;
382 memcpy(&pp[hLen+padLen], message, messageSize);
384 dbSize = hLen+padLen+messageSize;
530 UINT32 messageSize, // IN: the message size
534 UINT32 ps = paddedSize - messageSize - 3;
535 if(messageSize > paddedSize - 11)
538 memcpy(&padded[paddedSize - messageSize], messag
337 OaepEncode( UINT32 paddedSize, BYTE *padded, TPM_ALG_ID hashAlg, const char *label, UINT32 messageSize, BYTE *message , BYTE *testSeed ) argument
527 RSAES_PKSC1v1_5Encode( UINT32 paddedSize, BYTE *padded, UINT32 messageSize, BYTE *message ) argument
569 RSAES_Decode( UINT32 *messageSize, BYTE *message, UINT32 codedSize, BYTE *coded ) argument
[all...]
/external/lz4/tests/
H A Dfuzzer.c704 U32 messageSize = (FUZ_rand(&randState) & maxMessageSizeMask) + 1; local
715 while (iNext + messageSize < testCompressedSize) {
716 XXH64_update(&xxhOrig, testInput + iNext, messageSize);
719 memcpy (ringBuffer + rNext, testInput + iNext, messageSize);
720 result = LZ4_compress_fast_continue(&streamingState, ringBuffer + rNext, testCompressed, messageSize, testCompressedSize-ringBufferSize, 1);
723 result = LZ4_decompress_safe_continue(&decodeState, testCompressed, testVerify + dNext, result, messageSize);
724 FUZ_CHECKTEST(result!=(int)messageSize, "ringBuffer : LZ4_decompress_safe() test failed");
726 XXH64_update(&xxhNew, testVerify + dNext, messageSize);
731 iNext += messageSize;
732 rNext += messageSize;
855 U32 messageSize = (FUZ_rand(&randState) & maxMessageSizeMask) + 1; local
897 U32 messageSize; local
[all...]
/external/robolectric/v3/runtime/
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 281 milliseconds