Home | History | Annotate | Download | only in functional

Lines Matching full:alphabetlen

180 	int			alphabetLen	= last - first + 1;
182 while (ndx > alphabetLen)
184 str.insert(str.begin(), (char)(first + ((ndx-1)%alphabetLen)));
185 ndx = ((ndx-1) / alphabetLen);
188 str.insert(str.begin(), (char)(first + (ndx%(alphabetLen+1)) - 1));