Searched refs:rbot (Results 1 - 4 of 4) sorted by relevance

/linux-master/tools/lib/
H A Dbitmap.c34 /* current bit is 'cur', most recently seen range is [rbot, rtop] */
35 unsigned int cur, rbot, rtop; local
39 rbot = cur = find_first_bit(bitmap, nbits);
51 ret += scnprintf(buf + ret, size - ret, "%d", rbot);
52 if (rbot < rtop)
55 rbot = cur;
/linux-master/tools/power/cpupower/utils/helpers/
H A Dbitmask.c241 * emit(buf, buflen, rbot, rtop, len)
249 static inline int emit(char *buf, int buflen, int rbot, int rtop, int len) argument
253 if (rbot == rtop)
254 len += snprintf(buf + len, max(buflen - len, 0), "%d", rbot);
257 rbot, rtop);
278 /* current bit is 'cur', most recently seen range is [rbot, rtop] */
279 unsigned int cur, rbot, rtop; local
283 rbot = cur = bitmask_first(bmp);
288 len = emit(buf, buflen, rbot, rtop, len);
289 rbot
[all...]
/linux-master/drivers/regulator/
H A Dmax77857-regulator.c323 u32 rbot = 0; local
326 device_property_read_u32(dev, "adi,rbot-ohms", &rbot);
328 if (!rbot || !rtop)
344 range->step = DIV_ROUND_CLOSEST(vref_step * (rbot + rtop), rbot);
/linux-master/lib/
H A Dvsprintf.c1244 int rbot, rtop; local
1249 for_each_set_bitrange(rbot, rtop, bitmap, nr_bits) {
1257 buf = number(buf, end, rbot, default_dec_spec);
1258 if (rtop == rbot + 1)

Completed in 284 milliseconds