Searched refs:real_len (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/contrib/file/src/
H A Dvasprintf.c138 size_t real_len; /* real current length of output text */ member in struct:__anon15
155 if (len + ALLOC_SECURITY_MARGIN + s->real_len > s->buffer_len) {
156 len += s->real_len + ALLOC_CHUNK;
191 s->real_len += len;
223 s->real_len += len;
326 (s->real_len)++;
573 s->real_len = 0;
591 if (s->real_len >= s->maxlen) {
600 dummy_base = s->buffer_base + s->real_len;
601 save_len = s->real_len;
[all...]
/freebsd-11-stable/sys/geom/vinum/
H A Dgeom_vinum_raid5.c183 off_t real_len, real_off; local
188 gv_raid5_offset(p, boff, bcount, &real_off, &real_len, NULL, &psdno, 1);
208 wp->length = real_len;
260 off_t real_len, real_off; local
265 gv_raid5_offset(p, boff, bcount, &real_off, &real_len, NULL, NULL, 1);
300 wp->length = real_len;
350 off_t real_len, real_off; local
381 gv_raid5_offset(p, boff, bcount, &real_off, &real_len,
416 wp->length = real_len;
422 if ((p->flags & GV_PLEX_REBUILDING) && (boff + real_len <
587 gv_raid5_offset(struct gv_plex *p, off_t boff, off_t bcount, off_t *real_off, off_t *real_len, int *sdno, int *psdno, int growing) argument
[all...]
H A Dgeom_vinum_plex.c128 off_t *real_len, int *sdno, int growing)
156 *real_len = (bcount > len_left) ? len_left : bcount;
183 *real_len = (bcount <= len_left) ? bcount : len_left;
201 off_t real_len, real_off; local
206 real_len = real_off = 0;
214 &real_len, &sdno, (bp->bio_pflags & GV_BIO_GROW));
274 cbp->bio_length = real_len;
282 return (real_len);
127 gv_plex_offset(struct gv_plex *p, off_t boff, off_t bcount, off_t *real_off, off_t *real_len, int *sdno, int growing) argument
/freebsd-11-stable/contrib/gdb/gdb/
H A Dc-typeprint.c660 int len, real_len;
929 real_len = 0;
937 real_len++;
939 if (real_len > 0 && section_type != s_none)
659 int len, real_len; local
H A Dmonitor.c242 int real_len = (len == 0 && string != (char *) 0) ? strlen (string) : len; local
243 char *safe_string = alloca ((real_len * 4) + 1);
244 monitor_printable_string (safe_string, string, real_len);
/freebsd-11-stable/contrib/dialog/
H A Dformbox.c365 int real_len = real_length(item + i); local
372 item[i].text_ilen = real_len;
377 min_w = MAX(min_w, item[i].text_x + 1 + real_len);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp855 SIZE_T real_len = REAL(strnlen)(name, len); local
856 if (real_len < len)
857 ++real_len;
858 __msan_unpoison(name, real_len);

Completed in 186 milliseconds