Home
last modified time | relevance | path

Searched refs:mlen (Results 1 – 4 of 4) sorted by relevance

/Zephyr-Core-3.7.0/tests/crypto/tinycrypt/src/
Dccm_mode.c76 const int mlen) in do_test() argument
86 result = tc_ccm_config(&c, &sched, nonce, nlen, mlen); in do_test()
108 dlen + mlen, &c); in do_test()
149 uint16_t mlen = M_LEN8; in ZTEST() local
155 data, sizeof(data), expected, sizeof(expected), mlen); in ZTEST()
187 uint16_t mlen = M_LEN8; in ZTEST() local
193 data, sizeof(data), expected, sizeof(expected), mlen); in ZTEST()
227 uint16_t mlen = M_LEN8; in ZTEST() local
233 sizeof(data), expected, sizeof(expected), mlen); in ZTEST()
266 uint16_t mlen = M_LEN10; in ZTEST() local
[all …]
/Zephyr-Core-3.7.0/samples/subsys/ipc/ipc_service/icmsg/remote/src/
Dmain.c70 size_t mlen = PACKET_SIZE_START; in send_for_time() local
79 ret = ipc_service_send(ep, &msg, mlen); in send_for_time()
99 bytes_sent += mlen; in send_for_time()
100 mlen++; in send_for_time()
102 if (mlen > sizeof(struct data_packet)) { in send_for_time()
103 mlen = PACKET_SIZE_START; in send_for_time()
/Zephyr-Core-3.7.0/samples/subsys/ipc/ipc_service/icmsg/src/
Dmain.c74 size_t mlen = PACKET_SIZE_START; in send_for_time() local
83 ret = ipc_service_send(ep, &msg, mlen); in send_for_time()
103 bytes_sent += mlen; in send_for_time()
104 mlen++; in send_for_time()
106 if (mlen > sizeof(struct data_packet)) { in send_for_time()
107 mlen = PACKET_SIZE_START; in send_for_time()
/Zephyr-Core-3.7.0/drivers/crypto/
Dcrypto_tc_shim.c129 memcpy(aead_op->tag, op->out_buf + op->in_len, ccm.mlen); in do_ccm_encrypt_mac()
136 op->out_len = op->in_len + ccm.mlen; in do_ccm_encrypt_mac()