Home | History | Annotate | Download | only in bn

Lines Matching defs:nw

137 	int i,nw,lb,rb;
145 nw=n/BN_BITS2;
146 if (bn_wexpand(r,a->top+nw+1) == NULL) return(0);
151 t[a->top+nw]=0;
154 t[nw+i]=f[i];
159 t[nw+i+1]|=(l>>rb)&BN_MASK2;
160 t[nw+i]=(l<<lb)&BN_MASK2;
162 memset(t,0,nw*sizeof(t[0]));
163 /* for (i=0; i<nw; i++)
165 r->top=a->top+nw+1;
173 int i,j,nw,lb,rb;
180 nw=n/BN_BITS2;
183 if (nw >= a->top || a->top == 0)
200 f= &(a->d[nw]);
202 j=a->top-nw;