Searched refs:mlen (Results 1 – 4 of 4) sorted by relevance
/Zephyr-Core-3.7.0/tests/crypto/tinycrypt/src/ |
D | ccm_mode.c | 76 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/ |
D | main.c | 70 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/ |
D | main.c | 74 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/ |
D | crypto_tc_shim.c | 129 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()
|