rbot             1171 lib/vsprintf.c 	int cur, rbot, rtop;
rbot             1177 lib/vsprintf.c 	rbot = cur = find_first_bit(bitmap, nr_bits);
rbot             1191 lib/vsprintf.c 		buf = number(buf, end, rbot, default_dec_spec);
rbot             1192 lib/vsprintf.c 		if (rbot < rtop) {
rbot             1200 lib/vsprintf.c 		rbot = cur;
rbot               35 tools/lib/bitmap.c 	int cur, rbot, rtop;
rbot               39 tools/lib/bitmap.c 	rbot = cur = find_first_bit(bitmap, nbits);
rbot               51 tools/lib/bitmap.c 		ret += scnprintf(buf + ret, size - ret, "%d", rbot);
rbot               52 tools/lib/bitmap.c 		if (rbot < rtop)
rbot               55 tools/lib/bitmap.c 		rbot = cur;
rbot              249 tools/power/cpupower/utils/helpers/bitmask.c static inline int emit(char *buf, int buflen, int rbot, int rtop, int len)
rbot              253 tools/power/cpupower/utils/helpers/bitmask.c 	if (rbot == rtop)
rbot              254 tools/power/cpupower/utils/helpers/bitmask.c 		len += snprintf(buf + len, max(buflen - len, 0), "%d", rbot);
rbot              257 tools/power/cpupower/utils/helpers/bitmask.c 				rbot, rtop);
rbot              279 tools/power/cpupower/utils/helpers/bitmask.c 	unsigned int cur, rbot, rtop;
rbot              283 tools/power/cpupower/utils/helpers/bitmask.c 	rbot = cur = bitmask_first(bmp);
rbot              288 tools/power/cpupower/utils/helpers/bitmask.c 			len = emit(buf, buflen, rbot, rtop, len);
rbot              289 tools/power/cpupower/utils/helpers/bitmask.c 			rbot = cur;