Home
last modified time | relevance | path

Searched refs:bytes_remaining (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/drivers/crypto/
Dcrypto_cc23x0.c147 int bytes_remaining = pkt->in_len; in crypto_cc23x0_ctr() local
186 if (bytes_remaining > AES_BLOCK_SIZE) { in crypto_cc23x0_ctr()
190 block_size = bytes_remaining; in crypto_cc23x0_ctr()
208 bytes_remaining -= block_size; in crypto_cc23x0_ctr()
209 } while (bytes_remaining > 0); in crypto_cc23x0_ctr()
226 int bytes_remaining = pkt->in_len; in crypto_cc23x0_cmac() local
277 if (bytes_remaining >= AES_BLOCK_SIZE) { in crypto_cc23x0_cmac()
281 block_size = bytes_remaining; in crypto_cc23x0_cmac()
295 bytes_remaining -= block_size; in crypto_cc23x0_cmac()
296 } while (bytes_remaining > 0); in crypto_cc23x0_cmac()
/Zephyr-latest/kernel/
Dpipes.c318 static int pipe_return_code(size_t min_xfer, size_t bytes_remaining, in pipe_return_code() argument
321 if ((bytes_requested - bytes_remaining) >= min_xfer) { in pipe_return_code()