Lines Matching defs:rbot
241 * emit(buf, buflen, rbot, rtop, len)
249 static inline int emit(char *buf, int buflen, int rbot, int rtop, int len)
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;
283 rbot = cur = bitmask_first(bmp);
288 len = emit(buf, buflen, rbot, rtop, len);
289 rbot = cur;