Home | History | Annotate | Download | only in bn

Lines Matching defs:max

107 	int max,min,dif;
116 max = a->top;
118 dif = max - min;
120 if (bn_wexpand(r,max+1) == NULL)
123 r->top=max;
168 int max,min,dif;
178 max = a->top;
180 dif = max - min;
188 if (bn_wexpand(r,max) == NULL) return(0);
237 memcpy(rp,ap,sizeof(*rp)*(max-i));
257 r->top=max;
265 int max;
298 max=(a->top > b->top)?a->top:b->top;
299 if (bn_wexpand(r,max) == NULL) return(0);