Searched refs:rbot (Results 1 – 2 of 2) sorted by relevance
/tools/lib/ |
D | bitmap.c | 35 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()
|
/tools/power/cpupower/utils/helpers/ |
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()
|