Lines Matching refs:max
29 int max, al; in bn_sqr_fixed_top() local
48 max = 2 * al; /* Non-zero (from above) */ in bn_sqr_fixed_top()
49 if (bn_wexpand(rr, max) == NULL) in bn_sqr_fixed_top()
82 if (bn_wexpand(tmp, max) == NULL) in bn_sqr_fixed_top()
88 if (bn_wexpand(tmp, max) == NULL) in bn_sqr_fixed_top()
95 rr->top = max; in bn_sqr_fixed_top()
111 int i, j, max; in bn_sqr_normal() local
115 max = n * 2; in bn_sqr_normal()
118 rp[0] = rp[max - 1] = 0; in bn_sqr_normal()
135 bn_add_words(r, r, r, max); in bn_sqr_normal()
141 bn_add_words(r, r, tmp, max); in bn_sqr_normal()