Lines Matching refs:z
290 int mbedtls_mpi_lset( mbedtls_mpi *X, mbedtls_mpi_sint z ) in mbedtls_mpi_lset() argument
297 X->p[0] = ( z < 0 ) ? -z : z; in mbedtls_mpi_lset()
298 X->s = ( z < 0 ) ? -1 : 1; in mbedtls_mpi_lset()
866 int mbedtls_mpi_cmp_int( const mbedtls_mpi *X, mbedtls_mpi_sint z ) in mbedtls_mpi_cmp_int() argument
871 *p = ( z < 0 ) ? -z : z; in mbedtls_mpi_cmp_int()
872 Y.s = ( z < 0 ) ? -1 : 1; in mbedtls_mpi_cmp_int()
941 mbedtls_mpi_uint c, z; in mpi_sub_hlp() local
945 z = ( *d < c ); *d -= c; in mpi_sub_hlp()
946 c = ( *d < *s ) + z; *d -= *s; in mpi_sub_hlp()
951 z = ( *d < c ); *d -= c; in mpi_sub_hlp()
952 c = z; i++; d++; in mpi_sub_hlp()
1474 mbedtls_mpi_uint x, y, z; in mbedtls_mpi_mod_int() local
1504 z = y / b; in mbedtls_mpi_mod_int()
1505 y -= z * b; in mbedtls_mpi_mod_int()
1509 z = y / b; in mbedtls_mpi_mod_int()
1510 y -= z * b; in mbedtls_mpi_mod_int()
1590 mbedtls_mpi_uint z = 1; in mpi_montred() local
1593 U.n = U.s = (int) z; in mpi_montred()
1594 U.p = &z; in mpi_montred()