Searched refs:nc_off (Results 1 – 10 of 10) sorted by relevance
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/ |
D | camellia.h | 283 size_t *nc_off,
|
D | aria.h | 323 size_t *nc_off,
|
D | aes.h | 574 size_t *nc_off,
|
/openthread-latest/third_party/mbedtls/repo/library/ |
D | cipher_wrap.h | 106 int (*ctr_func)(void *ctx, size_t length, size_t *nc_off,
|
D | cipher_wrap.c | 198 static int aes_crypt_ctr_wrap(void *ctx, size_t length, size_t *nc_off, in aes_crypt_ctr_wrap() argument 202 return mbedtls_aes_crypt_ctr((mbedtls_aes_context *) ctx, length, nc_off, nonce_counter, in aes_crypt_ctr_wrap() 805 static int camellia_crypt_ctr_wrap(void *ctx, size_t length, size_t *nc_off, in camellia_crypt_ctr_wrap() argument 809 return mbedtls_camellia_crypt_ctr((mbedtls_camellia_context *) ctx, length, nc_off, in camellia_crypt_ctr_wrap() 1223 static int aria_crypt_ctr_wrap(void *ctx, size_t length, size_t *nc_off, in aria_crypt_ctr_wrap() argument 1227 return mbedtls_aria_crypt_ctr((mbedtls_aria_context *) ctx, length, nc_off, in aria_crypt_ctr_wrap()
|
D | camellia.c | 624 size_t *nc_off, in mbedtls_camellia_crypt_ctr() argument 633 n = *nc_off; in mbedtls_camellia_crypt_ctr() 655 *nc_off = n; in mbedtls_camellia_crypt_ctr()
|
D | aria.c | 622 size_t *nc_off, in mbedtls_aria_crypt_ctr() argument 631 n = *nc_off; in mbedtls_aria_crypt_ctr() 655 *nc_off = n; in mbedtls_aria_crypt_ctr()
|
D | aes.c | 1439 size_t *nc_off, in mbedtls_aes_crypt_ctr() argument 1447 size_t offset = *nc_off; in mbedtls_aes_crypt_ctr() 1475 *nc_off = (*nc_off + length) % 16; in mbedtls_aes_crypt_ctr()
|
/openthread-latest/third_party/mbedtls/repo/tests/suites/ |
D | test_suite_aes.function | 115 size_t nc_off = 0; 119 TEST_EQUAL(mbedtls_aes_crypt_ctr(&ctx, len, &nc_off, ctr, 124 TEST_EQUAL(mbedtls_aes_crypt_ctr(&ctx, len, &nc_off, ctr,
|
/openthread-latest/third_party/mbedtls/repo/programs/test/ |
D | benchmark.c | 783 size_t nc_off; in main() local 792 nc_off = 0; in main() 796 TIME_AND_TSC(title, mbedtls_aes_crypt_ctr(&aes, BUFSIZE, &nc_off, tmp, stream_block, in main()
|