Home
last modified time | relevance | path

Searched refs:nc_off (Results 1 – 10 of 10) sorted by relevance

/openthread-3.4.0/third_party/mbedtls/repo/library/
Dblowfish.c366 size_t *nc_off, in mbedtls_blowfish_crypt_ctr() argument
377 BLOWFISH_VALIDATE_RET( nc_off != NULL ); in mbedtls_blowfish_crypt_ctr()
381 n = *nc_off; in mbedtls_blowfish_crypt_ctr()
401 *nc_off = n; in mbedtls_blowfish_crypt_ctr()
Dcipher_wrap.c162 static int aes_crypt_ctr_wrap( void *ctx, size_t length, size_t *nc_off, in aes_crypt_ctr_wrap() argument
166 return mbedtls_aes_crypt_ctr( (mbedtls_aes_context *) ctx, length, nc_off, nonce_counter, in aes_crypt_ctr_wrap()
684 static int camellia_crypt_ctr_wrap( void *ctx, size_t length, size_t *nc_off, in camellia_crypt_ctr_wrap() argument
688 return mbedtls_camellia_crypt_ctr( (mbedtls_camellia_context *) ctx, length, nc_off, in camellia_crypt_ctr_wrap()
1060 static int aria_crypt_ctr_wrap( void *ctx, size_t length, size_t *nc_off, in aria_crypt_ctr_wrap() argument
1064 return mbedtls_aria_crypt_ctr( (mbedtls_aria_context *) ctx, length, nc_off, in aria_crypt_ctr_wrap()
1707 static int blowfish_crypt_ctr_wrap( void *ctx, size_t length, size_t *nc_off, in blowfish_crypt_ctr_wrap() argument
1711 return mbedtls_blowfish_crypt_ctr( (mbedtls_blowfish_context *) ctx, length, nc_off, in blowfish_crypt_ctr_wrap()
Dcamellia.c665 size_t *nc_off, in mbedtls_camellia_crypt_ctr() argument
676 CAMELLIA_VALIDATE_RET( nc_off != NULL ); in mbedtls_camellia_crypt_ctr()
680 n = *nc_off; in mbedtls_camellia_crypt_ctr()
700 *nc_off = n; in mbedtls_camellia_crypt_ctr()
Daria.c718 size_t *nc_off, in mbedtls_aria_crypt_ctr() argument
732 ARIA_VALIDATE_RET( nc_off != NULL ); in mbedtls_aria_crypt_ctr()
734 n = *nc_off; in mbedtls_aria_crypt_ctr()
757 *nc_off = n; in mbedtls_aria_crypt_ctr()
Daes.c1403 size_t *nc_off, in mbedtls_aes_crypt_ctr() argument
1414 AES_VALIDATE_RET( nc_off != NULL ); in mbedtls_aes_crypt_ctr()
1420 n = *nc_off; in mbedtls_aes_crypt_ctr()
1442 *nc_off = n; in mbedtls_aes_crypt_ctr()
/openthread-3.4.0/third_party/mbedtls/repo/include/mbedtls/
Dcamellia.h305 size_t *nc_off,
Dblowfish.h277 size_t *nc_off,
Daria.h353 size_t *nc_off,
Dcipher_internal.h79 int (*ctr_func)( void *ctx, size_t length, size_t *nc_off,
Daes.h596 size_t *nc_off,