Home | History | Annotate | Download | only in libcpu

Lines Matching refs:bufcnt

292     if (unlikely (bufcnt == bufsize))					      \
294 buf[bufcnt++] = (ch); \
308 if (unlikely (bufcnt + _len > bufsize)) \
310 memcpy (buf + bufcnt, _str, _len); \
311 bufcnt += _len; \
325 size_t bufcnt;
335 .bufcntp = &bufcnt,
369 bufcnt = 0;
433 bufcnt = 0;
472 bufcnt = 0;
522 bufcnt = 0;
704 size_t start_idx = bufcnt;
925 string_end_idx = bufcnt;
960 string_end_idx = bufcnt;
993 string_end_idx = bufcnt;
1030 string_end_idx = bufcnt;
1033 bufcnt = string_end_idx;
1037 string_end_idx = bufcnt;
1042 while (bufcnt - non_printing < (size_t) width)
1059 string_end_idx = bufcnt;
1075 size_t bufavail = bufsize - bufcnt;
1078 r = snprintf (&buf[bufcnt], bufavail, "# <%s>",
1082 r = snprintf (&buf[bufcnt], bufavail, "# %#" PRIx64,
1088 bufcnt += r;
1089 string_end_idx = bufcnt;
1107 while (bufcnt + prefix_size - non_printing < start_idx + width)
1116 bufcnt = string_end_idx;
1133 if (bufcnt == bufsize)
1135 buf[bufcnt] = '\0';
1138 retval = outcb (buf, bufcnt, outcbarg);