Lines Matching refs:levels
860 uint16_t step, levels; in dt_print_lquantize() local
871 levels = DTRACE_LQUANTIZE_LEVELS(arg); in dt_print_lquantize()
874 last_bin = levels + 1; in dt_print_lquantize()
876 if (size != sizeof (uint64_t) * (levels + 2)) in dt_print_lquantize()
879 while (first_bin <= levels + 1 && data[first_bin] == 0) in dt_print_lquantize()
882 if (first_bin > levels + 1) { in dt_print_lquantize()
892 if (last_bin < levels + 1) in dt_print_lquantize()
913 } else if (i == levels + 1) { in dt_print_lquantize()
915 base + (levels * step)); in dt_print_lquantize()
939 uint16_t step, levels; in dt_print_lquantize_packed() local
951 levels = DTRACE_LQUANTIZE_LEVELS(arg); in dt_print_lquantize_packed()
953 if (size != sizeof (uint64_t) * (levels + 2)) in dt_print_lquantize_packed()
957 max = levels + 1; in dt_print_lquantize_packed()
979 (void) snprintf(c, sizeof (c), ">= %d", base + (levels * step)); in dt_print_lquantize_packed()
987 int i, first_bin, last_bin, bin = 1, order, levels; in dt_print_llquantize() local
1015 levels = (int)size / sizeof (uint64_t); in dt_print_llquantize()
1018 last_bin = levels - 1; in dt_print_llquantize()
1020 while (first_bin < levels && data[first_bin] == 0) in dt_print_llquantize()
1023 if (first_bin == levels) { in dt_print_llquantize()
1033 if (last_bin < levels - 1) in dt_print_llquantize()