Lines Matching refs:c
410 mbedtls_mpi_uint c = 0; in mbedtls_mpi_core_add() local
413 mbedtls_mpi_uint t = c + A[i]; in mbedtls_mpi_core_add()
414 c = (t < A[i]); in mbedtls_mpi_core_add()
416 c += (t < B[i]); in mbedtls_mpi_core_add()
420 return c; in mbedtls_mpi_core_add()
428 mbedtls_mpi_uint c = 0; in mbedtls_mpi_core_add_if() local
434 mbedtls_mpi_uint t = c + X[i]; in mbedtls_mpi_core_add_if()
435 c = (t < X[i]); in mbedtls_mpi_core_add_if()
437 c += (t < add); in mbedtls_mpi_core_add_if()
441 return c; in mbedtls_mpi_core_add_if()
449 mbedtls_mpi_uint c = 0; in mbedtls_mpi_core_sub() local
452 mbedtls_mpi_uint z = (A[i] < c); in mbedtls_mpi_core_sub()
453 mbedtls_mpi_uint t = A[i] - c; in mbedtls_mpi_core_sub()
454 c = (t < B[i]) + z; in mbedtls_mpi_core_sub()
458 return c; in mbedtls_mpi_core_sub()
465 mbedtls_mpi_uint c = 0; /* carry */ in mbedtls_mpi_core_mla() local
491 *d += c; in mbedtls_mpi_core_mla()
492 c = (*d < c); in mbedtls_mpi_core_mla()
496 return c; in mbedtls_mpi_core_mla()
846 mbedtls_mpi_uint c, /* doubles as carry */ in mbedtls_mpi_core_sub_int() argument
851 mbedtls_mpi_uint t = s - c; in mbedtls_mpi_core_sub_int()
852 c = (t > s); in mbedtls_mpi_core_sub_int()
856 return c; in mbedtls_mpi_core_sub_int()