Lines Matching refs:phi
62 uint32_t *p, *q, *k, *m, *z, *phi; in br_rsa_i31_compute_privexp() local
125 phi = q + 1 + qlen; in br_rsa_i31_compute_privexp()
126 br_i31_zero(phi, p[0]); in br_rsa_i31_compute_privexp()
127 br_i31_mulacc(phi, p, q); in br_rsa_i31_compute_privexp()
128 len = (phi[0] + 31) >> 5; in br_rsa_i31_compute_privexp()
129 memmove(tmp, phi, (1 + len) * sizeof *phi); in br_rsa_i31_compute_privexp()
130 phi = tmp; in br_rsa_i31_compute_privexp()
131 phi[0] = br_i31_bit_length(phi + 1, len); in br_rsa_i31_compute_privexp()
132 len = (phi[0] + 31) >> 5; in br_rsa_i31_compute_privexp()
150 lo = (r << 31) + phi[u]; in br_rsa_i31_compute_privexp()
151 phi[u] = br_divrem(hi, lo, e, &r); in br_rsa_i31_compute_privexp()
156 k = phi; in br_rsa_i31_compute_privexp()