Home
last modified time | relevance | path

Searched refs:msgLength (Results 1 – 6 of 6) sorted by relevance

/external/openthread/tests/unit/
Dtest_aes.cpp210 for (uint16_t msgLength : kMessageLengths) in TestInPlaceAesCcmProcessing() local
212 printf("msgLength %d\n", msgLength); in TestInPlaceAesCcmProcessing()
216 for (uint16_t i = msgLength; i != 0; i--) in TestInPlaceAesCcmProcessing()
223 VerifyOrQuit(messageClone->GetLength() == msgLength); in TestInPlaceAesCcmProcessing()
228 aesCcm.Init(kHeaderLength, msgLength - kHeaderLength, kTagLength, kNonce, sizeof(kNonce)); in TestInPlaceAesCcmProcessing()
230 … aesCcm.Payload(*message, kHeaderLength, msgLength - kHeaderLength, Crypto::AesCcm::kEncrypt); in TestInPlaceAesCcmProcessing()
236 VerifyOrQuit(message->GetLength() == msgLength + kTagLength); in TestInPlaceAesCcmProcessing()
239 aesCcm.Init(kHeaderLength, msgLength - kHeaderLength, kTagLength, kNonce, sizeof(kNonce)); in TestInPlaceAesCcmProcessing()
241 … aesCcm.Payload(*message, kHeaderLength, msgLength - kHeaderLength, Crypto::AesCcm::kDecrypt); in TestInPlaceAesCcmProcessing()
245 VerifyOrQuit(message->Compare(msgLength, tag)); in TestInPlaceAesCcmProcessing()
[all …]
/external/cronet/tot/third_party/icu/source/common/
Dmessagepattern.cpp1008 int32_t msgLength=msg.length(); in skipWhiteSpace() local
1009 const char16_t *t=PatternProps::skipWhiteSpace(s+index, msgLength-index); in skipWhiteSpace()
1016 int32_t msgLength=msg.length(); in skipIdentifier() local
1017 const char16_t *t=PatternProps::skipIdentifier(s+index, msgLength-index); in skipIdentifier()
1023 int32_t msgLength=msg.length(); in skipDouble() local
1024 while(index<msgLength) { in skipDouble()
/external/cronet/stable/third_party/icu/source/common/
Dmessagepattern.cpp1008 int32_t msgLength=msg.length(); in skipWhiteSpace() local
1009 const char16_t *t=PatternProps::skipWhiteSpace(s+index, msgLength-index); in skipWhiteSpace()
1016 int32_t msgLength=msg.length(); in skipIdentifier() local
1017 const char16_t *t=PatternProps::skipIdentifier(s+index, msgLength-index); in skipIdentifier()
1023 int32_t msgLength=msg.length(); in skipDouble() local
1024 while(index<msgLength) { in skipDouble()
/external/icu/icu4c/source/common/
Dmessagepattern.cpp1007 int32_t msgLength=msg.length(); in skipWhiteSpace() local
1008 const char16_t *t=PatternProps::skipWhiteSpace(s+index, msgLength-index); in skipWhiteSpace()
1015 int32_t msgLength=msg.length(); in skipIdentifier() local
1016 const char16_t *t=PatternProps::skipIdentifier(s+index, msgLength-index); in skipIdentifier()
1022 int32_t msgLength=msg.length(); in skipDouble() local
1023 while(index<msgLength) { in skipDouble()
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowLog.java157 int msgLength = msg == null ? 0 : msg.length(); in println_native() local
158 return EXTRA_LOG_LENGTH + tagLength + msgLength; in println_native()
/external/ltp/testcases/network/sockets/
DltpClient.c515 socklen_t msgLength = sizeof(r_addr); in ping_network() local
521 (struct sockaddr *)&r_addr, &msgLength) > 0) { in ping_network()