Home
last modified time | relevance | path

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

/linux-5.19.10/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-5.19.10/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-5.19.10/lib/
Dvsprintf.c1241 int rbot, rtop; in bitmap_list_string() local
1246 for_each_set_bitrange(rbot, rtop, bitmap, nr_bits) { in bitmap_list_string()
1255 if (rtop == rbot + 1) in bitmap_list_string()
1260 buf = number(++buf, end, rtop - 1, default_dec_spec); in bitmap_list_string()