Home
last modified time | relevance | path

Searched refs:rbot (Results 1 – 5 of 5) sorted by relevance

/openbmc/linux/tools/power/cpupower/utils/helpers/
H A Dbitmask.c249 static inline int emit(char *buf, int buflen, int rbot, int rtop, int len) in emit() argument
253 if (rbot == rtop) in emit()
254 len += snprintf(buf + len, max(buflen - len, 0), "%d", rbot); in emit()
257 rbot, rtop); in emit()
279 unsigned int cur, rbot, rtop; in bitmask_displaylist() local
283 rbot = cur = bitmask_first(bmp); in bitmask_displaylist()
288 len = emit(buf, buflen, rbot, rtop, len); in bitmask_displaylist()
289 rbot = cur; in bitmask_displaylist()
/openbmc/linux/tools/lib/
H A Dbitmap.c35 unsigned int cur, rbot, rtop; in bitmap_scnprintf() local
39 rbot = cur = find_first_bit(bitmap, nbits); in bitmap_scnprintf()
51 ret += scnprintf(buf + ret, size - ret, "%d", rbot); in bitmap_scnprintf()
52 if (rbot < rtop) in bitmap_scnprintf()
55 rbot = cur; in bitmap_scnprintf()
/openbmc/linux/Documentation/devicetree/bindings/regulator/
H A Dadi,max77857.yaml42 adi,rbot-ohms:
46 adi,rtop-ohms: [ 'adi,rbot-ohms' ]
47 adi,rbot-ohms: [ 'adi,rtop-ohms' ]
84 adi,rbot-ohms = <12000>;
/openbmc/linux/drivers/regulator/
H A Dmax77857-regulator.c323 u32 rbot = 0; in max77857_calc_range() local
326 device_property_read_u32(dev, "adi,rbot-ohms", &rbot); in max77857_calc_range()
328 if (!rbot || !rtop) in max77857_calc_range()
344 range->step = DIV_ROUND_CLOSEST(vref_step * (rbot + rtop), rbot); in max77857_calc_range()
/openbmc/linux/lib/
H A Dvsprintf.c1243 int rbot, rtop; in bitmap_list_string() local
1248 for_each_set_bitrange(rbot, rtop, bitmap, nr_bits) { in bitmap_list_string()
1256 buf = number(buf, end, rbot, default_dec_spec); in bitmap_list_string()
1257 if (rtop == rbot + 1) in bitmap_list_string()