Lines Matching refs:first_bin
759 int i, first_bin = 0, last_bin = DTRACE_QUANTIZE_NBUCKETS - 1;
766 while (first_bin < DTRACE_QUANTIZE_NBUCKETS - 1 && data[first_bin] == 0)
767 first_bin++;
769 if (first_bin == DTRACE_QUANTIZE_NBUCKETS - 1) {
775 first_bin = DTRACE_QUANTIZE_ZEROBUCKET - 1;
778 if (first_bin > 0)
779 first_bin--;
788 for (i = first_bin; i <= last_bin; i++) {
797 for (i = first_bin; i <= last_bin; i++) {
857 int i, first_bin, last_bin, base;
873 first_bin = 0;
879 while (first_bin <= levels + 1 && data[first_bin] == 0)
880 first_bin++;
882 if (first_bin > levels + 1) {
883 first_bin = 0;
886 if (first_bin > 0)
887 first_bin--;
896 for (i = first_bin; i <= last_bin; i++) {
906 for (i = first_bin; i <= last_bin; i++) {
987 int i, first_bin, last_bin, bin = 1, order, levels;
1017 first_bin = 0;
1020 while (first_bin < levels && data[first_bin] == 0)
1021 first_bin++;
1023 if (first_bin == levels) {
1024 first_bin = 0;
1027 if (first_bin > 0)
1028 first_bin--;
1037 for (i = first_bin; i <= last_bin; i++) {
1053 if (first_bin == 0) {
1065 if (bin >= first_bin && bin <= last_bin) {