Home | History | Annotate | Download | only in bn

Lines Matching refs:nw

134 	int i,nw,lb,rb;
142 nw=n/BN_BITS2;
143 if (bn_wexpand(r,a->top+nw+1) == NULL) return(0);
148 t[a->top+nw]=0;
151 t[nw+i]=f[i];
156 t[nw+i+1]|=(l>>rb)&BN_MASK2;
157 t[nw+i]=(l<<lb)&BN_MASK2;
159 memset(t,0,nw*sizeof(t[0]));
160 /* for (i=0; i<nw; i++)
162 r->top=a->top+nw+1;
170 int i,j,nw,lb,rb;
177 nw=n/BN_BITS2;
180 if (nw >= a->top || a->top == 0)
188 if (bn_wexpand(r,a->top-nw+1) == NULL) return(0);
196 f= &(a->d[nw]);
198 j=a->top-nw;