Lines Matching defs:out
65 * of bits of out, in is the original scalar, and w is the window size.
70 ec_compute_wNAF(signed char *out, int bitsize, const mp_int *in, int w)
86 out[i] = MP_DIGIT(&k, 0) & mask;
87 if (out[i] >= twowm1)
88 out[i] -= 2 * twowm1;
90 /* Subtract off out[i]. Note mp_sub_d only works with
92 if (out[i] >= 0) {
93 mp_sub_d(&k, out[i], &k);
95 mp_add_d(&k, -(out[i]), &k);
98 out[i] = 0;
103 /* Zero out the remaining elements of the out array. */
105 out[i] = 0;