HomeSort by: relevance | last modified time | path
    Searched defs:bmin (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libc/stdlib/
radixsort.c 151 static u_int count[256], nc, bmin; local in function:r_sort_a
174 bmin = 255; /* First occupied bin, excluding eos. */
178 if (c < bmin)
179 bmin = c;
204 for (cp = count + bmin; nc > 0; cp++) {
242 static u_int count[256], nc, bmin; local in function:r_sort_b
263 bmin = 255;
267 if (c < bmin)
268 bmin = c;
288 for (cp = count + bmin; nc > 0; cp++)
    [all...]
  /src/usr.bin/sort/
radix_sort.c 73 u_int count[256], nc, bmin; local in function:radix_sort
104 bmin = 255;
121 if (c < bmin)
122 bmin = c;
142 for (cp = count + bmin; nc > 0; cp++) {

Completed in 18 milliseconds