Home | History | Annotate | Download | only in libcpu

Lines Matching defs:bufcnt

289     if (unlikely (bufcnt == bufsize))					      \
291 buf[bufcnt++] = (ch); \
305 if (unlikely (bufcnt + _len > bufsize)) \
307 memcpy (buf + bufcnt, _str, _len); \
308 bufcnt += _len; \
322 size_t bufcnt;
332 .bufcntp = &bufcnt,
366 bufcnt = 0;
430 bufcnt = 0;
469 bufcnt = 0;
519 bufcnt = 0;
701 size_t start_idx = bufcnt;
922 string_end_idx = bufcnt;
957 string_end_idx = bufcnt;
990 string_end_idx = bufcnt;
1027 string_end_idx = bufcnt;
1030 bufcnt = string_end_idx;
1034 string_end_idx = bufcnt;
1039 while (bufcnt - non_printing < (size_t) width)
1056 string_end_idx = bufcnt;
1072 size_t bufavail = bufsize - bufcnt;
1075 r = snprintf (&buf[bufcnt], bufavail, "# <%s>",
1079 r = snprintf (&buf[bufcnt], bufavail, "# %#" PRIx64,
1085 bufcnt += r;
1086 string_end_idx = bufcnt;
1104 while (bufcnt + prefix_size - non_printing < start_idx + width)
1113 bufcnt = string_end_idx;
1130 if (bufcnt == bufsize)
1132 buf[bufcnt] = '\0';
1135 retval = outcb (buf, bufcnt, outcbarg);