Searched refs:rbot (Results 1 – 3 of 3) sorted by relevance
/linux-6.3-rc2/tools/power/cpupower/utils/helpers/ |
A D | bitmask.c | 249 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()
|
/linux-6.3-rc2/tools/lib/ |
A D | bitmap.c | 35 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()
|
/linux-6.3-rc2/lib/ |
A D | vsprintf.c | 1242 int rbot, rtop; in bitmap_list_string() local 1247 for_each_set_bitrange(rbot, rtop, bitmap, nr_bits) { in bitmap_list_string() 1255 buf = number(buf, end, rbot, default_dec_spec); in bitmap_list_string() 1256 if (rtop == rbot + 1) in bitmap_list_string()
|
Completed in 9 milliseconds