Home
last modified time | relevance | path

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

/linux-6.6.21/tools/lib/
Dbitmap.c35 unsigned int cur, rbot, rtop; in bitmap_scnprintf() local
41 rtop = cur; in bitmap_scnprintf()
43 if (cur < nbits && cur <= rtop + 1) in bitmap_scnprintf()
52 if (rbot < rtop) in bitmap_scnprintf()
53 ret += scnprintf(buf + ret, size - ret, "-%d", rtop); in bitmap_scnprintf()
/linux-6.6.21/tools/power/cpupower/utils/helpers/
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()
257 rbot, rtop); in emit()
279 unsigned int cur, rbot, rtop; in bitmask_displaylist() local
285 rtop = cur; in bitmask_displaylist()
287 if (cur >= bmp->size || cur > rtop + 1) { in bitmask_displaylist()
288 len = emit(buf, buflen, rbot, rtop, len); in bitmask_displaylist()
/linux-6.6.21/Documentation/devicetree/bindings/regulator/
Dadi,max77857.yaml37 adi,rtop-ohms:
46 adi,rtop-ohms: [ 'adi,rbot-ohms' ]
47 adi,rbot-ohms: [ 'adi,rtop-ohms' ]
83 adi,rtop-ohms = <312000>;
/linux-6.6.21/drivers/regulator/
Dmax77857-regulator.c322 u32 rtop = 0; in max77857_calc_range() local
325 device_property_read_u32(dev, "adi,rtop-ohms", &rtop); 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()
/linux-6.6.21/lib/
Dvsprintf.c1243 int rbot, rtop; in bitmap_list_string() local
1248 for_each_set_bitrange(rbot, rtop, bitmap, nr_bits) { in bitmap_list_string()
1257 if (rtop == rbot + 1) in bitmap_list_string()
1262 buf = number(++buf, end, rtop - 1, default_dec_spec); in bitmap_list_string()