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

/external/conscrypt/benchmark-jmh/src/jmh/java/org/conscrypt/
H A DJmhClientSocketBenchmark.java63 public int messageSize; field in class:JmhClientSocketBenchmark
96 public int messageSize() { method in class:JmhClientSocketBenchmark.JmhConfig
97 return messageSize;
H A DJmhEngineWrapBenchmark.java103 public int messageSize() { method in class:JmhEngineWrapBenchmark.JmhConfig
H A DJmhServerSocketBenchmark.java66 public int messageSize; field in class:JmhServerSocketBenchmark
96 public int messageSize() { method in class:JmhServerSocketBenchmark.JmhConfig
97 return messageSize;
/external/conscrypt/benchmark-base/src/main/java/org/conscrypt/
H A DClientSocketBenchmark.java39 int messageSize(); method in interface:ClientSocketBenchmark.Config
57 message = newTextMessage(config.messageSize());
61 ChannelType.CHANNEL, config.messageSize(), getProtocols(), ciphers(config));
135 public int messageSize() {
H A DEngineWrapBenchmark.java54 int messageSize(); method in interface:EngineWrapBenchmark.Config
85 int messageSize = config.messageSize();
86 messageBuffer = bufferType.newBuffer(messageSize);
87 messageBuffer.put(newTextMessage(messageSize));
174 public int messageSize() {
H A DServerSocketBenchmark.java42 int messageSize(); method in interface:ServerSocketBenchmark.Config
58 byte[] message = newTextMessage(config.messageSize());
63 channelType, config.messageSize(), getProtocols(), ciphers(config));
96 byte[] buffer = new byte[config.messageSize()];
99 assertEquals(config.messageSize(), numBytes);
149 public int messageSize() {
H A DSocketType.java30 ServerEndpoint newServer(ChannelType channelType, int messageSize, argument
33 channelType, messageSize, protocols, ciphers);
H A DServerEndpoint.java60 private final int messageSize; field in class:ServerEndpoint
72 ChannelType channelType, int messageSize, String[] protocols,
77 this.messageSize = messageSize;
80 buffer = new byte[messageSize];
161 while (totalBytesRead < messageSize) {
162 int remaining = messageSize - totalBytesRead;
71 ServerEndpoint(SSLSocketFactory socketFactory, SSLServerSocketFactory serverSocketFactory, ChannelType channelType, int messageSize, String[] protocols, String[] cipherSuites) argument
/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/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/libmojo/mojo/android/system/src/org/chromium/mojo/system/impl/
H A DCoreImpl.java570 int mojoResult, int messageSize, int handlesCount) {
572 result.setMessageSize(messageSize);
569 newReadMessageResult( int mojoResult, int messageSize, int handlesCount) argument
/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 482 milliseconds