Home | History | Annotate | Download | only in examples

Lines Matching defs:least

204     int least;          /* least number of syms to use at this juncture */
222 /* we need to use at least this many bit patterns so that the code won't be
224 least = (left << 1) - syms;
225 if (least < 0)
226 least = 0;
236 for (use = least; use <= most; use++) {
321 int least; /* least number of syms to use at this juncture */
358 /* we need to use at least this many bit patterns so that the code won't be
360 least = (left << 1) - syms;
361 if (least < 0)
362 least = 0;
370 /* occupy least table spaces, creating new sub-tables as needed */
371 use = least;
380 for (use = least; use <= most; use++) {