Searched refs:carry (Results 1 – 6 of 6) sorted by relevance
/mbedtls-development/tests/suites/ |
A D | test_suite_ecp.data | 595 ECP mod p192 readable with carry 607 ECP mod p224 readable without carry 611 ECP mod p224 readable with negative carry 615 ECP mod p224 readable with positive carry 619 ECP mod p224 readable with final negative carry 635 ECP mod p521 readable with carry
|
A D | test_suite_mpi.data | 721 Regression mbedtls_mpi_add_abs (add small to very large MPI with carry rollover) [#1] 724 Regression mbedtls_mpi_add_abs (add small to very large MPI with carry rollover) [#2]
|
/mbedtls-development/library/ |
A D | ecp_curves.c | 4849 static inline void add64( mbedtls_mpi_uint *dst, mbedtls_mpi_uint *src, mbedtls_mpi_uint *carry ) in add64() argument 4858 *carry += c; in add64() 4862 static inline void carry64( mbedtls_mpi_uint *dst, mbedtls_mpi_uint *carry ) in carry64() argument 4867 *dst += *carry; in carry64() 4868 *carry = ( *dst < *carry ); in carry64() 4954 static inline void add32( uint32_t *dst, uint32_t src, signed char *carry ) in add32() argument 4957 *carry += ( *dst < src ); in add32() 4960 static inline void sub32( uint32_t *dst, uint32_t src, signed char *carry ) in sub32() argument 4962 *carry -= ( *dst < src ); in sub32()
|
A D | bignum.c | 1467 mbedtls_mpi_uint carry; in mbedtls_mpi_sub_abs() local 1492 carry = mpi_sub_hlp( n, X->p, A->p, B->p ); in mbedtls_mpi_sub_abs() 1493 if( carry != 0 ) in mbedtls_mpi_sub_abs()
|
/mbedtls-development/ |
A D | LICENSE | 98 (b) You must cause any modified files to carry prominent notices
|
A D | ChangeLog | 4058 with carry rollover (found by Ruslan Yushchenko) 4114 with carry rollover
|
Completed in 31 milliseconds